/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 17 2026 | 13:21:12 */
:root {
    --gold: #c5a368;
    --gold-light: #e6d1ad;
    --gold-dark: #9e7943;
    --gold-shine: #faf8f5;
    --rose: #c38d75;
    --rose-light: #f2eee7;
    --cream: #faf8f5;
    --cream-dark: #efede8;
    --white: #ffffff;
    --dark: #1e2022;
    --dark-light: #121315;
    --text: #2e3135;
    --text-light: #6c7075;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
    line-height: 1.7;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 60px;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled .nav-logo,
.navbar.scrolled .nav-links a {
    color: var(--dark);
}

/* Always scrolled style override for subpages */
.navbar.navbar-always {
    background: rgba(250, 248, 245, 0.98) !important;
    padding: 15px 60px !important;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08) !important;
    backdrop-filter: blur(20px) !important;
}

.navbar.navbar-always .nav-logo,
.navbar.navbar-always .nav-links a {
    color: var(--dark) !important;
}

.navbar.navbar-always .mobile-toggle span {
    background: var(--dark) !important;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 3px;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-logo img {
    height: 300px;
    width: auto;
    display: block;
    margin: -110px -40px -140px;
    transition: var(--transition);
}

.navbar.scrolled .nav-logo img,
.navbar.navbar-always .nav-logo img {
    height: 240px;
    margin: -88px -30px -112px;
}

.nav-logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    margin-top: 10px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links li {
    position: relative;
}

.nav-dropdown {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: var(--white);
    border: 1px solid rgba(197, 163, 104, 0.15);
    list-style: none;
    padding: 12px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    margin-top: 10px;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    width: 100%;
    padding: 0 !important;
}

.dropdown-menu li a {
    color: var(--text) !important;
    padding: 10px 24px;
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
}

.dropdown-menu li a::after {
    display: none;
}

.dropdown-menu li a:hover {
    background: var(--cream-dark);
    color: var(--gold) !important;
}

.navbar.scrolled .dropdown-menu {
    background: var(--white);
    border-color: rgba(197, 163, 104, 0.15);
}

.nav-cta {
    padding: 12px 30px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
    margin-top: 10px;
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--white);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.navbar.scrolled .mobile-toggle span {
    background: var(--dark);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, rgba(18, 20, 22, 0.85) 0%, rgba(30, 33, 36, 0.65) 50%, rgba(18, 20, 22, 0.9) 100%),
        url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
    transform-origin: center;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.06);
    }
}

/* Shimmer overlay */
.hero-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            transparent 20%,
            rgba(197, 163, 104, 0.03) 40%,
            rgba(197, 163, 104, 0.06) 50%,
            rgba(197, 163, 104, 0.03) 60%,
            transparent 80%);
    background-size: 200% 200%;
    animation: shimmerMove 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmerMove {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Sunbeam Motes (Cinema dust particles) */
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.sunbeam-mote {
    position: absolute;
    background: var(--gold-light);
    border-radius: 50%;
    filter: blur(1.5px);
    opacity: 0;
    pointer-events: none;
    animation: sunbeamDrift linear infinite;
}

@keyframes sunbeamDrift {
    0% {
        transform: translate(0, 105vh) scale(0.4);
        opacity: 0;
    }

    10% {
        opacity: var(--max-opacity, 0.35);
    }

    90% {
        opacity: var(--max-opacity, 0.35);
    }

    100% {
        transform: translate(var(--drift-x, 80px), -10vh) scale(1.1);
        opacity: 0;
    }
}

.hero-hearts {
    display: none;
}

/* Decorative corner lines */
.hero-corner {
    position: absolute;
    width: 60px;
    height: 60px;
    border-color: rgba(197, 163, 104, 0.22);
    border-style: solid;
    pointer-events: none;
    z-index: 2;
}

.hero-corner.tl {
    top: 40px;
    left: 40px;
    border-width: 1px 0 0 1px;
}

.hero-corner.tr {
    top: 40px;
    right: 40px;
    border-width: 1px 1px 0 0;
}

.hero-corner.bl {
    bottom: 80px;
    left: 40px;
    border-width: 0 0 1px 1px;
}

.hero-corner.br {
    bottom: 80px;
    right: 40px;
    border-width: 0 1px 1px 0;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 20px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 24px;
    opacity: 0;
    animation: slideUp 1s ease 0.4s forwards;
}

.hero-eyebrow-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold-light);
    font-style: italic;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6.5vw, 5.5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 28px;
    opacity: 0;
    animation: slideUp 1s ease 0.7s forwards;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-title span {
    font-style: italic;
    color: var(--gold);
    display: inline-block;
    position: relative;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold);
    opacity: 0.45;
}

