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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #000000;
    --accent-gold: #c9a961;
    --gold-light: #d4af37;
    --gold-dark: #b8956a;
    --text-dark: #1a1a1a;
    --text-light: #8b8b8b;
    --text-muted: #a0a0a0;
    --bg-light: #fafafa;
    --bg-cream: #faf9f6;
    --bg-white: #ffffff;
    --bg-dark: #000000;
    --border-color: #e8e8e8;
    --border-light: #f0f0f0;
    --white: #ffffff;
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

html {
    scroll-behavior: auto; /* Custom smooth scroll via JavaScript for better control */
}

/* Loading Screen - Hızlı açılış */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.32s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.32s step-end;
    will-change: opacity;
}

.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader {
    text-align: center;
    contain: layout style;
}

.loader-logo {
    margin-bottom: 2rem;
}

.loader-logo img {
    max-width: 180px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    content-visibility: auto;
}

.loader-logo h1 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    color: var(--white);
    letter-spacing: 6px;
    font-weight: 300;
    margin: 0;
}

.loader-progress {
    width: 180px;
    height: 2px;
    background: rgba(255, 255, 255, 0.25);
    margin: 0 auto;
    overflow: hidden;
    border-radius: 1px;
}

.loader-bar {
    height: 100%;
    background: var(--white);
    width: 0%;
    animation: loading 0.9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    transform-origin: left;
}

@keyframes loading {
    0% { width: 0%; }
    45% { width: 75%; }
    100% { width: 100%; }
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.8;
    overflow-x: hidden;
    font-weight: 300;
    letter-spacing: 0.5px;
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.about-preview,
.salons-preview,
.services,
.virtual-tour-section,
.past-weddings,
.reviews-section,
.cta-section,
.gallery-page,
.about-page,
.contact-page,
.reservation-page {
    content-visibility: auto;
    contain-intrinsic-size: 1px 900px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid var(--border-light);
}

/* Sadece ana sayfada şeffaf menü */
.home-page .navbar {
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(0px);
    box-shadow: none;
    border-bottom: 1px solid transparent;
}

.home-page .navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid var(--border-light);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    display: flex;
    align-items: center;
    height: 60px;
}

.logo img {
    max-height: 60px;
    height: 60px;
    max-width: 300px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: brightness(0);
    transition: filter 0.4s ease;
}

/* Sadece ana sayfada beyaz logo */
.home-page .logo img {
    filter: brightness(0) invert(1);
}

.home-page .navbar.scrolled .logo img {
    filter: brightness(0);
}

.logo h1 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--primary-color);
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin: 0;
    transition: color 0.4s ease, text-shadow 0.4s ease;
}

