/* Basic Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #663333;
    background-color: white;
}

.logo {
    width: 200px;
    margin: 20px auto;
    display: block;
}

/* Desktop Navigation */
nav {
    background: #663333;
    padding: 10px 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    box-sizing: border-box;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    font-size: 16px;
    font-family: Arial, sans-serif;
}

/* Hamburger Menu - Mobile Only */
.hamburger {
    display: none;
    background: #663333;
    color: white;
    border: none;
    font-size: 24px;
    padding: 10px 15px;
    width: 100%;
    text-align: left;
    cursor: pointer;
    position: sticky;
    top: 0;
    z-index: 101;
}

.hamburger:after {
    content: "☰";
    float: right;
}

.hamburger.open:after {
    content: "×";
}

@media (max-width: 768px) {
    /* Hide regular navigation */
    nav {
        display: none;
        padding: 0;
    }
    
    /* Show hamburger button */
    .hamburger {
        display: block;
    }
    
    /* Show navigation when menu is open */
    nav.open {
        display: block;
    }
    
    nav a {
        display: block;
        margin: 0;
        padding: 12px 15px;
        border-top: 1px solid rgba(255,255,255,0.2);
    }
    
    nav a:last-child {
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }
}

/* Contact Page Styles */
.contact-header {
    background-color: #FFCCCC;
    color: #663333;
    text-align: center;
    padding: 50px 20px;
}

.contact-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-card {
    background: white;
    border: 2px solid #FFCCCC;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
}

.contact-card h3 {
    color: #663333;
    margin-top: 0;
    border-bottom: 1px solid #FFCCCC;
    padding-bottom: 10px;
}

.map-container {
    flex: 1;
    min-width: 300px;
}

.map {
    height: 400px;
    width: 100%;
    border: 3px solid #FFCCCC;
    border-radius: 10px;
}

footer {
    background-color: #663333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}

/* Email link styles */
.email-link {
    color: #663333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.email-link:hover {
    color: #FF9999;
    text-decoration: underline;
}