/* Royal Pearl Luxury Design for Site 2 */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;1,400&family=Outfit:wght@300;400;500;600&display=swap');

:root {
    --pearl: #FDFBF7;
    --cream: #F5F1E7;
    --gold: #C4A45D;
    --gold-light: #E0C995;
    --coffee: #2B231D;
    --coffee-light: #4A3E35;
    --text-muted: #82756B;
    --white: #FFFFFF;
    --shadow: 0 20px 40px rgba(43, 35, 29, 0.06);
    --shadow-hover: 0 30px 60px rgba(196, 164, 93, 0.15);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --radius: 24px;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--pearl);
    color: var(--coffee);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    background-image: radial-gradient(circle at 100% 0%, rgba(196, 164, 93, 0.05) 0%, transparent 40%),
                      radial-gradient(circle at 0% 100%, rgba(196, 164, 93, 0.05) 0%, transparent 40%);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', serif;
    font-weight: 500;
    color: var(--coffee);
}

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

/* Navigation */
.navbar {
    position: fixed; top: 0; width: 100%;
    padding: 20px 5%;
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(253, 251, 247, 0.9);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(196, 164, 93, 0.1);
}
.brand { font-family: 'Lora', serif; font-size: 1.8rem; font-weight: 600; color: var(--coffee); letter-spacing: -0.5px; }
.brand span { color: var(--gold); font-style: italic; }

.nav-links { display: flex; gap: 35px; list-style: none; }
.nav-links a { font-size: 0.95rem; font-weight: 500; color: var(--coffee-light); }
.nav-links a:hover { color: var(--gold); }

.nav-cta {
    background: var(--gold); color: var(--white);
    padding: 12px 28px; font-weight: 500; font-size: 0.95rem; border-radius: 50px;
    box-shadow: 0 10px 20px rgba(196, 164, 93, 0.3);
}
.nav-cta:hover { transform: translateY(-3px); box-shadow: 0 15px 25px rgba(196, 164, 93, 0.4); }

/* Hamburger */
.hamburger {
    display: none; background: none; border: none;
    cursor: pointer; padding: 10px; z-index: 1001;
}
.hamburger-line {
    display: block; width: 28px; height: 2px; background: var(--coffee);
    margin: 6px 0; transition: 0.3s; border-radius: 2px;
}
.hamburger.is-active .line1 { transform: translateY(8px) rotate(45deg); }
.hamburger.is-active .line2 { opacity: 0; }
.hamburger.is-active .line3 { transform: translateY(-8px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: var(--pearl);
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    transform: translateY(-100%); transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 999;
}
.mobile-menu.is-active { transform: translateY(0); }
.mobile-menu a { font-family: 'Lora', serif; font-size: 2rem; color: var(--coffee); margin: 15px 0; }
.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: 160px 5% 100px;
}
.hero-title { font-size: clamp(3rem, 7vw, 5.5rem); line-height: 1.1; margin-bottom: 30px; color: var(--coffee); max-width: 1100px; }
.hero-title span { color: var(--gold); font-style: italic; font-weight: 400; }
.hero-desc { font-size: 1.3rem; color: var(--text-muted); max-width: 750px; font-weight: 300; margin-bottom: 50px; line-height: 1.8; }
.hero-buttons { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }

.btn-primary, .btn-secondary {
    display: inline-block; padding: 18px 40px; font-size: 1rem; font-weight: 500;
    border-radius: 50px; transition: var(--transition);
}
.btn-primary { background: var(--coffee); color: var(--white); box-shadow: 0 10px 25px rgba(43, 35, 29, 0.2); }
.btn-primary:hover { background: var(--gold); transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.btn-secondary { background: var(--white); color: var(--coffee); border: 1px solid var(--cream); box-shadow: var(--shadow); }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-5px); }

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

/* Luxury Soft Grid */
.soft-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 50px; }
.soft-card {
    background: var(--white);
    padding: 60px 50px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.5);
}
.soft-card:hover { transform: translateY(-15px); box-shadow: var(--shadow-hover); border-color: rgba(196, 164, 93, 0.2); }
.soft-card h3 { font-size: 1.8rem; margin-bottom: 25px; color: var(--coffee); }
.soft-card p { color: var(--text-muted); font-weight: 300; font-size: 1.1rem; }

/* Locations */
.loc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; }
.loc-card {
    background: var(--cream);
    padding: 35px 30px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
}
.loc-card:hover { background: var(--gold); color: var(--white); transform: scale(1.03); box-shadow: var(--shadow-hover); }
.loc-card h3 { margin: 0; font-size: 1.3rem; transition: var(--transition); }
.loc-card:hover h3 { color: var(--white); }

/* Contact Specific */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.contact-info { background: var(--white); padding: 70px; border-radius: var(--radius); box-shadow: var(--shadow); }
.contact-info h3 { font-size: 2.5rem; margin-bottom: 40px; }
.contact-info p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 30px; }
.contact-info strong { color: var(--coffee); display: block; margin-bottom: 8px; font-family: 'Lora', serif; font-size: 1.5rem; }

/* Footer */
footer { padding: 100px 5% 50px; background: var(--white); border-top: 1px solid var(--cream); }
.footer-top { display: grid; grid-template-columns: 3fr 4fr; gap: 60px; max-width: 1400px; margin: 0 auto 80px; }
.footer-brand { font-family: 'Lora', serif; font-size: 2.5rem; color: var(--coffee); font-weight: 600; }
.footer-brand span { color: var(--gold); font-style: italic; }
.footer-desc { color: var(--text-muted); font-size: 1.1rem; margin-top: 20px; max-width: 400px; }

.footer-nav { display: flex; gap: 80px; }
.footer-col h4 { font-family: 'Outfit', sans-serif; font-size: 1.1rem; color: var(--coffee); margin-bottom: 25px; font-weight: 600; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 15px; }
.footer-col ul li a { color: var(--text-muted); font-weight: 300; }
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; padding-top: 40px; border-top: 1px solid var(--cream); color: var(--text-muted); flex-wrap: wrap; gap: 20px; }

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

/* Responsive */
@media (max-width: 992px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: block; }
    .hero { padding: 140px 5% 80px; }
    .contact-wrap, .footer-top, .footer-nav { grid-template-columns: 1fr; gap: 50px; flex-direction: column; }
    .soft-card, .contact-info { padding: 40px 30px; }
    .wp-float { bottom: 20px; right: 20px; }
}