/* Sadece ana sayfada beyaz logo metni */
.home-page .logo h1 {
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.home-page .navbar.scrolled .logo h1 {
    color: var(--primary-color);
    text-shadow: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 300;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

/* Sadece ana sayfada beyaz menü linkleri */
.home-page .nav-menu a {
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.home-page .navbar.scrolled .nav-menu a {
    color: var(--text-dark);
    text-shadow: none;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled .nav-menu a::after {
    background: var(--accent-gold);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--text-dark);
}

/* Sadece ana sayfada beyaz hover */
.home-page .nav-menu a:hover,
.home-page .nav-menu a.active {
    color: var(--white);
}

.home-page .navbar.scrolled .nav-menu a:hover,
.home-page .navbar.scrolled .nav-menu a.active {
    color: var(--text-dark);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    display: block;
    min-width: 100%;
    min-height: 100%;
}

.video-fallback {
    display: none;
    filter: brightness(0.7);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Hero açılış animasyonları - Daha hızlı ve güçlü */
.animate-fade-in-up {
    opacity: 1;
    transform: translateY(48px) scale(0.96);
    filter: blur(10px);
    animation: elegantFadeInTitle 1.05s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    will-change: opacity, transform, filter;
    animation-fill-mode: forwards;
    contain: layout style paint;
}

.animate-fade-in-up-delay {
    opacity: 1;
    transform: translateY(36px) scale(0.98);
    filter: blur(8px);
    animation: elegantFadeInSubtitle 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.18s forwards;
    will-change: opacity, transform, filter;
    animation-fill-mode: forwards;
    contain: layout style paint;
}

.animate-fade-in-up-delay-2 {
    opacity: 1;
    transform: translateY(28px) scale(0.98);
    filter: blur(6px);
    animation: elegantFadeInButton 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.38s forwards;
    will-change: opacity, transform, filter;
    animation-fill-mode: forwards;
    contain: layout style paint;
}

@keyframes elegantFadeInTitle {
    0% {
        opacity: 0.4;
        transform: translateY(48px) scale(0.96) rotateX(12deg);
        filter: blur(10px);
        letter-spacing: 6px;
    }
    35% {
        opacity: 0.85;
        transform: translateY(8px) scale(1.03) rotateX(3deg);
        filter: blur(3px);
        letter-spacing: 4px;
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
        filter: blur(0);
        letter-spacing: 4px;
    }
}

@keyframes elegantFadeInSubtitle {
    0% {
        opacity: 0.25;
        transform: translateY(36px) scale(0.98);
        filter: blur(8px);
        letter-spacing: 4px;
    }
    55% {
        opacity: 0.8;
        transform: translateY(6px) scale(1.01);
        filter: blur(2px);
        letter-spacing: 3px;
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
        letter-spacing: 3px;
    }
}

@keyframes elegantFadeInButton {
    0% {
        opacity: 0.2;
        transform: translateY(28px) scale(0.96);
        filter: blur(6px);
    }
    50% {
        opacity: 0.75;
        transform: translateY(8px) scale(0.99);
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 5.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: 4px;
    line-height: 1.2;
    position: relative;
    overflow: hidden;
    animation: titleGlow 2.5s ease-in-out 1.2s infinite alternate;
    color: var(--white) !important;
    display: block;
    visibility: visible;
}

.hero-title.animate-fade-in-up {
    color: var(--white) !important;
}

@keyframes titleGlow {
    0% {
        text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    }
    100% {
        text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 255, 255, 0.1);
    }
}

.hero-title::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    animation: shimmer 1.8s ease-out 1s forwards;
}

@keyframes shimmer {
    0% { left: -100%; opacity: 0; }
    40% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}


.hero-subtitle {
    font-size: 1rem;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.9;
    font-family: var(--font-primary);
    position: relative;
    display: inline-block;
    color: var(--white);
}

.hero-subtitle::before,
.hero-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
    transition: width 1s ease 1s;
}

.hero-subtitle::before {
    left: -60px;
    animation: lineExpandLeft 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.hero-subtitle::after {
    right: -60px;
    animation: lineExpandRight 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

@keyframes lineExpandLeft {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 50px;
        opacity: 1;
    }
}

@keyframes lineExpandRight {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 50px;
        opacity: 1;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 30px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 45px;
    text-decoration: none;
    border-radius: 0;
    font-weight: 300;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    cursor: pointer;
    font-family: var(--font-primary);
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.animate-fade-in-up-delay-2.btn-primary {
    animation: buttonPulse 2s ease-in-out 1s infinite;
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--text-dark);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Section Styles */
section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 1.3;
}

.section-header p {
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    font-weight: 300;
    text-transform: uppercase;
    line-height: 1.8;
}

/* About Preview */
.about-preview {
    background: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.about-card {
    text-align: center;
    padding: 4rem 2rem;
    border: none;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-card:hover {
    transform: translateY(-8px);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    opacity: 0.7;
    transition: opacity 0.4s ease;
}

.about-card:hover .icon-wrapper {
    opacity: 1;
}

.icon-wrapper svg {
    width: 40px;
    height: 40px;
    stroke-width: 1;
}

.about-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 300;
    letter-spacing: 1px;
}

.about-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.9;
    font-weight: 300;
    letter-spacing: 0.3px;
}

/* Salons Preview */
.salons-preview {
    background: var(--bg-cream);
}

.salons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin-bottom: 5rem;
}

.salon-card {
    background: var(--bg-white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.salon-card:hover {
    transform: translateY(-10px);
}

.salon-image {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.salon-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.salon-card:hover .salon-image img {
    transform: scale(1.1);
}

.salon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.salon-card:hover .salon-overlay {
    opacity: 1;
}

.salon-info {
    padding: 2.5rem 0 0;
    text-align: center;
}

.salon-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-weight: 300;
    letter-spacing: 1px;
}

.salon-capacity {
    color: var(--accent-gold);
    font-weight: 300;
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.salon-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.9;
    font-weight: 300;
    letter-spacing: 0.3px;
}

/* Services */
.services {
    background: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.service-item {
    position: relative;
    height: 400px;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    border-right: 1px solid var(--border-light);
}

.service-item:last-child {
    border-right: none;
}

.service-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(30%);
}

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

.service-item h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: var(--white);
    padding: 3rem 2rem 2rem;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 1px;
}

/* CTA Section */
.cta-section {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 1.3;
}

.cta-content p {
    font-size: 0.9rem;
    margin-bottom: 3rem;
    opacity: 0.8;
    letter-spacing: 2px;
    font-weight: 300;
    text-transform: uppercase;
    line-height: 1.8;
}

.cta-section .btn-primary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.cta-section .btn-primary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Page Header */
.page-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 180px 0 100px;
    text-align: center;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Arka plan görselleri (düğün salonu temalı, Unsplash) */
.page-rezervasyon .page-header {
    background-image: url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?w=1920&q=80');
}
.page-iletisim .page-header {
    background-image: url('../assets/images/salons/grand-ballroom/salon-paris-banner.png');
}
.page-salon-paris .page-header {
    background-color: #000;
    background-image: none;
}
.page-salon-paris .page-header::before {
    display: none;
}
.page-hakkimizda .page-header {
    background-image: url('https://images.unsplash.com/photo-1464366400600-7168b8af9bc3?w=1920&q=80');
}
.page-salonlar .page-header {
    background-image: url('../assets/images/salons/grand-ballroom/1.jpg');
}
.page-menu .page-header {
    background-image: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1920&q=80');
}
.page-galeri .page-header {
    background-image: url('../assets/images/salons/royal-garden/2.jpg');
    background-size: cover;
    background-position: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 0;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
    line-height: 1.2;
}

.page-header p {
    font-size: 0.85rem;
    opacity: 0.8;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

/* Menu Page */
.menu-page-section {
    padding: 4rem 0 5rem;
    background: var(--bg-cream);
}
.menu-page-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3.5rem;
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 1rem;
}
.menu-block {
    margin-bottom: 4.5rem;
}
.menu-block:last-child {
    margin-bottom: 0;
}
.menu-block-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(182, 158, 102, 0.25);
}
.menu-block-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}
.menu-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.menu-cards-single {
    grid-template-columns: 1fr;
    max-width: 720px;
}
.menu-card {
    background: var(--bg-white);
    padding: 2rem;
    border: 1px solid var(--border-light);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.menu-card:hover {
    border-color: rgba(182, 158, 102, 0.35);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}
.menu-card-hint {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 1rem 0 1.25rem;
    line-height: 1.5;
}

.menu-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    color: #B69E66;
}
.menu-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}
.menu-list li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 0.9375rem;
    line-height: 1.6;
}
.menu-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    background: #B69E66;
}
.menu-card .btn {
    padding: 10px 24px;
    font-size: 0.75rem;
}
@media (max-width: 768px) {
    .menu-cards {
        grid-template-columns: 1fr;
    }
}