.hero-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 45px;
    opacity: 0;
    animation: slideUp 1s ease 1s forwards;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: slideUp 1s ease 1.3s forwards;
}

.btn-primary {
    padding: 16px 40px;
    background: var(--gold);
    color: var(--white);
    border: 1px solid var(--gold);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0px;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--dark);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.btn-primary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-primary:hover {
    color: var(--white);
    border-color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 56, 46, 0.15);
}

.btn-outline {
    padding: 16px 40px;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    border-radius: 0px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--white);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.btn-outline:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.btn-outline:hover {
    color: var(--dark);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-scroll-label {
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
}

.hero-scroll-mouse {
    width: 22px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 11px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.hero-scroll-mouse::before {
    content: '';
    width: 3px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(10px);
        opacity: 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);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== WAVE DIVIDER ===== */
.wave-divider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-bottom: -2px;
}

.wave-divider svg {
    width: 100%;
    display: block;
}

/* ===== ORNAMENT DIVIDER ===== */
.ornament-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 0 auto 20px;
}

.ornament-divider .orn-line {
    flex: 1;
    max-width: 80px;
    height: 1px;
    background: var(--gold);
    opacity: 0.35;
}

.ornament-divider .orn-line.right {
    background: var(--gold);
    opacity: 0.35;
}

.ornament-divider i {
    color: var(--gold);
    font-size: 0.7rem;
}

/* ===== SECTIONS ===== */
.section {
    padding: 120px 60px;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    font-style: italic;
    font-weight: 400;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--dark);
    font-weight: 400;
    margin-bottom: 20px;
}

.section-title span {
    font-style: italic;
    color: var(--gold);
}

.section-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 0 auto;
}

.section-line::before,
.section-line::after {
    content: '';
    width: 60px;
    height: 1px;
    background: var(--gold);
    opacity: 0.35;
}

