* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);

    background-color: rgba(245,245,245, 0.9);
}

.header-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    padding: 0 40px;
    max-width: 90%;
    margin: 0 auto;

}
.home-icon {           /* the <a> wrapping the logo */
  grid-column: 2;
  justify-self: center;
}

.home-icon img {
  height: 100px;
  width: auto;
  display: block;
}

.menu-button{
  grid-column: 3;
  justify-self: end;
}



/* Menu Button */
.menu-button {
    position: absolute;
    right: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
    width: 48px;
    height: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
}
.menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  background: #999;
  border-radius: 2px;
}

/* Menu Popup Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-popup {
    background: transparent;
    padding: 60px 80px;
    text-align: center;
    transform: scale(0.8) translateY(50px);
    transition: all 0.4s ease;
    position: relative;
    max-width: 500px;
    width: 90%;
}

.menu-overlay.active .menu-popup {
    transform: scale(1) translateY(0);
}

.close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-button:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.menu-items {
    list-style: none;
}

.menu-items li {
    margin: 30px 0;
}

.menu-items a {
    text-decoration: none;
    font-size: 24px;
    font-weight: 300;
    color: white;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 10px;
}

.menu-items a:hover {
    transform: translateY(-3px);
    color: #ccc;
}

/* Scroll Wrapper Container */
.scroll-wrapper {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
}


/*---------------------------------------------------------------------------------------

/* Content Sections */
.content-section {
    min-height: 100vh;
    padding: 40px 40px;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.section-title {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 60px;
}

/* Section Backgrounds */
.section-1 {
    background-color: #f5f5f5;
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.contact-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    color: #333;
}

.contact-card h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #333;
}

.contact-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 5px;
}

.contact-card p.secondary {
    font-size: 14px;
    color: #999;
}

/* Stay Connected Section */
.stay-connected {
    padding-bottom: 337px;
    text-align: center;
}

.stay-connected h2 {
    font-size: 12px;
    font-weight: 400;
    color: #999;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.stay-connected a {
    display: block;
    font-size: 25px;
    color: black;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
    font-weight: 300;
}




/* Mobile Responsiveness */
@media (max-width: 768px) {
    .header-content {
        padding: 0 20px;
    }

    .menu-popup {
        padding: 40px 30px;
        margin: 20px;
    }

    .menu-items a {
        font-size: 20px;
    }

    .content-section {
        padding: 40px 20px;
    }

    .section-title {
        font-size: 36px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form {
        padding: 30px 20px;
        margin: 0 10px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .location-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .map-placeholder {
        padding: 40px 20px;
    }

    .business-hours,
    .additional-info {
        padding: 25px 20px;
    }

    .scroll-progress {
        display: none;
    }

    .stay-connected {
        padding: 60px 20px;
    }

    .stay-connected h2 {
        font-size: 11px;
    }
}