/* Salon Detail */
.salon-detail {
    padding: 80px 0;
    background: var(--white);
}

.salon-detail-reverse .salon-detail-content {
    flex-direction: row-reverse;
}

.salon-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: center;
}

.salon-detail-image {
    border-radius: 0;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.salon-detail-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.salon-detail-info h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 400;
    letter-spacing: 1px;
}

.salon-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.spec-item strong {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.spec-item span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.salon-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 300;
}

.salon-features {
    margin-bottom: 2rem;
}

.salon-features h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.salon-features ul {
    list-style: none;
}

.salon-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 300;
}

.salon-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.salon-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 0;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.salon-gallery img:hover {
    transform: scale(1.05);
}

/* Rezervasyon giriş seçenekleri (Düğün Sahibi / Misafir) */
.reservation-entry-section {
    padding: 3rem 0 4rem;
    background: var(--bg-white);
}

.reservation-entry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.reservation-entry-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--bg-cream);
    border: 2px solid var(--border-color);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.reservation-entry-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.reservation-entry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.reservation-entry-icon-svg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
}

.reservation-entry-icon-svg svg {
    width: 48px;
    height: 48px;
}

.reservation-entry-card:hover .reservation-entry-icon-svg {
    color: var(--primary-color);
}

.reservation-entry-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
}

.reservation-entry-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.reservation-entry-card .btn {
    pointer-events: none;
}

