/* ===== RESET & BASE STYLES ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul { list-style: none; }

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== COLOR VARIABLES ===== */
:root {
    --primary: #2C3E50;    /* Deep Navy */
    --accent: #C0392B;     /* Terracotta Red */
    --light: #F4F4F4;      /* Light Gray */
    --dark: #1a252f;       /* Dark Navy */
    --white: #ffffff;
}

/* ===== NAVIGATION ===== */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-weight: 400;
    color: var(--primary);
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--accent);
}

.btn-nav {
    border: 1px solid var(--primary);
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
}

.btn-nav:hover {
    background: var(--primary);
    color: var(--white) !important;
}

/* ===== HERO SECTION ===== */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(44,62,80,0.9), rgba(44,62,80,0.8)), 
                url('https://images.unsplash.com/photo-1548625361-ec8f3d8f8d6e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    margin-top: 60px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 300;
    opacity: 0.9;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: #a93226;
    transform: translateY(-2px);
}

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

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

/* ===== SECTIONS ===== */
.section {
    padding: 5rem 0;
}

.bg-light { background-color: var(--light); }
.bg-dark { 
    background-color: var(--primary); 
    color: var(--white); 
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary);
}

.text-white { color: var(--white); }

.content-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
}

/* ===== GRIDS ===== */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

/* ===== CARDS ===== */
.card {
    background: var(--white);
    padding: 2rem;
    border-left: 4px solid var(--accent);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.card h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.service-item {
    padding: 2rem;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.service-item h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

/* ===== CONTACT SECTION ===== */
.contact-container {
    text-align: center;
}

.contact-container p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* ===== FOOTER ===== */
footer {
    background: var(--dark);
    color: #aaa;
    text-align: center;
    padding: 2rem 0;
    font-size: 0.9rem;
}

/* ===== CALENDAR EMBED ===== */
.calendar-embed {
    min-height: 650px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    position: relative;
}

/* ===== BOOKING GRID (Dual Calendly) ===== */
.booking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.booking-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.booking-card h3 {
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-size: 1.3rem;
}

.booking-card p {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

.calendly-embed {
    flex: 1;
    min-height: 700px;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .nav-links {
        display: none; /* Simple hide for mobile; can add hamburger menu later */
    }
    
    .grid-2, 
    .grid-3,
    .booking-grid {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
}