/* ============================================
   BOĞAZ KEYFİ - LÜKS RESTAURANT CSS
   Altın & Siyah Tema
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Montserrat:wght@200;300;400;500;600&display=swap');

/* CSS Variables - Altın & Siyah */
:root {
    --gold-primary: #C9A962;
    --gold-light: #E8D5A3;
    --gold-dark: #A0823D;
    --gold-pale: #F5E6C8;
    --black-primary: #0A0A0A;
    --black-secondary: #111111;
    --black-tertiary: #1A1A1A;
    --black-card: #151515;
    --text-primary: #FFFFFF;
    --text-secondary: #B8B8B8;
    --text-muted: #888888;
    --border-gold: rgba(201, 169, 98, 0.3);
    --border-gold-hover: rgba(201, 169, 98, 0.6);
    --shadow-gold: rgba(201, 169, 98, 0.15);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--black-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-gold);
    padding: 0;
    transition: var(--transition-smooth);
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--gold-primary) !important;
    letter-spacing: 2px;
    padding: 15px 0;
}

.navbar-brand img {
    height: 55px;
    width: auto;
    filter: brightness(1.1);
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-secondary) !important;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 25px 18px !important;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-primary) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 18px;
    left: 18px;
    right: 18px;
    height: 1px;
    background: var(--gold-primary);
    transform: scaleX(0);
    transform-origin: center;
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.navbar-toggler {
    border: 1px solid var(--border-gold);
    padding: 8px 12px;
    color: var(--gold-primary);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px var(--shadow-gold);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(26,26,26,0.9) 100%),
                url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(10,10,10,0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
}

.hero-logo {
    width: 180px;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 30px rgba(201, 169, 98, 0.3));
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 300;
    color: var(--gold-primary);
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 15px;
    line-height: 1.1;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    font-style: italic;
    color: var(--gold-light);
    letter-spacing: 4px;
    margin-bottom: 40px;
}

.hero-divider {
    width: 80px;
    height: 1px;
    background: var(--gold-primary);
    margin: 0 auto 40px;
    position: relative;
}

.hero-divider::before,
.hero-divider::after {
    content: '◆';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-primary);
    font-size: 8px;
}

.hero-divider::before { left: -15px; }
.hero-divider::after { right: -15px; }

.hero-description {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 50px;
    letter-spacing: 1px;
}

/* Buttons */
.btn-gold {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--black-primary);
    background: var(--gold-primary);
    border: 2px solid var(--gold-primary);
    padding: 14px 40px;
    border-radius: 0;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn-gold:hover {
    background: transparent;
    color: var(--gold-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px var(--shadow-gold);
}

.btn-gold:hover::before {
    left: 100%;
}

.btn-outline-gold {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-primary);
    background: transparent;
    border: 2px solid var(--gold-primary);
    padding: 14px 40px;
    border-radius: 0;
    transition: var(--transition-smooth);
}

.btn-outline-gold:hover {
    background: var(--gold-primary);
    color: var(--black-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px var(--shadow-gold);
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section-padding {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--gold-primary);
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.section-divider {
    width: 60px;
    height: 1px;
    background: var(--gold-primary);
    margin: 25px auto;
    position: relative;
}

.section-divider::after {
    content: '◆';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--gold-primary);
    font-size: 8px;
    background: var(--black-primary);
    padding: 0 10px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: var(--black-secondary);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

.about-image {
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid var(--border-gold);
    pointer-events: none;
    transition: var(--transition-smooth);
}

.about-image:hover::after {
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-color: var(--gold-primary);
}

.about-text h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    color: var(--gold-primary);
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.about-text p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-quote {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--gold-light);
    border-left: 2px solid var(--gold-primary);
    padding-left: 25px;
    margin: 30px 0;
    line-height: 1.6;
}

/* ============================================
   MENU SECTION
   ============================================ */
.menu-section {
    background: var(--black-primary);
    position: relative;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.menu-tab {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    background: transparent;
    border: 1px solid var(--border-gold);
    padding: 12px 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.menu-tab:hover,
.menu-tab.active {
    color: var(--black-primary);
    background: var(--gold-primary);
    border-color: var(--gold-primary);
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition-smooth);
}

.menu-item:hover {
    padding-left: 10px;
    border-bottom-color: var(--border-gold);
}

.menu-item-info h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--gold-light);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.menu-item-info p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.6;
}

.menu-item-price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gold-primary);
    white-space: nowrap;
    margin-left: 20px;
}

.menu-item-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-muted);
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
    background: var(--black-secondary);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 24px;
}

