﻿section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 90px;
    overflow: clip;
}

:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Raleway", sans-serif;
    --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #2e0a13; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #00b5be; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: rgba(255, 255, 255, 0.6); /* The default color of the main navmenu links */
    --nav-hover-color: #ffffff; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #00b5be; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}
/*--------------------------------------------------------------
# Faculty  Staff Section
--------------------------------------------------------------*/
.faculty--staff .faculty-search-bar .search-input-wrapper {
  position: relative;
  max-width: 100%;
}

.faculty--staff .faculty-search-bar .search-input-wrapper .search-icon {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 1.1rem;
  z-index: 2;
}

.faculty--staff .faculty-search-bar .search-input-wrapper .search-input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 50px;
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 1rem;
  font-weight: 300;
  transition: all 0.3s ease;
}

.faculty--staff .faculty-search-bar .search-input-wrapper .search-input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
  font-weight: 300;
}

.faculty--staff .faculty-search-bar .search-input-wrapper .search-input:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.faculty--staff .featured-faculty {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 8px 40px color-mix(in srgb, var(--default-color), transparent 94%);
}

.faculty--staff .featured-faculty .featured-image img {
  border-radius: 16px;
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.faculty--staff .featured-faculty .featured-content {
  padding-left: 2rem;
}

.faculty--staff .featured-faculty .featured-content .faculty-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.faculty--staff .featured-faculty .featured-content h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.faculty--staff .featured-faculty .featured-content .title {
  font-size: 1.2rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.faculty--staff .featured-faculty .featured-content .biography {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2rem;
  font-weight: 300;
}

.faculty--staff .featured-faculty .featured-content .expertise-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.faculty--staff .featured-faculty .featured-content .expertise-areas span {
  padding: 0.5rem 1.2rem;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  color: var(--default-color);
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 300;
}

.faculty--staff .featured-faculty .featured-content .contact-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.faculty--staff .featured-faculty .featured-content .contact-actions .contact-btn {
  padding: 0.8rem 2rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 25px;
  font-weight: 400;
  transition: all 0.3s ease;
}

.faculty--staff .featured-faculty .featured-content .contact-actions .contact-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.faculty--staff .featured-faculty .featured-content .contact-actions .social-links {
  display: flex;
  gap: 1rem;
}

.faculty--staff .featured-faculty .featured-content .contact-actions .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 50%;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.faculty--staff .featured-faculty .featured-content .contact-actions .social-links a:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.faculty--staff .faculty-profile {
  background-color: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.faculty--staff .faculty-profile:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px color-mix(in srgb, var(--default-color), transparent 88%);
}

.faculty--staff .faculty-profile .profile-image {
  overflow: hidden;
}

.faculty--staff .faculty-profile .profile-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.faculty--staff .faculty-profile .profile-content {
  padding: 2rem;
}

.faculty--staff .faculty-profile .profile-content h3 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.faculty--staff .faculty-profile .profile-content .position {
  color: var(--accent-color);
  font-size: 1rem;
  margin-bottom: 0.8rem;
  font-weight: 400;
}

.faculty--staff .faculty-profile .profile-content .department-info {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.faculty--staff .faculty-profile .profile-content .research-focus {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.faculty--staff .faculty-profile .profile-content .research-focus span {
  padding: 0.3rem 0.8rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 300;
}

.faculty--staff .faculty-profile .profile-actions {
  padding: 0 2rem 2rem;
}

.faculty--staff .faculty-profile .profile-actions .view-profile {
  color: var(--accent-color);
  font-size: 0.95rem;
  font-weight: 400;
  text-decoration: none;
  position: relative;
}

.faculty--staff .faculty-profile .profile-actions .view-profile::after {
  content: "â†’";
  margin-left: 0.5rem;
  transition: all 0.3s ease;
}

.faculty--staff .faculty-profile .profile-actions .view-profile:hover::after {
  margin-left: 1rem;
}

.faculty--staff .load-more-section .load-more-btn {
  padding: 1rem 3rem;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
  color: var(--accent-color);
  border-radius: 30px;
  font-weight: 400;
  transition: all 0.3s ease;
}

.faculty--staff .load-more-section .load-more-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .faculty--staff .featured-faculty {
    padding: 2rem;
  }

  .faculty--staff .featured-faculty .featured-content {
    padding-left: 0;
    margin-top: 2rem;
  }

  .faculty--staff .featured-faculty .featured-content h2 {
    font-size: 2rem;
  }

  .faculty--staff .featured-faculty .featured-content .contact-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .faculty--staff .filter-tabs {
    flex-wrap: wrap;
    gap: 1rem !important;
    justify-content: center;
  }

  .faculty--staff .featured-faculty {
    padding: 1.5rem;
  }

  .faculty--staff .featured-faculty .featured-content h2 {
    font-size: 1.8rem;
  }

  .faculty--staff .featured-faculty .featured-content .expertise-areas {
    gap: 0.5rem;
  }

  .faculty--staff .featured-faculty .featured-content .expertise-areas span {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }
}
/*fakülte logo bölümü */
.card-item-vfull {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 2px solid rgba(102, 102, 102, 0.03);
}

    .card-item-vfull .img-wrapper {
        width: 160px;
        height: 160px;
        overflow: hidden;
        border-radius: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
        background-color: rgba(198, 205, 216, 0.2235294118);
    }

    .card-item-vfull .card-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

        .card-item-vfull .card-content .title {
            font-size: 16px;
            font-weight: 700;
            color: #666;
        }

        .card-item-vfull .card-content .description {
            font-size: 13px;
            font-weight: 600;
            font-family: Quicksand, sans-serif;
            color: #666;
            max-width: 50ch;
            margin-bottom: 1rem;
            margin-top: 6px;
        }

        .card-item-vfull .card-content .btn-wrapper {
            display: flex;
            gap: 10px;
            align-items: center;
            justify-content: center;
            max-width: 140px;
            font-size: 11px;
            font-weight: 600;
            height: 36px;
            font-family: Quicksand, sans-serif;
            margin-top: 1rem;
        }

            .card-item-vfull .card-content .btn-wrapper .btn.btn-primary {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 7px;
                width: 100%;
                height: 100%;
                background-color: #1c458b;
                color: #f1f1f1;
                border-radius: 11px;
                transition: 0.4s;
                padding: 1.2rem;
            }

                .card-item-vfull .card-content .btn-wrapper .btn.btn-primary:hover {
                    background-color: rgba(28, 69, 139, 0.7);
                    color: #f1f1f1;
                }

    .annocuments-module .full-link-item:hover,
    .card-item-vfull:hover,
    .module-page-pagination .pagination li:last-child a:hover,
    .toggle-node .org-tree-toggle.active {
        background-color: #1c458b !important;
    }

        .card-item-vfull:hover * {
            color: #f1f1f1 !important;
        }

    .card-item-vfull.version-2 {
        background-color: #f4f6f9;
        margin-bottom: 1.2rem;
        border-radius: 20px;
        padding: 10px;
        height: 130px;
        border-bottom: 0 !important;
        position: relative;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.03);
        transition: 0.4s;
    }

        .card-item-vfull.version-2:hover {
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
            background-color: rgba(107, 117, 133, 0.6156862745);
        }

        .card-item-vfull.version-2:after {
            content: "";
            font-family: FontAwesome;
            font-weight: 900;
            font-size: 20px;
            color: #6c7886;
            width: 50px;
            height: 50px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .card-item-vfull.version-2 .img-wrapper {
            width: 130px;
            height: 100%;
            background-color: #fff;
            box-shadow: 0 0 50px rgba(0, 0, 0, 0.09);
        }
