@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    /* Color Palette - Luxury & Brand Aligned */
    --primary-lavender: #A399CC; /* From Logo Flower */
    --primary-lavender-light: #E0DBF0;
    --primary-lavender-dark: #7D73A6;
    
    --accent-gold: #D4AF37;
    --accent-gold-light: #F1E5AC;
    
    --deep-green: #1B4D3E; /* From brand accents */
    --metallic-silver: #A8A9AD; /* From Logo Text */
    --text-metallic: #4A4A4A;
    
    --bg-white: #FFFFFF;
    --bg-light: #F9F8FB; /* Slight lavender tint */
    --text-dark: #1A1A1A;
    --text-muted: #666666;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(163, 153, 204, 0.2); /* Lavender border */
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Shadows & Transitions */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(163, 153, 204, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, h4, .serif {
    font-family: var(--font-heading);
    font-weight: 700;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Glassmorphism Utility */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-lavender), var(--primary-lavender-dark));
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    filter: brightness(1.1);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-lavender);
    color: var(--primary-lavender);
}

.btn-outline:hover {
    background: var(--primary-lavender);
    color: white;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: var(--transition);
}

nav.scrolled {
    padding: 0.8rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Hamburger Menu */
.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    width: 30px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--primary-lavender);
    border-radius: 2px;
    transition: var(--transition);
}

/* Sidebar Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -320px; /* Hidden sidebar */
    width: 300px;
    height: 100vh;
    background: var(--bg-white);
    display: flex;
    flex-direction: column;
    padding: 100px 2rem 2rem;
    gap: 1.5rem;
    z-index: 1002;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.mobile-menu.active {
    left: 0;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1001;
    display: none;
    backdrop-filter: blur(3px);
}

.menu-overlay.active {
    display: block;
}

.mobile-menu a {
    font-size: 1.3rem;
    font-family: var(--font-heading);
    color: var(--text-dark);
    padding: 10px 0;
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 60px; /* Professional size */
    width: auto;
    object-fit: contain;
}

.nav-right {
    justify-self: end;
}

.nav-links {
    display: none;
}

/* Hero Section - Grid based to prevent overlap */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    background: var(--bg-light);
    overflow: hidden;
    padding-top: 100px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 60%;
    height: 120%;
    background: var(--primary-lavender-light);
    border-radius: 50%;
    opacity: 0.2;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-left: 2rem;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.hero-image {
    width: 100%;
    height: 80vh;
    overflow: hidden;
    border-radius: 40px 0 0 40px;
    box-shadow: var(--shadow-lg);
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-btns {
    display: flex;
    gap: 2rem; /* Increased spacing as requested */
}

/* Section Transitions */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* About & Contact Sections */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info-card {
    padding: 3rem;
    background: var(--bg-light);
    border-radius: 20px;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary-gold);
}

.contact-form .form-control {
    margin-bottom: 1.5rem;
    background: var(--bg-light);
    border: 1px solid var(--glass-border);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .container {
        padding: 0 1.5rem;
    }

    .nav-content {
        padding: 0;
    }

    .nav-right .btn {
        padding: 6px 12px;
        font-size: 0.7rem;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 100px;
    }

    .hero h1 {
        font-size: 2.5rem !important;
    }

    .hero-content {
        padding: 2rem 0;
    }

    .about-grid, .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    .about-grid h2 {
        font-size: 2.5rem !important;
    }

    .value-cards {
        grid-template-columns: 1fr !important;
    }

    footer .container > div {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand, .footer-links, .footer-social {
        justify-self: center;
    }

    .footer-brand .logo {
        justify-self: center !important;
        margin: 0 auto 1.5rem !important;
    }

    .section-title h2, .about-grid h2, .about-grid span {
        text-align: center;
        display: block;
        width: 100%;
    }

    .hero-content p, .about-grid p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem !important;
    }
    .logo {
        font-size: 1.1rem;
    }
    .btn {
        padding: 10px 20px;
    }
}
