/* NİHAİ TASARIM STİLLERİ */
:root {
    /* Theme colors - will be overridden by dynamic settings */
    --theme-color: #2c5aa0;
    --theme-color-dark: #1e3d6f;
    --theme-color-light: #4a7bc8;

    /* Use theme colors for primary colors */
    --primary-color: var(--theme-color);
    --primary-light: var(--theme-color-light);
    --primary-dark: var(--theme-color-dark);

    /* Other colors */
    --secondary-color: #f8f9fa;
    --text-color: #212529;
    --text-muted: #6c757d;
    --light-bg: #fcfdff;
    --border-color: #e9ecef;
    --border-radius: 12px;
    --box-shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --box-shadow-md: 0 5px 20px rgba(0,0,0,0.07);
    --success-color: #28a745;
    --warning-color: #ffc107;
}

body {
    font-family: 'Libre Franklin', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--light-bg);
    padding-top: 85px; /* Fixed header için */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Source Serif 4', serif;
    font-weight: 700;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* 1. YENİLENMİŞ HEADER */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    transition: box-shadow 0.3s ease;
}
.header-scrolled {
     box-shadow: var(--box-shadow-sm);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-logo {
    max-width: 200px;
    object-fit: contain;
    max-height: 200px;
}

.footer-logo {
    max-width: 150px;
    object-fit: contain;
    vertical-align: middle;
    max-height: 150px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-muted) !important;
    transition: color 0.2s ease;
    padding: 0.5rem 1rem !important;
    border-radius: 6px;
}
.nav-link:hover, .nav-link.active {
    color: var(--primary-color) !important;
    background: var(--theme-color);
    background: linear-gradient(rgba(255,255,255,0.95), rgba(255,255,255,0.95)), var(--theme-color);
}
.btn-cta {
    background-color: var(--primary-color);
    color: white !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-cta:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(var(--theme-color-rgb, 44, 90, 160), 0.2);
}

/* Bootstrap overrides */
:root {
    --bs-primary: var(--theme-color) !important;
    --bs-primary-rgb: var(--theme-color-rgb) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
}

.btn-outline-primary {
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: white !important;
}

/* 2. GELİŞMİŞ CAROUSEL MANŞET */
/* 2. ANA CAROUSEL VE HERO SECTION */
.headline-carousel-section {
    margin-top: -85px; /* Body padding'ini iptal et - header altında direkt başlar */
}

/* Hero Section Style (for static pages only) */
.headline-carousel-section.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: -85px;
    padding-top: 150px;
    padding-bottom: 80px;
}

.headline-carousel-section.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    animation: float 20s linear infinite;
}

.headline-carousel-section .container {
    position: relative;
    z-index: 2;
}

@keyframes float {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

/* Hero Section Responsive */
@media (max-width: 992px) {
    .headline-carousel-section.hero-section {
        padding-top: 120px;
        padding-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .headline-carousel-section.hero-section {
        padding-top: 100px;
        padding-bottom: 40px;
        margin-top: -70px;
    }
}

@media (max-width: 576px) {
    .headline-carousel-section.hero-section {
        padding-top: 90px;
        padding-bottom: 30px;
    }

    .headline-carousel-section .display-4 {
        font-size: 2rem;
    }

    .headline-carousel-section .lead {
        font-size: 1rem;
    }
}

.carousel {
    position: relative;
}

.carousel-item {
    height: calc(600px + 85px); /* Header height'ını da ekle */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 85px; /* Header altında content başlasın */
}
.carousel-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.7));
}
.carousel-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-in-out;
}
.carousel-tag {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    color: white;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.carousel-content h2 {
    font-size: 3rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
    margin-bottom: 1.5rem;
}
.carousel-content p {
    font-size: 1.2rem;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
    margin-bottom: 2rem;
}

.carousel-control-custom {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}
.carousel-control-custom:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.05);
}
.carousel-control-custom.prev { left: 2rem; }
.carousel-control-custom.next { right: 2rem; }

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