.section-line-dot {
    font-size: 0.55rem;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-line-dot::before {
    content: '◆';
    letter-spacing: 0;
}

.section-line-dot::after {
    display: none;
}

/* ===== ABOUT ===== */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.about-images {
    position: relative;
}

.about-img-main {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 42%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border: 8px solid var(--white);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-img-accent {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 100px;
    height: 100px;
    border: 1px solid var(--gold);
    opacity: 0.35;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 25px;
    font-weight: 400;
}

.about-text p {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.9;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(201, 169, 110, 0.2);
}

.stat-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem !important;
    font-weight: 400;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item p {
    font-size: 0.85rem;
    color: var(--text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 5px;
}

/* ===== SERVICES ===== */
.services {
    background: var(--cream-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.services-grid-centered {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.services-grid-centered .service-card {
    flex: 0 1 calc(33.333% - 17px);
}

@media (max-width: 1024px) {
    .services-grid-centered .service-card {
        flex: 0 1 calc(50% - 13px);
    }
}

@media (max-width: 768px) {
    .services-grid-centered .service-card {
        flex: 0 1 100%;
    }
}

.service-card {
    background: var(--white);
    padding: 50px 35px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(37, 56, 46, 0.07);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: center;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(197, 163, 104, 0.3);
    box-shadow: 0 20px 40px rgba(37, 56, 46, 0.05);
}

.service-icon-wrap {
    width: 72px;
    height: 72px;
    border: 1px solid rgba(197, 163, 104, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon-wrap {
    background: rgba(197, 163, 104, 0.06);
    border-color: var(--gold);
    transform: rotate(5deg) scale(1.05);
}

.service-icon {
    font-size: 1.8rem;
    color: var(--gold);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 14px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.9;
    position: relative;
    z-index: 1;
}

.service-link {
    display: inline-block;
    margin-top: 15px;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    color: var(--gold);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
    transform: translateX(-50%);
}

.service-card:hover .service-link::after {
    width: 80%;
}

/* ===== VENUES ===== */
.venues {
    background: var(--cream-dark);
    color: var(--text);
    position: relative;
    overflow: hidden;
}

.venues::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: var(--gold);
    opacity: 0.02;
    transform: skewX(-15deg) translateX(20%);
    pointer-events: none;
}

.venues .section-title {
    color: var(--dark);
}

.venues-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.venue-row {
    display: flex;
    align-items: center;
    gap: 70px;
    margin-bottom: 110px;
}

.venue-row:last-child {
    margin-bottom: 0;
}

.venue-row:nth-child(even) {
    flex-direction: row-reverse;
}

.venue-video-side {
    flex: 1.25;
}

.venue-text-side {
    flex: 0.75;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.06);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.venue-tag {
    display: inline-block;
    padding: 5px 15px;
    background: var(--gold);
    color: var(--white);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.venue-text-side h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 400;
}

.venue-text-side h3 span {
    color: var(--gold);
}

.venue-text-side p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 30px;
}

.venue-capacity {
    display: flex;
    gap: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(197, 163, 104, 0.2);
}

.venue-capacity span {
    font-size: 0.85rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.venue-capacity i {
    color: var(--gold);
}

@media (max-width: 1024px) {
    .venue-row {
        gap: 40px;
        margin-bottom: 80px;
    }

    .venue-text-side h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 991px) {

    .venue-row,
    .venue-row:nth-child(even) {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 70px;
    }

    .venue-video-side,
    .venue-text-side {
        width: 100%;
        flex: none;
    }

    .venue-capacity {
        flex-wrap: wrap;
        gap: 20px;
    }
}

/* ===== GALLERY ===== */
.gallery {
    background: var(--white);
    padding: 0;
}

/* Gallery Tabs */
.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 0 40px 50px;
}

.gallery-tab {
    padding: 12px 32px;
    border: 2px solid rgba(183, 143, 62, 0.3);
    background: transparent;
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    letter-spacing: 0.5px;
}

.gallery-tab:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(183, 143, 62, 0.06);
}

.gallery-tab.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(183, 143, 62, 0.35);
}

/* Gallery Grid */
.gallery-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Gallery Card */
.gallery-card {
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 1;
    transform: translateY(0) scale(1);
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.gallery-card.hidden {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.gallery-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.gallery-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-card:hover .gallery-card-img img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0) 40%, rgba(26, 26, 26, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 1.8rem;
    transform: scale(0.5);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.gallery-card:hover .gallery-overlay i {
    transform: scale(1);
}

/* Gallery Groups */
.gallery-group {
    padding: 0 60px 60px;
    max-width: 1400px;
    margin: 0 auto;
    transition: all 0.4s ease;
}

.gallery-group.hidden {
    display: none;
}

.gallery-group-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 28px;
    padding-bottom: 14px;
    border-bottom: 2px solid rgba(183, 143, 62, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
}

.gallery-group-title i {
    color: var(--gold);
    font-size: 0.9rem;
}

/* Lightbox Nav */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
}

.lightbox-nav:hover {
    background: rgba(183, 143, 62, 0.8);
    border-color: var(--gold);
}

.lightbox-prev {
    left: 24px;
}

.lightbox-next {
    right: 24px;
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    z-index: 10002;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--cream);
    padding: 120px 60px;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '\201C';
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Playfair Display', serif;
    font-size: 20rem;
    color: rgba(201, 169, 110, 0.05);
    line-height: 1;
    pointer-events: none;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.testimonial-item {
    display: none;
    animation: fadeIn 0.8s ease;
}

.testimonial-item.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 30px;
}

.testimonial-stars i {
    color: var(--gold);
    font-size: 0.9rem;
}

.testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    color: var(--dark);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 300;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

.testimonial-author {
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.testimonial-event {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-top: 6px;
    font-style: italic;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(201, 169, 110, 0.25);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(201, 169, 110, 0.3);
}

.dot.active {
    background: var(--gold);
    transform: scale(1.4);
    border-color: var(--gold);
}

/* ===== CONTACT ===== */
.contact {
    background: var(--dark);
    color: var(--white);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1511795409834-ef04bbd61622?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
    opacity: 0.15;
}

.contact .section-title {
    color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 35px;
    font-weight: 600;
    color: var(--white);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 1.3rem;
    color: var(--gold);
    margin-top: 4px;
    width: 30px;
    transition: var(--transition);
}

.contact-item:hover i {
    transform: scale(1.15);
    color: var(--white);
}

.contact-item h4 {
    font-size: 0.95rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-item p,
.contact-item p a {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95) !important;
    line-height: 1.6;
    transition: var(--transition);
}

.contact-item p a:hover {
    color: var(--gold) !important;
}

.contact-form {
    background: rgba(255, 255, 255, 0.03);
    padding: 50px;
    border: 1px solid rgba(201, 169, 110, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-bottom-color: var(--gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select option {
    background: var(--dark);
    color: var(--white);
}

.contact-form .btn-primary {
    width: 100%;
    margin-top: 10px;
}

.contact-map {
    max-width: 1400px;
    margin: 80px auto 0;
    position: relative;
    z-index: 1;
}

.map-container {
    position: relative;
    padding-bottom: 30%;
    height: 0;
    overflow: hidden;
    border: 1px solid rgba(197, 163, 104, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .map-container {
        padding-bottom: 60%;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-light);
    color: var(--white);
    padding: 80px 60px 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-brand h3 span {
    color: var(--gold);
}

.footer-logo {
    display: inline-block;
    transition: var(--transition);
    margin: -50px -40px;
}

.footer-logo img {
    height: 200px;
    width: auto;
    display: block;
}

.footer-logo:hover {
    opacity: 0.9;
}

.footer-brand p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.footer-column h4 {
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 60px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a:hover {
    color: var(--white) !important;
    text-shadow: 0 0 10px rgba(197, 163, 104, 0.4);
}

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 85%;
    object-fit: contain;
    border-radius: 8px;
    transition: opacity 0.15s ease;
    z-index: 10001;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

/* ===== REVEAL ANIMATIONS ===== */
/* Elementler JS yüklenene kadar görünür kalır (WordPress güvenli) */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
    transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

/* JS yüklendiğinde body'e animations-ready eklenir, o zaman gizleme aktif olur */
.animations-ready .reveal {
    opacity: 0;
    transform: translateY(40px);
}

.animations-ready .reveal-left {
    opacity: 0;
    transform: translateX(-40px);
}

.animations-ready .reveal-right {
    opacity: 0;
    transform: translateX(40px);
}

.animations-ready .reveal-scale {
    opacity: 0;
    transform: scale(0.9);
}

.animations-ready .reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.animations-ready .reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.animations-ready .reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.animations-ready .reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delay helpers */
.delay-1 {
    transition-delay: 0.1s !important;
}

.delay-2 {
    transition-delay: 0.2s !important;
}

.delay-3 {
    transition-delay: 0.3s !important;
}

.delay-4 {
    transition-delay: 0.4s !important;
}

.delay-5 {
    transition-delay: 0.5s !important;
}


/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 35px;
    right: 35px;
    width: 46px;
    height: 46px;
    background: var(--gold);
    border: 1px solid var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    z-index: 900;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    border-radius: 0px;
    box-shadow: 0 8px 24px rgba(37, 56, 46, 0.15);
}

.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--dark);
    border-color: var(--dark);
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(37, 56, 46, 0.25);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* ===== MENU CARDS ===== */
.menu-card {
    text-align: center;
    padding: 40px 20px;
    border: 1px solid rgba(197, 163, 104, 0.2);
    background: var(--cream);
}

.menu-card-hover {
    transition: var(--transition);
}

.menu-card-hover:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(37, 56, 46, 0.05);
    border-color: rgba(197, 163, 104, 0.4) !important;
}

.menu-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(197, 163, 104, 0.08);
    border: 1px solid rgba(197, 163, 104, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.menu-notice {
    margin-top: 35px;
    text-align: center;
    padding: 28px 40px;
    background: var(--cream-dark);
    border-left: 3px solid var(--gold);
    box-shadow: 0 10px 30px rgba(37, 56, 46, 0.04);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: var(--dark);
    z-index: 1005;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    padding: 80px 20px 40px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.4s ease, visibility 0.4s;
}

.mobile-menu.active {
    right: 0;
    opacity: 1;
    visibility: visible;
}

.mobile-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    transition: var(--transition);
}

.mobile-menu a:hover {
    color: var(--gold);
}

.mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1500px) {
    .navbar {
        padding: 20px 40px;
    }

    .navbar.scrolled,
    .navbar.navbar-always {
        padding: 12px 40px !important;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-logo {
        font-size: 1.5rem;
    }

    .nav-logo img {
        height: 250px;
        margin: -93px -30px -117px;
    }

    .nav-cta {
        padding: 10px 20px;
    }
}

@media (max-width: 1300px) {
    .navbar {
        padding: 12px 20px;
    }

    .navbar.scrolled,
    .navbar.navbar-always {
        padding: 10px 20px !important;
    }

    .nav-logo {
        font-size: 1.25rem;
        letter-spacing: 1.5px;
    }

    .nav-logo img {
        height: 200px;
        margin: -75px -20px -95px;
    }

    .nav-cta {
        margin-left: auto;
        margin-right: 15px;
        padding: 8px 12px;
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }
}

@media (max-width: 1024px) {

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .gallery-group {
        padding: 0 40px 50px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .about-img-secondary {
        display: none;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .gallery-grid-new {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .gallery-group {
        padding: 0 20px 40px;
    }

    .gallery-group-title {
        font-size: 1.3rem;
    }

    .gallery-tabs {
        flex-wrap: wrap;
        padding: 0 20px 30px;
        gap: 8px;
    }

    .gallery-tab {
        padding: 10px 22px;
        font-size: 0.8rem;
    }

    .lightbox-nav {
        width: 46px;
        height: 46px;
        font-size: 1rem;
    }

    .lightbox-prev {
        left: 8px;
    }

    .lightbox-next {
        right: 8px;
    }

    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .contact-form {
        padding: 30px;
    }
}

/* ===== WORDPRESS & GENERATEPRESS THEME OVERRIDES ===== */
/* Hides theme's native header, footer, topbar, navigation, and page title to allow our custom template to act as a standalone landing page */
.site-header,
.main-navigation,
#site-navigation,
.site-footer,
.site-info,
.entry-header,
.entry-title,
.page-header,
.top-bar,
.footer-widgets {
    display: none !important;
}

#page,
#content,
.site-content,
.site-main,
.separate-containers .site-main,
.container,
.grid-container {
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}

.no-sidebar .content-area {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Ensure the HTML block takes up the full width/height correctly */
.entry-content {
    padding: 0 !important;
    margin: 0 !important;
}

/* ========== FLOATING TELEFON & WHATSAPP BUTONLARI ========== */
.floating-contact{position:fixed;bottom:100px;right:28px;display:flex;flex-direction:column;gap:14px;z-index:9999;font-family:inherit}
.floating-contact a{display:flex;align-items:center;justify-content:center;width:58px;height:58px;border-radius:50%;color:#fff;text-decoration:none;font-size:24px;box-shadow:0 4px 20px rgba(0,0,0,.25);transition:transform .3s ease,box-shadow .3s ease;position:relative}
.floating-contact a:hover{transform:scale(1.12);box-shadow:0 6px 28px rgba(0,0,0,.35)}
.floating-contact a::before{content:attr(data-tooltip);position:absolute;right:72px;background:rgba(30,30,30,.92);color:#fff;padding:7px 14px;border-radius:8px;font-size:13px;font-weight:500;white-space:nowrap;opacity:0;pointer-events:none;transform:translateX(8px);transition:opacity .3s ease,transform .3s ease;letter-spacing:.2px}
.floating-contact a:hover::before{opacity:1;transform:translateX(0)}
.floating-contact .btn-call{background:linear-gradient(135deg,#c9a44a,#b8860b)}
.floating-contact .btn-call:hover{background:linear-gradient(135deg,#d4af37,#c9a44a)}
.floating-contact .btn-whatsapp{background:linear-gradient(135deg,#25d366,#128c7e)}
.floating-contact .btn-whatsapp:hover{background:linear-gradient(135deg,#2be573,#25d366)}
@keyframes floatIn{from{opacity:0;transform:translateY(30px) scale(.8)}to{opacity:1;transform:translateY(0) scale(1)}}
@keyframes gentle-bob{0%,100%{transform:translateY(0)}50%{transform:translateY(-6px)}}
@keyframes phone-ring{0%,100%{transform:rotate(0)}10%{transform:rotate(14deg)}20%{transform:rotate(-14deg)}30%{transform:rotate(10deg)}40%{transform:rotate(-10deg)}50%{transform:rotate(0)}}
@keyframes pulse-ring{0%{box-shadow:0 0 0 0 rgba(37,211,102,.5)}70%{box-shadow:0 0 0 14px rgba(37,211,102,0)}100%{box-shadow:0 0 0 0 rgba(37,211,102,0)}}
.floating-contact a:nth-child(1){animation:floatIn .5s ease-out .3s both,gentle-bob 3s ease-in-out 1.5s infinite}
.floating-contact a:nth-child(2){animation:floatIn .5s ease-out .5s both,gentle-bob 3s ease-in-out 2s infinite}
.floating-contact .btn-whatsapp{animation:floatIn .5s ease-out .3s both,gentle-bob 3s ease-in-out 1.5s infinite,pulse-ring 2.5s infinite 1.5s}
.floating-contact .btn-call i{animation:phone-ring 3s ease-in-out 2s infinite}
@media(max-width:768px){.floating-contact{bottom:90px;right:18px;gap:12px}.floating-contact a{width:52px;height:52px;font-size:22px}.floating-contact a::before{display:none}}

/* ========== INDEX HEADER LOGO SWAP ========== */
.nav-logo {
    position: relative;
}
.nav-logo .logo-dark, .nav-logo .logo-light {
    transition: opacity 0.4s ease;
}
.nav-logo .logo-light {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
.navbar.scrolled .nav-logo .logo-dark {
    opacity: 0;
}
.navbar.scrolled .nav-logo .logo-light {
    opacity: 1;
}
/* ============================================== */