/* Kart arkaplani acik oldugu icin btn-outline beyaz kalip kaybolmasin */
.reservation-entry-card .btn.btn-outline {
    color: var(--text-dark);
    border-color: var(--accent-gold);
}

.reservation-entry-card:hover .btn.btn-outline {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

@media (max-width: 768px) {
    .reservation-entry-grid {
        grid-template-columns: 1fr;
    }
}

/* Reservation Form */
.reservation-section {
    padding: 120px 0;
    background: var(--bg-cream);
}

.reservation-wrapper {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 5rem;
}

.reservation-wrapper-form-only {
    grid-template-columns: 1fr;
    max-width: 700px;
    margin: 0 auto;
}

.reservation-form-container {
    background: var(--bg-white);
    padding: 4rem;
    border: none;
    box-shadow: none;
}

.reservation-form-container h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-weight: 300;
    letter-spacing: 2px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 0;
    border: none;
    border-bottom: 1px solid var(--border-color);
    border-radius: 0;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    background: transparent;
    transition: all 0.3s ease;
    color: var(--text-dark);
    font-weight: 300;
    letter-spacing: 0.3px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--primary-color);
    border-bottom-width: 2px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
}

.reservation-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: var(--bg-white);
    padding: 3rem;
    border: none;
    box-shadow: none;
    margin-bottom: 2rem;
}

.info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-weight: 300;
    letter-spacing: 1px;
}

.process-step {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
    font-size: 1.2rem;
    flex-shrink: 0;
    letter-spacing: 0;
}

.step-content h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.5px;
    font-family: var(--font-heading);
}

.step-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 0.3px;
}

.contact-info p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.package-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.package-item {
    padding: 1.5rem 0;
    background: transparent;
    border-bottom: 1px solid var(--border-light);
}

.package-item:last-child {
    border-bottom: none;
}

.package-item h4 {
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 1px;
    font-family: var(--font-heading);
}

.package-item p {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 0.3px;
}

/* Aktif Düğünler - Rezervasyon sayfası sağ kolon */
.active-weddings-card {
    margin-bottom: 0 !important;
}

.active-weddings-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 300;
    letter-spacing: 1px;
}

.active-weddings-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.active-wedding-item {
    padding: 1.25rem;
    background: var(--bg-cream);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.active-wedding-item:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 4px 20px rgba(201, 169, 97, 0.08);
}

.wedding-owner-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 0.35rem;
    letter-spacing: 0.5px;
}

.wedding-salon-name {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.wedding-date {
    font-size: 0.85rem;
    color: var(--accent-gold);
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.wedding-card-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.wedding-card-buttons .btn {
    flex: 1;
    min-width: 0;
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    text-align: center;
}

.btn-wedding-owner {
    background: var(--accent-gold);
    color: var(--primary-color);
    border: 1px solid var(--accent-gold);
}

.btn-wedding-owner:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--white);
}

.btn-guest {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.btn-guest:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

/* Sanal Tur - Ana sayfa */
.virtual-tour-section {
    padding: 120px 0;
    background: var(--bg-white);
}

.virtual-tour-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.virtual-tour-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    aspect-ratio: 16/9;
    min-height: 280px;
}

.virtual-tour-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.virtual-tour-card:hover img {
    transform: scale(1.05);
}

.virtual-tour-card .tour-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.5) 35%, transparent 65%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.25rem 2.5rem;
}

.virtual-tour-card .tour-overlay h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--white);
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.9), 0 1px 3px rgba(0,0,0,0.8);
}

.virtual-tour-card .tour-overlay a.btn {
    align-self: flex-start;
    margin-top: 0.5rem;
    border-color: var(--white);
    color: var(--white);
}

