/* CSS Variables */
:root {
    --primary: #E31837;
    --dark: #1A0A0E;
    --light: #FFF8F8;
    --hover: #C41230;
    --blush: #FDEAED;
}

/* Base Setup & Typography */
body {
    margin: 0;
    font-family: system-ui, -apple-system, sans-serif;
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    padding-top: 70px; /* Accounts for fixed nav */
}
h1, h2, h3, h4, h5, h6 {
    font-family: Georgia, serif;
    margin-top: 0;
    color: var(--primary);
}
h1 { font-size: 3.5rem; color: white; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
h2 { font-size: 2.5rem; text-align: center; margin-bottom: 2rem; }
h3 { font-size: 1.5rem; }
a { color: var(--primary); text-decoration: none; font-weight: bold; transition: color 0.3s ease; }
a:hover { color: var(--hover); }
img { max-width: 100%; height: auto; border-radius: 8px; }

/* Layout Utility Classes */
.container { max-width: 1200px; margin: 0 auto; padding: 4rem 2rem; min-height: 60vh; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-bottom: 3rem; }
.text-center { text-align: center; }
.btn { display: inline-block; background: var(--primary); color: white; padding: 1rem 2rem; border-radius: 5px; font-weight: bold; transition: background 0.3s; }
.btn:hover { background: var(--hover); color: white; }
.bg-blush { background-color: var(--blush); }
.card { background: white; padding: 2rem; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
ul.custom-list { list-style: none; padding: 0; }
ul.custom-list li { padding-left: 1.5rem; position: relative; margin-bottom: 1rem; }
ul.custom-list li::before { content: '❤️'; position: absolute; left: 0; top: 2px; font-size: 0.8rem; }

/* Navigation */
nav {
    position: fixed; top: 0; width: 100%;
    background: rgba(255, 248, 248, 0.98);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000; display: flex; justify-content: space-between; align-items: center;
    padding: 0.5rem 2rem; box-sizing: border-box;
}
.nav-logo img { height: 60px; display: block; }
.nav-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.nav-links a { color: var(--dark); font-size: 0.9rem; text-transform: uppercase; font-weight: 600; }
.nav-links a:hover { color: var(--primary); }

/* Hamburger Menu Button (Hidden on Desktop) */
.hamburger {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary);
}

/* Footer */
footer { background: var(--dark); color: var(--light); padding: 3rem 2rem; text-align: center; }
footer img { height: 80px; margin-bottom: 1rem; }
footer a { color: var(--blush); font-weight: normal; }

/* Hero Logo and Google Maps */
.hero-logo {
    width: 200px; 
    height: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.4));
    background: white;
    border-radius: 50%; 
    padding: 10px;
}

.map-container {
    position: relative;
    padding-bottom: 75%; 
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    background: #e5e3df; 
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Mobile Styles */
@media(max-width: 768px) {
    .grid-2 { grid-template-columns: 1fr; }
    
    nav { 
        padding: 0.5rem 1rem; 
    }
    
    .hamburger { 
        display: block; 
    }
    
    .nav-links { 
        display: none; 
        flex-direction: column; 
        position: absolute; 
        top: 100%; /* Drops exactly below the nav bar */
        left: 0; 
        width: 100%; 
        background: rgba(255, 248, 248, 0.98); 
        box-shadow: 0 4px 10px rgba(0,0,0,0.1); 
        padding: 0;
    }
    
    /* The !important tag guarantees the menu displays when active */
    .nav-links.active { 
        display: flex !important; 
    }
    
    .nav-links a { 
        padding: 1rem 2rem; 
        border-bottom: 1px solid #eee; 
        width: 100%; 
        box-sizing: border-box; 
    }
    
    #hero {
        min-height: calc(100vh - 70px);
        margin-top: 0;
        padding: 4rem 1rem;
    }
}