/* 3. ARAMA VE BİLGİ BÖLÜMÜ */

.search-and-info-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.search-container {
    background: white;
    border-radius: var(--border-radius);
    padding: 8px;
    box-shadow: var(--box-shadow-md);
    border: 1px solid var(--border-color);
    max-width: 700px;
    margin: 0 auto;
}

.search-input {
    border: none;
    padding: 16px 24px;
    font-size: 1.1rem;
    background: transparent;
}

.btn-search {
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
    padding: 16px 30px;
    color: white;
    transition: background-color 0.2s ease;
}
.btn-search:hover,
.btn-search:focus,
.btn-search:active {
    background: var(--primary-dark) !important;
    color: white !important;
}

.journal-stats {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.stat-item {
    padding: 15px;
    border-radius: 8px;
    background: white;
    box-shadow: var(--box-shadow-sm);
    transition: all 0.3s ease;
}
.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-md);
}
.stat-item h5 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 5px;
    font-weight: 700;
}
.stat-item small {
    color: var(--text-muted);
    font-weight: 500;
}

/* 4. HIZLI ERİŞİM BÖLÜMÜ */
.quick-access-section {
    padding: 80px 0;
    background: var(--secondary-color);
}

.quick-access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.quick-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    text-align: left;
    min-height: 280px;
}

.quick-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-md);
    border-color: var(--primary-color);
}

.quick-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    color: white;
    font-size: 1.4rem;
    margin-bottom: 20px;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease;
}

.quick-card:hover .quick-icon {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.quick-title {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.quick-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    flex-grow: 1;
    line-height: 1.5;
}

.quick-card-link {
    margin-top: auto;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.quick-card-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* 5. GÜNCEL SAYI & ÖNE ÇIKAN MAKALELER */
.content-section {
    padding: 80px 0;
}

.issue-cover-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.issue-cover-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.issue-cover-image {
    width: 100%;
    aspect-ratio: 1 / 1.414; /* A4 dikey oranı (210:297mm) */
    object-fit: cover;
    object-position: center top; /* Üstten hizala */
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.issue-cover-info {
    background: white;
    padding: 2rem;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.issue-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Editör butonu tema renginde */
.issue-cover-info .btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
    font-weight: 400;
    text-align: center;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.issue-cover-info .btn-primary:hover {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    color: #fff !important;
}

.issue-cover-info .btn-primary:focus,
.issue-cover-info .btn-primary:active {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    color: #fff !important;
    box-shadow: 0 0 0 0.25rem rgba(var(--theme-color-rgb), 0.25) !important;
}

.article-list .article-item {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}
.article-list .article-item:hover {
    box-shadow: var(--box-shadow-sm);
    border-color: var(--primary-color);
    transform: translateX(5px);
}
.article-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    margin-bottom: 1rem;
    line-height: 1.4;
    display: block;
}
.article-title:hover {
    text-decoration: underline;
}
.article-authors {
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 500;
}
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.article-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}
.article-number {
    background: var(--primary-color);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    margin-right: 15px;
    flex-shrink: 0;
}
.article-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

/* 6. İNDEKS BİLGİLERİ */
.indexing-section {
    padding: 60px 0 80px;
    background: var(--secondary-color);
}
.indexing-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 30px 0;
}
.index-logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 15px 25px;
    background: white;
    border-radius: 8px;
    box-shadow: var(--box-shadow-sm);
    transition: all 0.3s ease;
}
.index-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-md);
}

.index-logo-link, .index-logo-wrapper {
    display: block;
    transition: all 0.3s ease;
}

.index-logo-link:hover, .index-logo-wrapper:hover {
    transform: translateY(-3px);
    filter: grayscale(100%);
    opacity: 0.7;
}

.index-logo-image {
    width: 228px;
    height: 126px;
    object-fit: contain;
    background: white;
    border-radius: 8px;
    box-shadow: var(--box-shadow-sm);
    padding: 10px;
    transition: all 0.3s ease;
}