.virtual-tour-card .tour-overlay a.btn:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* About Story */
.about-story {
    padding: 120px 0;
    background: var(--bg-white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-image {
    border-radius: 0;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.story-text h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 1.3;
}

.story-text p {
    font-size: 1rem;
    line-height: 2;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.3px;
}

/* Values */
.values-section {
    padding: 120px 0;
    background: var(--bg-white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
}

.value-card {
    background: transparent;
    padding: 3rem 2rem;
    border: none;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover {
    transform: translateY(-8px);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    opacity: 0.7;
    transition: opacity 0.4s ease;
}

.value-card:hover .value-icon {
    opacity: 1;
}

.value-icon svg {
    width: 40px;
    height: 40px;
    stroke-width: 1;
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 300;
    letter-spacing: 1px;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.9;
    font-weight: 300;
    letter-spacing: 0.3px;
}

/* Stats */
.stats-section {
    padding: 100px 0;
    background: var(--primary-color);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 300;
    margin-bottom: 0.8rem;
    letter-spacing: 2px;
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.8;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
}

/* Team */
.team-section {
    padding: 120px 0;
    background: var(--bg-cream);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
}

.team-member {
    text-align: center;
}

.member-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 2rem;
    border: 1px solid var(--border-color);
    transition: transform 0.4s ease;
}

.team-member:hover .member-image {
    transform: scale(1.05);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 300;
    letter-spacing: 1px;
}

.member-role {
    color: var(--accent-gold);
    font-weight: 300;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Contact */
.contact-section {
    padding: 120px 0;
    background: var(--bg-cream);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
}

.contact-form-container {
    background: var(--bg-white);
    padding: 4rem;
    border: none;
    box-shadow: none;
}

.contact-form-container h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-weight: 300;
    letter-spacing: 2px;
}

.contact-form .btn-primary {
    background: var(--bg-white);
    color: var(--primary-color);
    border: 1px solid #1a1a1a;
}

.contact-form .btn-primary:hover {
    background: #1a1a1a;
    color: var(--white);
    border-color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.reservation-form .btn-primary {
    background: var(--bg-white);
    color: var(--primary-color);
    border: 1px solid #1a1a1a;
}

.reservation-form .btn-primary:hover {
    background: #1a1a1a;
    color: var(--white);
    border-color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: var(--bg-white);
    padding: 3rem;
    border: none;
    box-shadow: none;
    margin-bottom: 2rem;
}

.contact-info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-weight: 300;
    letter-spacing: 1px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-text h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.contact-text p {
    color: var(--text-light);
    line-height: 1.6;
}

.map-container {
    background: var(--bg-white);
    border-radius: 0;
    overflow: hidden;
    border: none;
    box-shadow: none;
}

.map-placeholder {
    height: 300px;
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 100px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.footer-col h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: var(--white);
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* Footer'da logo (beyaz) */
.footer-logo {
    display: inline-block;
    margin-bottom: 2rem;
}
.footer-logo img {
    max-width: 140px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    transition: opacity 0.3s ease;
}
.footer-logo:hover img {
    opacity: 1;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    color: var(--accent-gold);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin: -0.5rem 0 1.35rem;
    font-weight: 500;
    line-height: 1.45;
    max-width: 22rem;
}

.footer-col h4 {
    margin-bottom: 2rem;
    color: var(--white);
    font-weight: 300;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 2;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.3px;
    line-height: 1.8;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 300;
}

.footer-col a:hover {
    color: var(--white);
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* İletişim sayfası - sağ tarafta "Ön rezervasyon yapmak için" ok */
.contact-scroll-hint {
    position: fixed;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease, opacity 0.3s ease;
}
.contact-scroll-hint:hover {
    color: var(--gold-light);
    opacity: 0.9;
}
.contact-scroll-hint-text {
    max-width: 100px;
    text-align: center;
    line-height: 1.3;
}
.contact-scroll-hint-arrow {
    font-size: 1.5rem;
    line-height: 1;
    animation: contact-arrow-bounce 2s ease-in-out infinite;
}
@keyframes contact-arrow-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}
@media (max-width: 768px) {
    .contact-scroll-hint {
        right: 0.75rem;
        font-size: 0.7rem;
    }
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.footer-bottom .footer-copyright {
    margin-bottom: 0.5rem;
}

.footer-credits {
    font-size: 0.75rem;
    opacity: 0.85;
    margin: 0;
}

.footer-credits .cromstudio-link {
    color: var(--accent-gold);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.footer-credits .cromstudio-link:hover {
    color: var(--gold-light);
}

.text-center {
    text-align: center;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-grid,
    .salons-grid,
    .services-grid,
    .values-grid,
    .team-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        padding: 3rem 0;
        border-top: 1px solid var(--border-light);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 3.5rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .about-grid,
    .salons-grid,
    .services-grid,
    .values-grid,
    .team-grid,
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .salon-detail-content,
    .story-content,
    .reservation-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .salon-gallery,
    .virtual-tour-grid {
        grid-template-columns: 1fr;
    }

    .salon-specs {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    section {
        padding: 80px 0;
    }

    .page-header {
        padding: 150px 0 80px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
        letter-spacing: 1px;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .logo h1 {
        font-size: 1.4rem;
        letter-spacing: 4px;
    }

    .btn {
        padding: 14px 35px;
        font-size: 0.7rem;
    }

    .salon-image {
        height: 350px;
    }

    .service-item {
        height: 300px;
    }

    .stat-number {
        font-size: 3.5rem;
    }
}

/* Salon Listing Page */
.salons-listing {
    padding: 120px 0;
    background: var(--bg-light);
}

.salons-grid-listing {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

.salon-card-large {
    background: var(--bg-white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease;
}

.salon-card-large:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.salon-card-large .salon-image {
    height: 500px;
    overflow: hidden;
}

.salon-card-large .salon-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.salon-card-large .salon-info {
    padding: 4rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center !important;
    background: #fffefb;
}

.salon-card-large .salon-info h2,
.salon-card-large .salon-info .salon-capacity,
.salon-card-large .salon-info .salon-desc {
    text-align: center !important;
    width: 100%;
    max-width: 22em;
    margin-left: auto;
    margin-right: auto;
}

.salon-card-large .salon-info h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
    color: #333333;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.salon-card-large .salon-capacity {
    color: #B69E66;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.salon-card-large .salon-desc {
    color: #888888;
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 1.25rem;
}

.salon-card-large .salon-quick-specs {
    margin-bottom: 2rem;
    justify-content: center;
}

.salon-quick-specs {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
    color: #B69E66;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.salon-quick-specs span:nth-child(even) {
    color: #B69E66;
    opacity: 0.9;
}

.salon-quick-specs span:not(:nth-child(even)) {
    color: #B69E66;
}

.salon-card-large .salon-info .btn {
    border: 1px solid #B69E66;
    color: #B69E66;
    background: transparent;
    margin-top: 0;
    padding: 14px 33px;
    width: fit-content;
}

.salon-card-large .salon-info .btn:hover {
    background: #B69E66;
    color: var(--white);
    border-color: #B69E66;
}

/* Salon Detail Page */
.salon-hero {
    padding: 0;
    margin: 0;
}

.salon-hero-image {
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.salon-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.salon-detail-page {
    padding: 120px 0;
    background: var(--bg-white);
}

.salon-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-light);
}

.salon-info-box h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.salon-tagline {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 300;
    letter-spacing: 0.5px;
}

.salon-specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 6rem;
}

.spec-card {
    text-align: center;
    padding: 3rem 2rem;
    border: 1px solid var(--border-light);
    background: var(--bg-cream);
    transition: all 0.3s ease;
}

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

.spec-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
}

.spec-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    text-transform: uppercase;
}

.spec-value {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.salon-content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
    margin-bottom: 6rem;
}

.salon-description h3,
.salon-features-list h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.salon-description p {
    font-size: 1rem;
    line-height: 2;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    font-weight: 300;
    letter-spacing: 0.3px;
}

.features-list li svg {
    color: var(--accent-gold);
    flex-shrink: 0;
}

.salon-gallery-section {
    margin-bottom: 6rem;
}

.salon-gallery-section h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 3rem;
    color: var(--text-dark);
    text-align: center;
}

.salon-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gallery-item {
    position: relative;
    height: 400px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border-light);
    transition: transform 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.gallery-item.hidden {
    display: none;
}

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

.salon-cta-section {
    background: var(--bg-cream);
    padding: 5rem;
    text-align: center;
}

.cta-content-box h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.cta-content-box p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.3px;
}

/* Past Weddings Slider */
.past-weddings {
    padding: 120px 0;
    background: var(--bg-cream);
}

.weddings-slider {
    position: relative;
    margin-top: 4rem;
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
    height: min(600px, 70vh);
    min-height: 380px;
    border: 1px solid var(--border-light);
    background: #0d0d0d;
}

.slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.95);
    filter: blur(5px);
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                filter 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform, filter;
    pointer-events: none;
}

.slider-slide.active {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
    z-index: 2;
    pointer-events: auto;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    display: block;
}

.slider-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    display: block;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 4rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
}

.slide-content h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.slide-content p {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.9;
}

@media (prefers-reduced-motion: reduce) {
    .slider-slide {
        transition: opacity 0.3s ease;
        transform: none;
        filter: none;
    }

    .animate-fade-in-up,
    .animate-fade-in-up-delay,
    .animate-fade-in-up-delay-2 {
        animation: none !important;
        transform: none;
        filter: none;
    }
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.slider-btn {
    background: transparent;
    border: 1px solid var(--border-light);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.slider-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--accent-gold);
    width: 30px;
    border-radius: 6px;
}

/* Gallery Page */
.gallery-page {
    padding: 80px 0 120px;
    background: var(--bg-white);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    height: 400px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border-light);
    transition: transform 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.gallery-item.hidden {
    display: none;
}

/* Responsive for Salon Pages */
@media (max-width: 968px) {
    .salon-card-large {
        grid-template-columns: 1fr;
    }
    
    .salon-card-large .salon-image {
        height: 400px;
    }
    
    .salon-detail-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    
    .salon-specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .salon-content-grid {
        grid-template-columns: 1fr;
    }
    
    .salon-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .salon-specs-grid {
        grid-template-columns: 1fr;
    }
    
    .salon-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .salon-hero-image {
        height: 400px;
    }
    
    .salon-info-box h2 {
        font-size: 2.5rem;
    }
    
    .slider-wrapper {
        height: 400px;
    }
    
    .slide-content {
        padding: 2rem;
    }
    
    .slide-content h3 {
        font-size: 1.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 300px;
    }
    
    .gallery-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.75rem;
    }
}

