:root {
    --gold: #c5a059;
    --bg: #050505;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 220px;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg);
    color: #e6e6e6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-size: 16px;
    font-weight: 500;
}

#particleCanvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Fonts */
.font-luxury {
    font-family: 'Cinzel', serif;
}

/* Gold text */
.gold-text {
    background: linear-gradient(to right, #fbf5e9, #c5a059, #8c6239);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===========================
   MAIN CONTAINER
=========================== */
.main {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 200px 20px 80px;
    box-sizing: border-box; 
}

.section,
.promo,
.glass-card {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    box-sizing: border-box; 
}

/* ===========================
   HEADER (FIXED TOP)
=========================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 50;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px); 
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-sizing: border-box;
}

/* ===========================
   TOP BAR
=========================== */
.header-top {
    width: 100%;
    padding: 18px 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px; 
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LEFT SIDE */
.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0; 
}

.nav-logo {
    width: 48px;
    height: 48px;
    flex-shrink: 0; 
}

.brand-name {
    font-size: 1rem;
    letter-spacing: 0.22em;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* RIGHT SIDE */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0; 
}

/* PRE‑BOOKING BUTTON */
.btn-prebook {
    background: #f2e7c9;
    color: #000;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 0 14px rgba(242,231,201,0.35);
    white-space: nowrap;
}

.btn-prebook:hover {
    background: #fff3d9;
    box-shadow: 0 0 22px rgba(242,231,201,0.55);
    transform: translateY(-2px);
}

/* LANGUAGE BUTTON */
.lang-btn {
    background: transparent;
    border: 1px solid rgba(242,231,201,0.6);
    color: #f2e7c9;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
    white-space: nowrap;
}

.lang-btn:hover {
    background: #f2e7c9;
    color: #000;
}

/* ===========================
   NAV BAR
=========================== */
.main-nav {
    width: 100%;
    padding: 12px 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    gap: 48px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px); /* ✅ Safari */
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.main-nav::-webkit-scrollbar {
    display: none;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #f2f2f2;
    text-decoration: none;
    transition: 0.25s ease;
    text-shadow: 0 0 8px rgba(0,0,0,0.9);
    flex-shrink: 0;
}

.nav-link:hover {
    color: var(--gold);
    text-shadow: 0 0 12px rgba(197,160,89,0.6);
}

/* ===========================
   HERO
=========================== */
.hero {
    text-align: center;
    margin-bottom: 120px;
}

.crown-container {
    position: relative;
    width: 260px;
    height: 180px;
    margin: 0 auto 24px;
    perspective: 1000px;
}

.crown-core {
    width: 100%;
    height: 100%;
    background: url('Untitled.png') no-repeat center/contain;
    animation: infiniteRotation 15s linear infinite;
}

@keyframes infiniteRotation {
    from { transform: rotateY(0deg); }
    to   { transform: rotateY(360deg); }
}

.hero-title {
    font-size: 26px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-bottom: 10px;
    margin-top: 50px;
    opacity: 0;
    transform: translateZ(-120px) scale(0.6) translateY(40px);
    transform-origin: center;
    animation: sloganPop3D 1.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes sloganPop3D {
    0% {
        opacity: 0;
        transform: translateZ(-120px) scale(0.6) translateY(-200px);
        filter: blur(6px);
    }
    50% {
        opacity: 1;
        transform: translateZ(0) scale(1.08) translateY(0);
        filter: blur(0);
    }
    70%  { transform: scale(0.99); }
    85%  { transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}

.hero-slogan {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 22px;
    background: linear-gradient(90deg, #dcb766, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 14px;
    letter-spacing: 0.05em;
}
.hero-location {
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    opacity: 0.9;
}

/* ===========================
   SECTIONS
=========================== */
.section {
    margin-bottom: 120px;
    text-align: center;
}

.section-title {
    font-size: 1.6rem;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.section-text {
    max-width: 700px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
}

/* About icons */
.about-icons {
    margin-top: 32px;
    display: flex;
    justify-content: center;
    gap: 32px;
    opacity: 0.4;
}

.about-icons i {
    font-size: 1.3rem;
}

/* Glass card */
.glass-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px); /* ✅ Safari */
    border: 1px solid rgba(197, 160, 89, 0.18);
    border-radius: 4px;
    padding: 40px 32px;
}

/* ===========================
   PROMO
=========================== */
.promo {
    text-align: center;
}

.promo-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 28px;
}

.promo-price-row {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 14px;
    margin-bottom: 32px;
    flex-wrap: wrap; 
}

.promo-price {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
}

.promo-price-details {
    text-align: left;
    padding-bottom: 6px;
}

.old-price-number {
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    text-decoration-color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    opacity: 0.9;
}

.promo-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 0.16em;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    padding: 26px 0;
    margin-bottom: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    opacity: 0.8;
}

.promo-note {
    font-size: 1rem;
    opacity: 0.85;
    font-style: italic;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.promo-link {
    display: inline-block;
    margin-top: 6px;
    font-size: 15px;
    font-weight: 300;
    color: #f2cf82;
    text-decoration: none;
    text-underline-offset: 3px;
    transition: 0.3s ease;
}

.promo-link:hover {
    color: #f0ac1b;
    text-shadow: 0 0 6px rgb(245, 233, 233);
}

/* ===========================
   FORM
=========================== */
.form {
    max-width: 380px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    box-sizing: border-box;
}

.sub-note {
    margin-top: 6px;
    font-size: 16px;
    font-weight: 300;
    color: #e8d9b8;
    text-align: center;
    opacity: 0.9;
}

.form-row {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.form-row label {
    width: 120px;
    min-width: 120px;
    font-size: 12px;
    font-weight: 400;
    color: #e8d9b8;
    opacity: 0.9;
    text-align: right;
}

.form-row input,
.form-row select {
    flex: 1;
    min-width: 0; 
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(197, 160, 89, 0.5);
    padding: 10px 4px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    outline: none;
    box-sizing: border-box; 
    -webkit-appearance: none; 
    border-radius: 0; 
     appearance: none;         
    border-radius: 0
}

input::placeholder {
    color: rgba(230, 230, 230, 0.5);
}

.submit-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.btn-gold {
    background: var(--gold);
    color: #000;
    font-weight: 700;
    padding: 12px 28px;
    width: auto;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    cursor: pointer;
    border: none;
    border-radius: 30px;
    transition: 0.25s ease;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    -webkit-appearance: none; 
    -webkit-appearance: none;
    appearance: none;         
    
}

.btn-gold:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

/* ===========================
   REVEAL ANIMATION
=========================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 1.2s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   CONTACT
=========================== */

#contact-info {
    max-width: 500px;
    padding: 25px 20px;
    box-sizing: border-box;
}

#contact-info .contact-box {
    text-align: center;
    padding: 0;
    width: 100%;
}

.contact-details p {
    margin: 20px 0;
}

.contact-link {
    color: #ece3d0;
    text-decoration: none;
    font-weight: 300;
    transition: 0.3s ease;
    word-break: break-word; 
}

.contact-link:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255,255,255,0.6);
}

