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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: black;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header Styles (from previous responsive navbar) */
header {
    position: relative;
    width: 100%;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: black;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: 1s;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgb(99, 3, 48);
    margin-left: 1rem;
}

.logo-img {
    border-radius: .5rem;
    width: 60px;
    height: auto;
    background-color: rgb(99, 3, 48);
    padding: 5px; 
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: rgb(99, 3, 48);
    font-weight: 600;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: white;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: rgb(99, 3, 48);
}

/* Hero Section */
.hero {
    background-image: url("pies.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; /* or contain depending on layout */
    color: white;
    text-align: center;
    padding: 150px 0 100px;
    margin-top: 80px;
  }
  

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: black;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: rgb(99, 3, 48);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 2rem;
    color: rgb(99, 3, 48);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: rgb(99, 3, 48);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, rgb(99, 3, 48) 0%, #8B0000 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 3, 48, 0.3);
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    background: linear-gradient(135deg, rgb(99, 3, 48) 0%, #8B0000 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1.3rem;
    color: rgb(99, 3, 48);
    margin-bottom: 0.5rem;
}

.info-content p {
    color: #666;
    line-height: 1.6;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: white;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    height: 500px;
    position: relative;
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%);
}

.map-overlay {
    position: absolute;
    top: 30px;
    left: 30px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-width: 300px;
}

.map-overlay h4 {
    color: rgb(99, 3, 48);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.map-overlay p {
    color: #333;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* Footer */
.footer {
    background-color: black;
    color: white;
    position: relative;
    margin-top: 0;
}

.footer-wave {
    display: block;
    background-color: black;
    position: absolute;
    top: -99px;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
}

.footer-content {
    padding: 60px 0 30px;
    position: relative;
    z-index: 2;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.footer-brand h2 {
    color: rgb(99, 3, 48);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    background: rgb(99, 3, 48);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h3 {
    color: rgb(99, 3, 48);
    margin-bottom: 1rem;
}

.footer-col p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.footer-col i {
    color: rgb(99, 3, 48);
    margin-right: 8px;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 0.5rem;
}

.footer-menu a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: rgb(99, 3, 48);
}

.newsletter-form .form-group {
    display: flex;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 5px 0 0 5px;
}

.newsletter-form button {
    background: rgb(99, 3, 48);
    color: white;
    border: none;
    padding: 12px 15px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: rgb(99, 3, 48);
}

.copyright {
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 3%;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
        font-size: 2.5rem;
        margin-right: 1rem;
    }

    .mobile-menu {
        display: none;
        flex-direction: column;
        background-color: white;
        width: 100%;
        position: fixed;
        top: 80px;
        left: 0;
        padding: 1rem 0;
        z-index: 1001;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
    }

    .mobile-menu.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
    }

    .mobile-menu a {
        padding: 1rem 2rem;
        color: #333;
        font-weight: 500;
        border-bottom: 1px solid #f1f1f1;
        transition: all 0.3s ease;
    }

    .mobile-menu a:hover {
        background-color: #fff0f0;
        color: rgb(99, 3, 48);
        padding-left: 2.5rem;
    }

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

    .hero p {
        font-size: 1.1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .info-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }

    .map-overlay {
        position: static;
        margin: 20px;
        margin-bottom: 0;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}