/* Ultra-Premium Dark Luxury Design for Site 4 */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Montserrat:wght@300;400;600&display=swap');

:root {
    --bg-dark: #07090F;
    --bg-card: rgba(20, 25, 40, 0.6);
    --gold: #D4AF37;
    --gold-light: #F3E5AB;
    --white: #FFFFFF;
    --text-muted: #A0A5B5;
    --glow: rgba(212, 175, 55, 0.3);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-dark);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }

/* Navigation */
.navbar {
    position: fixed; top: 0; width: 100%;
    padding: 25px 5%;
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(7, 9, 15, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    z-index: 1000;
}
.brand { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; color: var(--gold-light); letter-spacing: 1px; }

.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); }
.nav-links a:hover { color: var(--gold); }

.nav-cta {
    background: transparent; color: var(--gold);
    padding: 12px 30px; font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px;
    border: 1px solid var(--gold); border-radius: 2px;
}
.nav-cta:hover { background: var(--gold); color: var(--bg-dark); box-shadow: 0 0 15px var(--glow); }

/* Hamburger */
.hamburger {
    display: none; background: none; border: none;
    cursor: pointer; padding: 10px; z-index: 1001;
}
.hamburger div {
    width: 30px; height: 2px; background: var(--gold-light);
    margin: 7px 0; transition: 0.3s;
}
.hamburger.is-active .l1 { transform: translateY(9px) rotate(45deg); }
.hamburger.is-active .l2 { opacity: 0; }
.hamburger.is-active .l3 { transform: translateY(-9px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(7, 9, 15, 0.98);
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    transform: translateY(-100%); transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 999;
}
.mobile-menu.is-active { transform: translateY(0); }
.mobile-menu a { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-style: italic; margin: 15px 0; color: var(--white); }
.mobile-menu a:hover { color: var(--gold); }

/* Hero */
.hero {
    min-height: 100vh;
    display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center;
    padding: 150px 5% 100px; position: relative;
}
.hero::after {
    content: ''; position: absolute;
    width: 1px; height: 100px; background: linear-gradient(to bottom, var(--gold), transparent);
    bottom: 0; left: 50%; transform: translateX(-50%);
}
.hero h1 { font-size: clamp(3rem, 7vw, 6rem); line-height: 1.1; margin-bottom: 30px; color: var(--gold-light); max-width: 1000px; }
.hero h1 span { font-style: italic; color: var(--white); }
.hero p { font-size: 1.2rem; color: var(--text-muted); max-width: 700px; font-weight: 300; margin-bottom: 50px; }
.hero-btns { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }

.btn {
    display: inline-block; padding: 18px 45px; font-size: 0.85rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 2px; border-radius: 2px; transition: var(--transition);
}
.btn-gold { background: var(--gold); color: var(--bg-dark); border: 1px solid var(--gold); }
.btn-gold:hover { background: transparent; color: var(--gold); box-shadow: 0 0 20px var(--glow); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* Sections */
.section { padding: 120px 5%; max-width: 1400px; margin: 0 auto; }
.section-title { text-align: center; font-size: 3.5rem; color: var(--gold-light); margin-bottom: 60px; }

/* Luxury Cards */
.grid-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
.lux-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.lux-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.1), transparent 70%);
    opacity: 0; transition: var(--transition);
}
.lux-card:hover { transform: translateY(-10px); border-color: var(--gold); box-shadow: 0 15px 40px rgba(0,0,0,0.5); }
.lux-card:hover::before { opacity: 1; }

.lux-card h3 { font-size: 2rem; margin-bottom: 20px; color: var(--white); position: relative; }
.lux-card p { color: var(--text-muted); font-weight: 300; position: relative; }

/* Minimalist Locations */
.loc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; }
.loc-item {
    padding: 30px; text-align: center; background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05); transition: var(--transition);
}
.loc-item:hover { border-color: var(--gold); background: rgba(212, 175, 55, 0.05); color: var(--gold-light); }
.loc-item h3 { font-family: 'Montserrat', sans-serif; font-weight: 300; font-size: 1.2rem; letter-spacing: 2px; text-transform: uppercase; margin: 0; }

/* Contact Specific */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.contact-info { background: var(--bg-card); padding: 60px; border: 1px solid rgba(212, 175, 55, 0.2); }
.contact-info p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 25px; }
.contact-info strong { color: var(--gold-light); font-weight: 400; font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; display: block; margin-bottom: 5px;}

/* Footer */
footer { padding: 100px 5% 40px; border-top: 1px solid rgba(255,255,255,0.05); background: #05060A; }
.f-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 80px; max-width: 1400px; margin-left: auto; margin-right: auto; }
.f-brand { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--gold-light); display: block; margin-bottom: 20px;}
.f-col h4 { font-family: 'Montserrat', sans-serif; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); margin-bottom: 25px; }
.f-col ul { list-style: none; }
.f-col ul li { margin-bottom: 15px; }
.f-col ul li a { font-weight: 300; color: #888; }
.f-col ul li a:hover { color: var(--gold); }

.f-bottom { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.05); color: var(--text-muted); font-size: 0.9rem; flex-wrap: wrap; gap: 20px; }

/* WhatsApp Float */
.wp-float {
    position: fixed; bottom: 30px; right: 30px;
    background: #25D366; color: white; width: 60px; height: 60px;
    border-radius: 50%; display: flex; justify-content: center; align-items: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.2); z-index: 1000; transition: transform 0.3s;
}
.wp-float:hover { transform: scale(1.1); box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4); }
.wp-float svg { width: 32px; height: 32px; fill: currentColor; }

/* Responsive */
@media (max-width: 992px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: block; }
    .hero { padding: 130px 5% 80px; }
    .contact-grid, .f-grid { grid-template-columns: 1fr; gap: 40px; }
    .lux-card { padding: 40px 30px; }
}
