/* --- 1. FONTS & THEME --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Poppins:wght@300;400;600&display=swap');

:root {
    --gold: #d4af37;
    --black: #000000;
    --white-gold: #f5e6be;
    --whatsapp-green: #25D366;
    --logo-font: 'Playfair Display', serif;
    --body-font: 'Poppins', sans-serif;
}

/* --- 2. GLOBAL RESET --- */
* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
    -webkit-tap-highlight-color: transparent; 
}
html { scroll-behavior: smooth; }
body { 
    background-color: var(--black); 
    color: var(--white-gold); 
    font-family: var(--body-font); 
    overflow-x: hidden; 
    width: 100%;
}

/* --- 3. THE STICKY HEADER (Shifted for Menu Clearance) --- */
.sticky-top-nav {
    position: fixed;
    top: 0; width: 100%; height: 115px;
    background: rgba(0, 0, 0, 0.98);
    border-bottom: 2px solid var(--gold);
    z-index: 1000;
    display: flex; 
    align-items: center; 
    justify-content: center; /* Keeps items grouped in the center */
    opacity: 0; visibility: hidden;
    transform: translateY(-100%);
    transition: 0.5s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    pointer-events: none;
}
.sticky-top-nav.reveal { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: all; }

.header-compact-center {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 35px;
    padding-top: 10px;
    /* SHIFT: Creates space so the 'Contact' icon doesn't hit the hamburger menu */
    margin-left: 80px; 
}

.hero-action-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    gap: 6px;
    transition: 0.3s;
}

.hero-action-btn {
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    transition: 0.3s;
}

.call-btn { background: var(--gold); color: black; }
.wa-btn { background: var(--whatsapp-green); color: white; }

