/* css/style.css */
:root {
    --color-gold: #C5A059;
    --color-gold-dark: #B38B40;
    --color-navy: #0F172A;
}

body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
    background-color: #FDFCFB;
}

h1,
h2,
h3,
h4,
.font-serif {
    font-family: 'Playfair Display', serif;
}

.gold-text {
    color: var(--color-gold);
}

.gold-gradient {
    background: linear-gradient(135deg, #C5A059 0%, #E2C275 50%, #B38B40 100%);
}

.btn-gold {
    background: linear-gradient(135deg, #C5A059 0%, #B38B40 100%);
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(197, 160, 89, 0.4);
}

.site-cta {
    background: linear-gradient(180deg, #0F172A 0%, #111827 100%);
}

.site-cta .cta-panel {
    background: rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.site-cta .cta-secondary {
    color: rgba(255, 255, 255, 0.92);
    border-color: rgba(255, 255, 255, 0.18);
}

.site-cta .cta-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
}


.site-cta .cta-button {
    min-width: 180px;
    white-space: normal;
}

@media (max-width: 767px) {
    .site-cta .cta-button {
        width: 100%;
    }
}
.nav-link.active {
    color: var(--color-gold);
}

.nav-link.active::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-gold);
    margin-top: 2px;
}

#mobile-menu {
    transition: transform 0.3s ease-in-out;
    transform: translateX(100%);
}

#mobile-menu.open {
    transform: translateX(0);
}

.partner-grid-item {
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.6;
}

.partner-grid-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

@keyframes carousel-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.carousel-track {
    display: flex;
    width: max-content;
    animation: carousel-scroll 40s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-logo {
    flex-shrink: 0;
    width: 160px;
    height: 80px;
    margin: 0 16px;
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    filter: grayscale(100%);
    opacity: 0.55;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.carousel-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.carousel-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.carousel-fade-left,
.carousel-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 10;
    pointer-events: none;
}

.carousel-fade-left {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.carousel-fade-right {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}