.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-icon {
    color: var(--gold-primary);
    font-size: 2rem;
    transform: scale(0);
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-icon {
    transform: scale(1);
}

/* ============================================
   RESERVATION SECTION
   ============================================ */
.reservation-section {
    background: linear-gradient(135deg, rgba(10,10,10,0.95) 0%, rgba(26,26,26,0.95) 100%),
                url('https://images.unsplash.com/photo-1559339352-11d035aa65de?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.reservation-form {
    background: rgba(21, 21, 21, 0.9);
    border: 1px solid var(--border-gold);
    padding: 50px;
    backdrop-filter: blur(10px);
}

.form-control {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    padding: 14px 18px;
    border-radius: 0;
    transition: var(--transition-smooth);
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--gold-primary);
    color: var(--text-primary);
    box-shadow: 0 0 0 3px var(--shadow-gold);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 10px;
}

.form-select {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    padding: 14px 18px;
    border-radius: 0;
    cursor: pointer;
}

.form-select:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px var(--shadow-gold);
    color: var(--text-primary);
}

.form-select option {
    background: var(--black-secondary);
    color: var(--text-primary);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background: var(--black-primary);
}

.contact-info-item {
    text-align: center;
    padding: 40px 30px;
    border: 1px solid var(--border-gold);
    transition: var(--transition-smooth);
    margin-bottom: 24px;
}

.contact-info-item:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-gold);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border: 1px solid var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--gold-primary);
    font-size: 1.3rem;
    transition: var(--transition-smooth);
}

.contact-info-item:hover .contact-icon {
    background: var(--gold-primary);
    color: var(--black-primary);
}

.contact-info-item h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--gold-light);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.contact-info-item p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Map */
.map-container {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-gold);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    filter: grayscale(100%) invert(92%) contrast(83%);
    border: none;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    background: var(--black-secondary);
    position: relative;
}

.testimonial-card {
    background: var(--black-card);
    border: 1px solid var(--border-gold);
    padding: 40px;
    text-align: center;
    transition: var(--transition-smooth);
    margin-bottom: 24px;
}

.testimonial-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 25px;
}

.testimonial-author {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gold-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.testimonial-stars {
    color: var(--gold-primary);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

/* ============================================
   CHEFS SECTION
   ============================================ */
.chefs-section {
    background: var(--black-primary);
}

.chef-card {
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
}

.chef-card img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: var(--transition-smooth);
    filter: grayscale(30%);
}

.chef-card:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.chef-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.95), transparent);
    padding: 40px 25px 25px;
    text-align: center;
}

.chef-info h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--gold-primary);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.chef-info p {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--black-secondary);
    border-top: 1px solid var(--border-gold);
    padding: 80px 0 30px;
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold-primary);
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: block;
}

.footer-text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 350px;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--gold-primary);
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--gold-primary);
    padding-left: 8px;
}

.footer-contact p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.footer-contact i {
    color: var(--gold-primary);
    margin-right: 10px;
    width: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    background: var(--gold-primary);
    color: var(--black-primary);
    border-color: var(--gold-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 60px;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* ============================================
   SPECIALTIES / FEATURES
   ============================================ */
.feature-card {
    text-align: center;
    padding: 50px 30px;
    border: 1px solid var(--border-gold);
    transition: var(--transition-smooth);
    margin-bottom: 24px;
    background: var(--black-card);
}

.feature-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px var(--shadow-gold);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border: 1px solid var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--gold-primary);
    font-size: 1.5rem;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
    background: var(--gold-primary);
    color: var(--black-primary);
    transform: rotateY(360deg);
}

.feature-card h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--gold-light);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.feature-card p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(10, 10, 10, 0.98);
        padding: 20px;
        border-top: 1px solid var(--border-gold);
    }

    .nav-link {
        padding: 12px 0 !important;
    }

    .nav-link::after {
        display: none;
    }

    .section-padding {
        padding: 70px 0;
    }

    .hero-title {
        letter-spacing: 4px;
    }

    .reservation-form {
        padding: 30px;
    }

    .about-image img {
        height: 350px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        letter-spacing: 2px;
    }

    .section-padding {
        padding: 50px 0;
    }

    .menu-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu-item-price {
        margin-left: 0;
        margin-top: 10px;
    }

    .gallery-item img {
        height: 250px;
    }

    .chef-card img {
        height: 350px;
    }

    .reservation-form {
        padding: 25px;
    }

    .footer {
        padding: 50px 0 20px;
    }
}

/* ============================================
   LOADING SCREEN
   ============================================ */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-logo {
    width: 260px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(0.95); }
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--gold-primary);
    color: var(--black-primary);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 999;
    font-size: 1rem;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px var(--shadow-gold);
}
