/*
Theme Name: universitekampus-temasi
Theme URI: https://universitekampus.com/
Description: universitekampus-temasi-temasi
Version: 1.0
Author: universitekampus
URI: https://universitekampus.com/
*/

body {  padding-bottom: 0rem;
  color: #5a5a5a;
}
h1,h2,h3,h4,h5,h6,p{font-family: 'Glory', sans-serif;}

a {
    color: #818181;
    text-decoration: none!important;
}

 :root {
            --primary-color: #3b82f6;
            --secondary-color: #1e40af;
            --text-dark: #1f2937;
            --text-light: #bbbbbb;
            --bg-light: #f8fafc;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
        }
/* Dinamilk menü baş */
#main-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
     margin-top: 14px;
    font-size: 16px;
    font-weight: bold;
}

#main-menu > li {
    position: relative;
}

#main-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: #48527F;
    text-decoration: none;
    transition: color 0.15s ease;
}

#main-menu a:hover {
    color: rgba(0,0,0,.7);
}

/* Dropdown işareti */
#main-menu .has-dropdown > a::after,
#main-menu .menu-item-has-children > a::after {
    content: "";
    border: solid;
    border-width: 0 0.1em 0.1em 0;
    padding: 0.15em;
    transform: rotate(45deg);
    margin-left: 0.5em;
    display: inline-block;
}

/* Alt menüler - 2. seviye */
#main-menu ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border-radius: 6px;
    min-width: 200px;
    padding: 8px 0;
    z-index: 1000;
    list-style: none;
    margin: 0;
}

/* 3. seviye menüler */
#main-menu ul ul {
    top: 0;
    left: 100%;
    margin-left: 5px;
}

#main-menu ul li {
    display: block;
    position: relative;
}

#main-menu ul a {
    padding: 8px 16px;
    color: #212529;
    border-radius: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#main-menu ul a:hover {
    background-color: #f8f9fa;
    color: #0d6efd;
}

/* 3. seviye için arrow */
#main-menu ul .menu-item-has-children > a::after,
#main-menu ul .has-dropdown > a::after {   
    color: #6c757d;
    margin-left: auto;
}

/* Desktop hover - 3 seviye */
@media (min-width: 992px) {
    #main-menu .has-dropdown:hover > ul,
    #main-menu .menu-item-has-children:hover > ul {
        display: block !important;
    }
    
    /* 2. seviye hover için 3. seviye */
    #main-menu ul .has-dropdown:hover > ul,
    #main-menu ul .menu-item-has-children:hover > ul {
        display: block !important;
    }
}

/* Mobile styles */
@media (max-width: 991px) {
    #main-menu {
        flex-direction: column;
    }
    
    #main-menu ul {
        position: static;
        box-shadow: none;
        background: #f8f9fa;
        margin: 5px 0 0 20px;
        border-left: 2px solid #0d6efd;
    }
    
    .navbar-nav {
        text-align: center;
    }
}

/* Icon styling */
.navbar-nav .nav-link i {
    font-size: 18px;
    color: #6c757d;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover i {
    color: #0d6efd;
}

