/* RESET */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Old Standard TT', serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.5;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo, .btn-reserve,
.hero-title, .hero-subtitle, .section-title,
.footer-logo, .social-name {
    font-family: 'Anton', sans-serif;
    letter-spacing: 0.05em;
}

p, span, a:not(.logo), .hero-desc, .section-subtitle, .social-link,
.hero-location {
    font-family: 'Old Standard TT', serif;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.loader-content {
    text-align: center;
}

.loader-title {
    font-size: 24px;
    letter-spacing: 0.25em;
    opacity: 0;
    text-transform: uppercase;
    font-family: 'Anton', sans-serif;
}

.loader-subtitle {
    font-size: 12px;
    letter-spacing: 0.4em;
    opacity: 0;
    color: #888888;
    margin-top: 10px;
    text-transform: uppercase;
}

#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 20px;
    transition: all 0.4s ease;
}

#navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 20px;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.logo {
    font-size: 24px;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: 'Anton', sans-serif;
}

.logo:hover {
    opacity: 0.8;
    letter-spacing: 0.3em;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 25px;
    list-style: none;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links a:not(.btn-reserve) {
    font-size: 12px;
    color: #999999;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Anton', sans-serif;
}

.nav-links a:not(.btn-reserve)::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.nav-links a:not(.btn-reserve):hover {
    color: #ffffff;
}

.nav-links a:not(.btn-reserve):hover::after {
    width: 100%;
}

.btn-reserve {
    background: #ffffff !important;
    color: #000000 !important;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 12px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
    transition: all 0.3s ease;
    font-family: 'Anton', sans-serif;
    display: inline-block;
}

.btn-reserve:hover {
    background: #e0e0e0 !important;
    transform: scale(1.05);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
    position: relative;
    z-index: 1;
    background: radial-gradient(ellipse at center, #0f0f0f 0%, #000000 70%);
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    align-items: center;
    width: 100%;
}

.hero-content {
    text-align: left;
}

.hero-title {
    font-size: clamp(32px, 8vw, 72px);
    letter-spacing: 0.02em;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #aaaaaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Anton', sans-serif;
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 28px);
    color: #bbbbbb;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-family: 'Anton', sans-serif;
}

.hero-location {
    font-size: clamp(14px, 2vw, 18px);
    color: #cccccc;
    letter-spacing: 0.1em;
    margin-bottom: 25px;
    font-family: 'Old Standard TT', serif;
}

.hero-desc {
    font-size: clamp(16px, 2vw, 18px);
    color: #888888;
    line-height: 1.7;
    margin-bottom: 40px;
    font-family: 'Old Standard TT', serif;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    object-fit: cover;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid #444444;
    font-family: 'Anton', sans-serif;
}

.btn-secondary:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.middle-scroll-indicator {
    position: fixed;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    z-index: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.middle-scroll-indicator .scroll-text {
    font-size: 12px;
    color: #ffffff;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    transform: rotate(180deg);
}

.middle-scroll-indicator .scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, #ffffff 0%, transparent 100%);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

.section {
    padding: 120px 40px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    background: #000000;
    scroll-margin-top: 140px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: clamp(32px, 5vw, 56px);
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    font-family: 'Anton', sans-serif;
}

.section-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: #666666;
    font-family: 'Old Standard TT', serif;
}

.gallery-section {
    background: #000000;
    position: relative;
    z-index: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    background: #ffffff;
    border: 2px solid #ffffff;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 1 !important;
    filter: none !important;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-item figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 80%);
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.4s ease;
    text-align: center;
    color: #ffffff;
    z-index: 10;
}

.gallery-item:hover figcaption {
    opacity: 1;
}

.gallery-item.large {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .gallery-item.large {
        grid-column: span 1;
    }
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 12px;
}

.lightbox-caption {
    margin: 20px auto;
    text-align: center;
    color: #fff;
    font-size: 16px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
}

.lightbox-close:hover {
    color: #ffffff;
    transform: scale(1.2) rotate(90deg);
}

.infos-section {
    background: #000000;
    position: relative;
    z-index: 1;
}