/* ===== WhatsApp floating button (site tasarımına uyumlu, 5–8 sn sonra giriş) ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 54px;
    height: 54px;
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    z-index: 999;
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.whatsapp-float.whatsapp-float-visible {
    opacity: 1;
    transform: scale(1);
}
.whatsapp-float:hover {
    transform: scale(1.06);
    box-shadow: 0 6px 24px rgba(201, 169, 97, 0.35);
    border-color: var(--gold-light);
    background: var(--primary-color);
    color: var(--white);
}
.whatsapp-float svg {
    flex-shrink: 0;
    /* WhatsApp ikonu beyaz; yeşil marka rengi yerine site paleti */
    filter: brightness(0) invert(1);
}
.whatsapp-float:hover svg {
    filter: brightness(0) invert(1);
}
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        border-width: 1.5px;
    }
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

/* ===== SSS (FAQ) accordion ===== */
.faq-section {
    padding: 3rem 0 5rem;
}
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--bg-white);
}
.faq-item summary {
    padding: 1.25rem 1.5rem;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: background 0.2s ease;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: '';
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23c9a961'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E") no-repeat center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.faq-item[open] summary::after {
    transform: rotate(180deg);
}
.faq-item summary:hover {
    background: var(--bg-light);
}
.faq-item .faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-light);
    line-height: 1.75;
    border-top: 1px solid var(--border-light);
}
.faq-item .faq-answer p {
    margin: 0;
    padding-top: 1rem;
}