/* Active page */
#main-menu .current-menu-item a,
#main-menu .current_page_item a {
    color: #0A4DB3 !important;
    font-weight: bold;
}
/* Dinamilk menü bitiş */


        .search-icon {
            cursor: pointer;
            font-size: 1.1rem;
            color: var(--text-dark);
            transition: all 0.3s ease;
            padding: 0.5rem;
            border-radius: 50%;
        }

        .search-icon:hover {
            color: var(--primary-color);
            background: rgba(59, 130, 246, 0.1);
        }

        /* Advanced Search Overlay */
        .search-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            display: none;
            z-index: 9999;
            backdrop-filter: blur(10px);
        }

        .search-overlay.active {
            display: flex;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.5s ease;
        }

        .search-container {
            position: relative;
            width: 90%;
            max-width: 600px;
            animation: slideDown 0.6s ease;
        }

        .search-input-container {
            position: relative;
        }

        .search-input {
            width: 100%;
            padding: 1.5rem 2rem 1.5rem 4rem;
            font-size: 2rem;
            border: none;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 15px;
            outline: none;
            backdrop-filter: blur(20px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .search-input:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
        }

        .search-input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .search-icon-input {
            position: absolute;
            left: 1.5rem;
            top: 50%;
            transform: translateY(-50%);
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.5rem;
        }

        .search-close {
            position: absolute;
            top: 2rem;
            right: 2rem;
            font-size: 2rem;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .search-close:hover {
            transform: rotate(90deg);
            color: var(--primary-color);
        }

        .search-suggestions {
            margin-top: 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
        }

        .suggestion-item {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            padding: 1rem;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .suggestion-item:hover {
            background: var(--primary-color);
            transform: translateY(-2px);
        }

        /* Image Upload Area */
        .image-upload-area {
            background: var(--bg-light);
            padding: 3rem 0;
            margin-bottom: 2rem;
        }

        .upload-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .upload-zone {
            border: 3px dashed #ddd;
            border-radius: 15px;
            padding: 3rem;
            text-align: center;
            background: white;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .upload-zone:hover {
            border-color: var(--primary-color);
            background: rgba(59, 130, 246, 0.05);
        }

        .upload-zone.dragover {
            border-color: var(--primary-color);
            background: rgba(59, 130, 246, 0.1);
            transform: scale(1.02);
        }

        .upload-icon {
            font-size: 4rem;
            color: var(--text-light);
            margin-bottom: 1rem;
        }

        .upload-text {
            font-size: 1.2rem;
            color: var(--text-light);
            margin-bottom: 1rem;
        }

        .upload-btn {
            background: var(--primary-color);
            color: white;
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .upload-btn:hover {
            background: var(--secondary-color);
            transform: translateY(-2px);
        }

        .preview-area {
            margin-top: 2rem;
            display: none;
        }

        .preview-image {
            max-width: 100%;
            max-height: 400px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        /* Breaking News */
		
	.breaking-text { 
    display: none; 
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.breaking-text a{
    color:#ffffff;
    text-decoration: none;
}

.breaking-text.active { 
    display: inline-block; 
    opacity: 1;
}



.breaking-text {
    flex: 0 0 100%;
    text-align: left;
    padding: 0 15px;
}
        .breaking-news {
            background: #0855B0;
            color: white;
            padding: 0.5rem;
            border-radius: 25px;
            display: flex;
            align-items: center;
            margin-bottom: 2rem;
        }

        .breaking-label {
            background: white;
            color: #000000;
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-weight: 600;
            font-size: 0.8rem;
            margin-right: 1rem;
        }

        .breaking-text {
            flex: 1;
            font-weight: 500;
        }

  .breaking-controls {
            display: flex;
            gap: 0.5rem;
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
        }

        .breaking-btn {
            background: rgba(255,255,255,0.2);
            border: none;
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .breaking-btn:hover {
            background: rgba(255,255,255,0.3);
        }

        /* Content Grid */
        .content-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 3rem;
        }

        .main-card {
            position: relative;
            height: 500px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .side-card {
            position: relative;
            height: 240px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-bottom: 1rem;
        }

        .card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            padding: 1.0rem;
        }

        .card-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.1rem;
            line-height: 1.3;
        }

        .side-card .card-title {
            font-size: 1rem;
        }
		  .menu-box {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 120px;
      border-radius: 8px;
      color: white;
      font-weight: bold;
      font-size: 18px;
      text-align: center;
      transition: transform 0.2s ease-in-out;
    }
    .menu-box:hover {
      transform: scale(1.05);
      cursor: pointer;
    }

.menu-box a{
	color:#000000;
	
}

    .card-img {
  height: 100%;
  object-fit: cover;
  border-radius: 0.75rem;
}

.card-img-overlay.bg-gradient {
  background: linear-gradient(to top, rgba(0,0,0,.7), rgba(0,0,0,0));
  border-radius: 0.75rem;
}

.yazi_alani a{
	color: #227bdd;
}




        /* Carousel Sections */
        .carousel-section {
            margin: 4rem 0;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid var(--bg-light);
        }

        .section-title {
            color: var(--text-dark);
            font-weight: 700;
            font-size: 1.5rem;
            margin: 0;
        }

        .carousel-nav {
            display: flex;
            gap: 0.5rem;
        }

        .carousel-btn {
            background: white;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-btn:hover,
        .carousel-btn.active {
            background: var(--primary-color);
            color: white;
        }

        /* Owl Carousel Custom Styles */
        .owl-carousel .owl-item {
            padding: 0 10px;
        }

        .carousel-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
        }

        .carousel-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .carousel-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .carousel-content {
            padding: 1.5rem;
        }

        .carousel-category {
            background: var(--primary-color);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 500;
            display: inline-block;
            margin-bottom: 0.8rem;
        }

        .carousel-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.8rem;
            line-height: 1.4;
        }

        .carousel-title a {
            color: var(--text-dark);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .carousel-title a:hover {
            color: var(--primary-color);
        }

        .carousel-meta {
            color: var(--text-light);
            font-size: 0.85rem;
        }

        /* Remove default owl nav */
        .owl-nav {
            display: none !important;
        }

        /* Responsive */
        @media (max-width: 768px) {
			
			.breaking-controls {           
            right: 15px;
            top: 25%;
                  }
			
            .content-grid {
                grid-template-columns: 1fr;
            }
            
            .search-input {
                font-size: 1.5rem;
                padding: 1rem 1.5rem 1rem 3rem;
            }
            
            .search-close {
                top: 1rem;
                right: 1rem;
                font-size: 1.5rem;
            }
            
            .breaking-news {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }
            
            .section-header {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .upload-zone {
                padding: 2rem 1rem;
            }

            .upload-icon {
                font-size: 3rem;
            }
        }

        /* Animations */
        .fade-in {
            animation: fadeIn 0.8s ease-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .pulse {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }
		
		.footer {
    background:#232a34;
	padding-bottom: 50px;
	padding-top: 80px;
}
.footer_menu {
	margin-bottom: 20px;
}
.footer_menu ul {
	list-style: none;
	text-align: center;
}
.footer_menu ul li{display: inline-block;}
.footer_menu ul li a {
	color:#fff;
	padding: 0 10px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.footer_menu ul li a:hover{color:#554c86;}

/*START FOOTER SOCIAL DESIGN*/
.footer_profile{margin-bottom:40px;}
.footer_profile ul{
list-style: outside none none;
margin: 0;
padding: 0
}
.footer_profile ul li{
display: inline-block;
}
@media only screen and (max-width:480px) { 
.footer_profile ul li{margin:2px;}
}
.footer_profile ul li a img{width:60px;}

.footer_profile ul li a {
	background: #554c86;
	width: 40px;
	height: 40px;
	display: block;
	text-align: center;
	margin-right: 5px;
	border-radius: 50%;
	line-height: 40px;
	box-sizing: border-box;
	text-decoration: none;
	-webkit-transition: .3s;
	transition: .3s;
	color: #fff;
}
.footer_copyright {
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #fff;
}

.margin-top20{ margin-top: 20px; }

.dropdown-menu{background-color:#2e2e2e;}

.list-inline {
    padding-left: 10px;
    margin-left: 6px;
    list-style: none;
   }

.list-inline>li {
    display: inline-block;
    padding-right: 5px;
    padding-left: 5px;
}

.list-inline a{
  
    color: #1c1c1b;
}

.blog-post-details-item {
    display: inline-block;
    margin: 1px;
    margin-left: 26px;
}


.mt-5{margin-top:5px }
.mt-10{margin-top:10px }

.sosyal a {
    color: #ffffff!important;
    text-decoration: none;  
}
.fixed-top {
    position: fixed;
    top: 20px;
    right: 0;
    left: 0;
    z-index: 1030;
    position: absolute;
}
.bg-dark {
    background-color: #343a4000!important;
}
.navbar-brand {
    display: inline-block;
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
    margin-right: 1rem;
    font-size: 1.25rem;
    line-height: inherit;
    white-space: nowrap;
}

.navbar-expand-md .navbar-nav {
    color: rgb(195 196 199);
    font-family: 'Glory', sans-serif;
    font-size: 26px;
}

.navbar-expand-md .navbar-nav  li a{
   padding: 10px;
   color: rgb(195 196 199);
   font-family: 'Glory', sans-serif;
   font-size: 22px;
}

.banner img{
	    width: 100%;
		height: auto;
}




.bg-turuncu { background-color: #ffa62d!important;
    
}

.text-muted {
    color: #6c757d !important;
}

.text-warning {
    color: #ffa62d!important;
}

.bg-dark-footer {
  background-color: #181818 !important;
}

.text-primary {
    color: #fdb048!important;
}


/* Style the list */
ul.breadcrumb {
  padding: 10px 16px;
  list-style: none;
  background-color: #eee;
}
/* Display list items side by side */
ul.breadcrumb li {
  display: inline;
  font-size: 14px;
  margin-right: 5px;
}
/* Add a slash symbol (/) before/behind each list item */
ul.breadcrumb li+li:before {
  padding: 8px;
  color: #868689;
  /* content: "/\00a0"; */
}
/* Add a color to all links inside the list */
ul.breadcrumb li a {
  color: #2a8af3;
    text-decoration: none;
    font-weight: 600;
}
/* Add a color on mouse-over */
ul.breadcrumb li a:hover {
  color: #01447e;
  text-decoration: underline;
}


.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 100%;
    padding: 5px 0px 3px 10px;
    text-align: center;
}
.wp-caption.alignleft {float:left;margin: 0px 20px 19px 0;padding: 5px;}
.wp-caption.alignright {float:right;margin: 0px 0px 20px 20px;padding: 5px;}
.alignleft { display: inline; float: left;  margin: 1em 2em 1em 0;}
.alignright { display: inline; float: right;  margin: 1em 3em 1em 0px;}


/* RESPONSIVE CSS
-------------------------------------------------- */

.navbar-toggler {
    padding: 0.25rem 0.25rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: #0000002e;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

@media (max-width: 767px) {
h1, h2 {
    font-size: 22px;
    line-height: 30px;
}
 
.top-content .carousel-indicators {
    display: none;
}

.navbar-brand {
    display: inline-block;
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
    margin-right: 0rem;
    font-size: 1.25rem;
    line-height: inherit;
    white-space: nowrap;
    padding: 0rem 0rem 0rem 0rem;
}

.top-content .carousel-item {
    height: 100vh;
    min-height: 400px;
}
.top-content .carousel-item img {
    height: 100%;
    object-fit: cover;
}
 
@media (max-width: 575px) {
 
.top-content h1, .top-content h2, .top-content h3 {
    font-size: 22px;
}
	
	.banner img{
	    width: 100%;
		height: 101px;
}

.navbar-collapse {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #e9e9e9;
    padding: 6px;
	padding: 5px;
   border-radius: 10px;
}
} 
@media (max-width: 575px) {
.top-content .carousel-item {
    max-height: 400px;
}
}

@media (min-width: 40em) {
  /* Bump up size of carousel content */
  .carousel-caption p {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    line-height: 1.4;
  }

  .featurette-heading {
    font-size: 50px;
  }
}

@media (min-width: 62em) {
  .featurette-heading {
    margin-top: 7rem;
  }
}