.index-logo-link:hover .index-logo-image,
.index-logo-wrapper:hover .index-logo-image {
    box-shadow: var(--box-shadow-md);
}

@media (max-width: 768px) {
    .index-logo-image {
        width: 150px;
        height: 83px;
    }
}

/* 7. KAPSAMLI FOOTER */
footer {
    background-color: #1a1a1a;
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
}
.footer-brand {
    font-family: 'Source Serif 4', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}
.footer-social-icons a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    margin-right: 15px;
    transition: all 0.3s ease;
}
.footer-social-icons a:hover {
    color: white;
    transform: translateY(-3px);
}
.footer-title {
    font-family: 'Source Serif 4', serif;
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}
.footer-links a:hover {
    color: white;
    padding-left: 5px;
}
.footer-newsletter-form .form-control {
    background-color: #2a2a2a;
    border: 1px solid #444;
    color: white;
    height: 50px;
}
.footer-newsletter-form .form-control::placeholder {
    color: #888;
}
.footer-bottom {
    border-top: 1px solid #333;
    padding: 2rem 0;
    margin-top: 4rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .carousel-item {
        height: calc(500px + 85px);
    }
    .carousel-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .carousel-item {
        height: calc(400px + 85px);
    }
    .carousel-content h2 {
        font-size: 2rem;
    }
    .carousel-content p {
        font-size: 1rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .stat-item h5 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .g-5 > * {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    .stat-item {
        height: 100px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        padding: 10px !important;
        margin-bottom: 15px !important;
    }
    .stat-item h5 {
        margin-bottom: 5px !important;
        font-size: 1.2rem !important;
    }
    .stat-item small {
        font-size: 0.8rem !important;
        line-height: 1.2 !important;
    }
    .journal-stats {
        margin-top: 2rem !important;
        padding-top: 1.5rem !important;
    }
    body {
        padding-top: 70px;
    }
    .navbar-brand {
        font-size: 1.5rem;
    }
    .carousel-control-custom {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .carousel-control-custom.prev { left: 1rem; }
    .carousel-control-custom.next { right: 1rem; }
}

/* DİL DEĞİŞTİRİCİ STİLLERİ */
.language-switcher {
    font-size: 0.9rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.language-switcher:hover {
    background-color: rgba(16, 76, 129, 0.1);
}

.dropdown-menu {
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--box-shadow-md);
    min-width: 140px;
}

.dropdown-item.active {
    background-color: rgba(16, 76, 129, 0.1);
    color: var(--primary-color);
    font-weight: 600;
}

/* Flag Icons */
.flag-icon {
    width: 20px;
    height: 14px;
    margin-right: 8px;
    display: inline-block;
    vertical-align: middle;
}

.flag-icon-tr {
    background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" image-rendering="optimizeQuality" fill-rule="evenodd" clip-rule="evenodd" viewBox="0 0 512 356.18"><g fill-rule="nonzero"><path fill="%23E30A17" d="M28.137 0H483.86C499.337 0 512 12.663 512 28.14v299.9c0 15.477-12.663 28.14-28.14 28.14H28.137C12.663 356.18 0 343.517 0 328.04V28.14C0 12.663 12.663 0 28.137 0z"/><path fill="%23fff" d="M253.365 130.516c-15.783-24.923-43.598-41.473-75.281-41.473-49.179 0-89.047 39.868-89.047 89.047 0 49.179 39.868 89.047 89.047 89.047 31.684 0 59.498-16.55 75.282-41.475-13.042 14.526-31.963 23.665-53.021 23.665-39.342 0-71.237-31.893-71.237-71.237 0-39.344 31.895-71.237 71.237-71.237 21.058 0 39.978 9.138 53.02 23.663zm-4.785 47.574l80.543 26.169-49.778-68.514v84.688l49.778-68.514-80.543 26.171z"/></g></svg>');
    background-size: cover;
}

.flag-icon-en {
    background-image: url('data:image/svg+xml;charset=utf-8,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 55.2 38.4"><style>.st0{fill:%23FEFEFE;} .st1{fill:%23C8102E;} .st2{fill:%23012169;}</style><g><path class="st0" d="M2.87,38.4h49.46c1.59-0.09,2.87-1.42,2.87-3.03V3.03c0-1.66-1.35-3.02-3.01-3.03H3.01 C1.35,0.01,0,1.37,0,3.03v32.33C0,36.98,1.28,38.31,2.87,38.4L2.87,38.4z"/><polygon class="st1" points="23.74,23.03 23.74,38.4 31.42,38.4 31.42,23.03 55.2,23.03 55.2,15.35 31.42,15.35 31.42,0 23.74,0 23.74,15.35 0,15.35 0,23.03 23.74,23.03"/><path class="st2" d="M33.98,12.43V0h18.23c1.26,0.02,2.34,0.81,2.78,1.92L33.98,12.43L33.98,12.43z"/><path class="st2" d="M33.98,25.97V38.4h18.35c1.21-0.07,2.23-0.85,2.66-1.92L33.98,25.97L33.98,25.97z"/><path class="st2" d="M21.18,25.97V38.4H2.87c-1.21-0.07-2.24-0.85-2.66-1.94L21.18,25.97L21.18,25.97z"/><path class="st2" d="M21.18,12.43V0H2.99C1.73,0.02,0.64,0.82,0.21,1.94L21.18,12.43L21.18,12.43z"/><polygon class="st2" points="0,12.8 7.65,12.8 0,8.97 0,12.8"/><polygon class="st2" points="55.2,12.8 47.51,12.8 55.2,8.95 55.2,12.8"/><polygon class="st2" points="55.2,25.6 47.51,25.6 55.2,29.45 55.2,25.6"/><polygon class="st2" points="0,25.6 7.65,25.6 0,29.43 0,25.6"/><polygon class="st1" points="55.2,3.25 36.15,12.8 40.41,12.8 55.2,5.4 55.2,3.25"/><polygon class="st1" points="19.01,25.6 14.75,25.6 0,32.98 0,35.13 19.05,25.6 19.01,25.6"/><polygon class="st1" points="10.52,12.81 14.78,12.81 0,5.41 0,7.55 10.52,12.81"/><polygon class="st1" points="44.63,25.59 40.37,25.59 55.2,33.02 55.2,30.88 44.63,25.59"/></g></svg>');
    background-size: cover;
}

.dropdown-item {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: white;
}

.dropdown-item.active {
    background-color: rgba(16, 76, 129, 0.1);
    color: var(--primary-color);
    font-weight: 600;
}

.dropdown-item.active:hover {
    background-color: var(--primary-color);
    color: white;
}

/* 7. KAPSAMLI FOOTER */
footer {
    background-color: #1a1a1a;
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
    margin-top: auto;
}

.footer-brand {
    font-family: 'Source Serif 4', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.footer-social-icons a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    color: white;
    transform: translateY(-3px);
}

.footer-title {
    font-family: 'Source Serif 4', serif;
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-newsletter-form .form-control {
    background-color: #2a2a2a;
    border: 1px solid #444;
    color: white;
    height: 50px;
}

.footer-newsletter-form .form-control::placeholder {
    color: #888;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 2rem 0;
    margin-top: 4rem;
}

/* Dropdown hover functionality */
@media (min-width: 992px) {
    .navbar .dropdown {
        position: relative;
    }

    .navbar .dropdown > .dropdown-menu {
        display: none;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        margin-top: 0;
    }

    .navbar .dropdown:hover > .dropdown-menu,
    .navbar .dropdown > .dropdown-menu.show {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .navbar .dropdown > .dropdown-toggle::after {
        transition: transform 0.3s ease;
    }

    .navbar .dropdown:hover > .dropdown-toggle::after {
        transform: rotate(180deg);
    }
}

/* CTA Button Styles */
.btn-cta {
    background: var(--theme-color) !important;
    color: white !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}

.btn-cta:hover {
    background: var(--theme-color-dark) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