.contact-link i {
    margin-right: 6px;
}

/* Social section */
.social-box {
    margin-top: 25px;
}

.social-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    background: linear-gradient(to right, #fbf5e9, #c5a059, #8c6239);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-link {
    font-size: 32px;
    background: linear-gradient(to right, #fbf5e9, #c5a059, #8c6239);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: scale(1.2);
}

/* ===========================
   FOOTER
=========================== */
.footer {
    text-align: center;
    padding: 26px 20px 32px;
    font-size: 0.65rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    opacity: 0.8;
}

/* ===========================
   UTILITIES
=========================== */
.text-gold {
    color: var(--gold);
}

/* ===========================
   ABOUT ANIMATION
=========================== */
.about-animate {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1.4s ease-out, transform 1.4s ease-out;
    will-change: opacity, transform;
}

.about-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   RESPONSIVE — 900px
=========================== */
@media (max-width: 900px) {
    .main-nav {
        gap: 20px;
    }

    .nav-link {
        font-size: 0.65rem;
        letter-spacing: 0.22em;
    }

    .promo-price {
        font-size: 3.4rem;
    }

    .header-top {
        padding-inline: 14px;
    }

    .brand-name {
        font-size: 0.7rem;
        letter-spacing: 0.18em;
    }
}

/* ===========================
   RESPONSIVE — 768px (MOBILE)
=========================== */
@media (max-width: 768px) {

    html {
        scroll-padding-top: 130px;
    }

    .header-top {
        padding: 10px 14px;
        gap: 8px;
    }

    .nav-logo {
        width: 38px;
        height: 38px;
    }

    .brand-name {
        font-size: 0.6rem;
        letter-spacing: 0.12em;
    }

    .btn-prebook {
        padding: 9px 14px;
        font-size: 0.65rem;
        letter-spacing: 0.1em;
    }

    .lang-btn {
        padding: 9px 12px;
        font-size: 0.7rem;
    }

    .main {
        padding-top: 130px; 
        padding-inline: 16px;
    }

    .main-nav {
        justify-content: flex-start;
        gap: 24px;
        padding: 10px 16px;
    }

    .main-nav .nav-link:last-child {
        padding-right: 16px;
    }

    .nav-link {
        font-size: 0.7rem;
        letter-spacing: 0.15em;
    }
}

/* ===========================
   RESPONSIVE — 600px (SMALL MOBILE)
=========================== */
@media (max-width: 600px) {

    .hero-title {
        font-size: 1.1rem;
        letter-spacing: 0.28em;
    }

    .hero-slogan {
        font-size: 17px;
    }

    .crown-container {
        width: 200px;
        height: 140px;
    }

    .promo-price {
        font-size: 2.8rem;
    }

    .promo-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .glass-card {
        padding: 28px 20px;
    }

    .form-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .form-row label {
        width: 100%;
        min-width: unset;
        text-align: left;
        font-size: 13px;
    }

    .form-row input,
    .form-row select {
        width: 100%;
        font-size: 16px; 
        padding: 12px 4px;
    }

    .btn-gold {
        width: 100%;
        border-radius: 40px;
        padding: 14px;
        font-size: 0.9rem;
    }

    .submit-wrapper {
        width: 100%;
    }

    .section-title {
        font-size: 1.3rem;
    }

    #contact-info {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .brand-name {
        white-space: normal;  
        font-size: 0.64rem;
        line-height: 1.3;
        max-width: 120px;
    }
}