.action-label {
    color: var(--white-gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.hero-action-container:hover .hero-action-btn {
    background: #ffffff;
    color: var(--black);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}
.hero-action-container:hover .action-label { color: var(--gold); }

.mini-branding { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.mini-branding img { 
    width: 52px; height: 52px; 
    border-radius: 50%; 
    border: 2px solid var(--gold);
    object-fit: cover;
}
.mini-branding span { font-family: var(--logo-font); color: var(--gold); font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; }

/* --- 4. NAVIGATION --- */
.nav-container { position: fixed; top: 25px; left: 25px; z-index: 1100; }
.menu-icon { cursor: pointer; padding: 10px; background: rgba(0,0,0,0.5); border-radius: 50%; }
.menu-icon div { width: 28px; height: 2px; background: var(--gold); margin: 6px 0; transition: 0.4s; }
.active-icon .bar1 { transform: rotate(-45deg) translate(-6px, 6px); }
.active-icon .bar2 { opacity: 0; }
.active-icon .bar3 { transform: rotate(45deg) translate(-6px, -6px); }

.side-menu {
    position: fixed; top: 0; left: -320px; width: 300px; height: 100vh;
    background: rgba(0, 0, 0, 0.98); border-right: 1px solid var(--gold); transition: 0.5s;
    padding: 100px 40px; z-index: 1050;
}
.side-menu.active { left: 0; }
.nav-links li { list-style: none; margin: 25px 0; }
.nav-links a { color: var(--gold); text-decoration: none; font-family: var(--logo-font); text-transform: uppercase; letter-spacing: 2px; font-size: 1.1rem; }

/* --- 5. ROUND HERO LOGO --- */
.fixed-logo-container {
    position: fixed; inset: 0; display: flex; flex-direction: column;
    align-items: center; justify-content: center; z-index: 2; pointer-events: none;
    transition: opacity 0.3s;
}
.round-logo-wrapper {
    width: 280px; height: 280px;
    border-radius: 50%; overflow: hidden;
    border: 3px solid var(--gold);
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.4);
    background: #000;
}
.big-parallax-logo { width: 100%; height: 100%; object-fit: cover; }
.scroll-hint { margin-top: 30px; color: var(--gold); font-family: var(--logo-font); letter-spacing: 5px; text-align: center; }
.arrow-down { width: 15px; height: 15px; border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(45deg); margin: 10px auto; animation: bounce 2s infinite; }

/* --- 6. LUXURY TEXT --- */
.gold-text {
    background: linear-gradient(to bottom, #f5e6be, #d4af37);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}

/* --- 7. CONTENT SECTIONS --- */
.content-wrapper { position: relative; z-index: 10; }
.entrance-spacer { height: 100vh; }
section { padding: 100px 20px; text-align: center; max-width: 1000px; margin: 0 auto; }
.logo-font-match { font-family: var(--logo-font); text-transform: uppercase; letter-spacing: 6px; font-size: 2.2rem; margin-bottom: 30px; }
.premium-p { font-weight: 300; font-size: 1.1rem; line-height: 1.8; margin-bottom: 20px; }

/* --- 8. GRIDS & INSTA --- */
.safety-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; }
.safety-card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(212, 175, 55, 0.1); padding: 40px; transition: 0.3s; }
.safety-card:hover { border-color: var(--gold); }
.safety-icon { font-size: 3rem; margin-bottom: 15px; display: block; }

.instagram-wrapper {
    width: 100%; max-width: 1000px; margin: 0 auto; padding: 20px;
    background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px; min-height: 400px;
}
.behold-widget-container iframe { border-radius: 4px; filter: grayscale(20%) contrast(110%); }

/* --- 9. REVIEWS --- */
.review-form-container {
    background: rgba(255, 255, 255, 0.05); padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.2); margin-bottom: 50px; border-radius: 8px;
}
#reviewForm { display: flex; flex-direction: column; gap: 15px; }
#reviewForm input, #reviewForm textarea {
    background: transparent; border: 1px solid rgba(212, 175, 55, 0.4);
    color: white; padding: 12px; font-family: var(--body-font);
}
.star-rating { display: flex; flex-direction: row-reverse; justify-content: center; font-size: 2rem; margin-bottom: 10px; }
.star-rating input { display: none; }
.star-rating label { color: #333; cursor: pointer; transition: 0.2s; }
.star-rating input:checked ~ label, .star-rating label:hover, .star-rating label:hover ~ label { color: var(--gold); }

.review-card {
    background: #0a0a0a; padding: 25px; border-left: 3px solid var(--gold);
    margin-bottom: 20px; text-align: left; transition: 0.3s;
}
.stars-static { color: var(--gold); letter-spacing: 2px; margin-bottom: 10px; }
.reviews-display.limit-view > .review-card:nth-child(n+5) { display: none !important; }

/* --- 10. BUTTONS --- */
.gold-btn, .read-more-btn {
    display: inline-block; padding: 15px 35px; background: var(--gold); color: black;
    border: none; font-weight: 600; text-transform: uppercase; cursor: pointer; 
    letter-spacing: 2px; transition: 0.3s;
}
.read-more-btn { background: transparent; border: 2px solid var(--gold); color: var(--gold); margin-top: 10px; }
.gold-btn:hover, .read-more-btn:hover { background: white; color: black; transform: translateY(-2px); }

.new-entry { border-left-color: var(--whatsapp-green); animation: slideIn 0.5s ease-out; }
@keyframes slideIn { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: translateX(0); } }

/* --- 11. AMBIENCE --- */
.dust-container { position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: 0.25; overflow: hidden; }
.dust-layer { 
    width: 200%; height: 200%; position: absolute; top: -50%; left: -50%;
    background-image: radial-gradient(circle, var(--gold) 1px, transparent 1.2px), 
                      radial-gradient(circle, var(--white-gold) 1px, transparent 1.2px);
    background-size: 80px 80px, 130px 130px; animation: drift 40s linear infinite; 
}
@keyframes drift {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(5%, 5%) rotate(1deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}
@keyframes bounce { 0%, 100% { transform: translateY(0) rotate(45deg); } 50% { transform: translateY(-10px) rotate(45deg); } }

/* --- 12. RESPONSIVE --- */
@media (max-width: 768px) {
    .sticky-top-nav { height: 105px; }
    .header-compact-center { 
        gap: 20px; 
        /* MOBILE SHIFT: Adjusted for smaller screens */
        margin-left: 65px; 
    }
    .hero-action-btn { width: 46px; height: 46px; font-size: 1.2rem; }
    .action-label { font-size: 0.65rem; letter-spacing: 1px; }
    .mini-branding img { width: 46px; height: 46px; }
    .round-logo-wrapper { width: 230px; height: 230px; }
    .logo-font-match { font-size: 1.6rem; letter-spacing: 4px; }
    .side-menu { width: 100%; left: -100%; }
    .side-menu.active { left: 0; }
}