.infos-wrapper {
    display: flex;
    justify-content: center;
}

.info-item {
    position: relative;
    width: 100%;
    max-width: 420px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #ffffff;
    border: 2px solid #ffffff;
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.05);
}

.info-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.info-item:hover img {
    transform: scale(1.08);
}

@media (max-width: 900px) {
    .info-item {
        max-width: 320px;
    }
}

.fidelite-section {
    background: #000000;
    position: relative;
    z-index: 1;
}

.fidelite-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.fidelite-card {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1.586 / 1;
    perspective: 1600px;
    cursor: pointer;
}

.fidelite-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.05);
}

.fidelite-card:hover .fidelite-card-inner {
    box-shadow: 0 25px 70px rgba(255, 255, 255, 0.1);
}

.fidelite-card.flipped .fidelite-card-inner {
    transform: rotateY(180deg);
}

.fidelite-face {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #ffffff;
}

.fidelite-face img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fidelite-back {
    transform: rotateY(180deg);
}

.fidelite-hint {
    margin-top: 24px;
    font-size: 12px;
    color: #666666;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-family: 'Old Standard TT', serif;
}

@media (max-width: 900px) {
    .fidelite-card {
        max-width: 320px;
    }
}

.contact-section {
    background: #0a0a0a !important;
    position: relative;
    z-index: 1;
    padding: 100px 40px;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 2px solid #222222;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.contact-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    object-fit: cover;
}

.social-center {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    z-index: 10;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 60px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #1a1a1a;
    border: 2px solid #555555 !important;
    min-width: 380px;
    max-width: 550px;
    width: 100%;
    justify-content: center;
    opacity: 1;
}

.social-link:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: #ffffff !important;
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.15);
}

.social-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    transition: color 0.3s ease;
}

.social-icon svg {
    width: 28px;
    height: 28px;
    display: block;
}

.instagram:hover .social-icon {
    color: #E1306C;
}

.facebook:hover .social-icon {
    color: #1877F2;
}

.tiktok:hover .social-icon {
    color: #FE2C55;
}

.social-name {
    font-size: 20px;
    color: #ffffff !important;
    letter-spacing: 0.1em;
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
}

.instagram:hover {
    border-color: #E1306C !important;
    box-shadow: 0 15px 50px rgba(225, 48, 108, 0.35) !important;
}

.facebook:hover {
    border-color: #1877F2 !important;
    box-shadow: 0 15px 50px rgba(24, 119, 242, 0.35) !important;
}

.tiktok:hover {
    border-color: #FE2C55 !important;
    box-shadow: 0 15px 50px rgba(254, 44, 85, 0.35) !important;
}

footer {
    background: #000000;
    padding: 40px 40px;
    border-top: 1px solid #1a1a1a;
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-logo {
    font-size: 24px;
    letter-spacing: 0.1em;
    font-family: 'Anton', sans-serif;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    transition: letter-spacing 0.3s ease, opacity 0.3s ease;
    width: fit-content;
}

.footer-logo:hover {
    opacity: 0.8;
    letter-spacing: 0.2em;
}

.footer-brand p {
    font-size: 13px;
    color: #666666;
}

.footer-social {
    display: flex;
    gap: 30px;
}

.footer-social a {
    color: #888888;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #ffffff;
}

@media (max-width: 900px) {
    .hero-layout {
        grid-template-columns: 1fr;
    }
    .hero-content {
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.98);
        z-index: 1000;
        padding: 100px 40px;
        gap: 30px;
    }
    .nav-links.active {
        display: flex;
    }
    .mobile-menu-btn {
        display: flex;
    }
    .nav-links li {
        text-align: center;
        width: 100%;
    }
    .nav-links a {
        font-size: 18px !important;
        font-family: 'Anton', sans-serif !important;
    }
    .middle-scroll-indicator {
        display: none;
    }
    .hero {
        padding: 0 20px;
    }
    .section {
        padding: 80px 20px;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .social-link {
        min-width: 280px;
        padding: 22px 40px;
    }
    .social-icon {
        font-size: 28px;
        width: 45px;
        height: 45px;
    }
    .social-name {
        font-size: 16px;
    }
}