/* ===== Müşteri yorumları (reviews) ===== */
.reviews-section {
    padding: 5rem 0;
    background: var(--bg-cream);
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}
.review-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid var(--border-light);
}
.review-card .review-stars {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}
.review-card .review-text {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}
.review-card .review-author {
    font-weight: 500;
    color: var(--primary-color);
    font-size: 0.9rem;
}
.review-card .review-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Galeri lightbox – tıklanınca fotoğraf büyür */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.9);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.gallery-lightbox.visible {
    opacity: 1;
    visibility: visible;
}
.gallery-lightbox-backdrop {
    position: absolute;
    inset: 0;
    cursor: pointer;
}
.gallery-lightbox-img {
    max-width: 95vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
    border-radius: 4px;
    box-shadow: 0 8px 48px rgba(0, 0, 0, 0.5);
}
.gallery-lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 2;
    width: 48px;
    height: 48px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
}
.gallery-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.25);
}
.gallery-lightbox-close:focus {
    outline: 2px solid var(--gold, #c9a962);
    outline-offset: 2px;
}

.gallery-lightbox-prev,
.gallery-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 52px;
    height: 52px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
}
.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
    background: rgba(255, 255, 255, 0.28);
}
.gallery-lightbox-prev { left: 1.5rem; }
.gallery-lightbox-next { right: 1.5rem; }
.gallery-lightbox-prev:focus,
.gallery-lightbox-next:focus {
    outline: 2px solid var(--gold, #c9a962);
    outline-offset: 2px;
}

