/* 🔹 Reset & Basic Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: white;
    color: black;
    overflow-x: hidden;
    width: 100%;
}

/* 🔹 Top Bar Section */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #b1d0f3;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
    box-sizing: border-box;
  }
  
  /* 🔹 Social Media Icons */
  .social-media {
    display: flex;
    gap: 15px;
  }
  
  .social-media a {
    text-decoration: none;
  }
  
  .social-media img {
    width: 30px;
    height: 30px;
  }
  
  /* 🔹 Logo */
  .logo {
    font-size: 28px;
    font-weight: bold;
    color: black;
    text-align: center;
    flex-grow: 1;
    font-family: 'Kaushan Script', cursive;
  }
  
  /* 🔹 Navigation */
  .navigation {
    display: flex;
    justify-content: flex-end;
  }
  
  .navigation ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
  }
  
  .navigation li {
    display: inline;
  }
  
  .navigation a {
    text-decoration: none;
    color: black;
    font-weight: 600;
  }
  
  /* 🔹 Responsive Top Bar for Mobile */
  @media (max-width: 768px) {
    .top-bar {
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 10px 15px;
    }
  
    .social-media {
      justify-content: center;
      margin-bottom: 10px;
    }
  
    .logo {
      text-align: center;
      font-size: 24px;
    }
  
    .navigation {
      justify-content: center;
      width: 100%;
    }
  
    .navigation ul {
      flex-direction: column;
      gap: 10px;
    }
  }

/* 🔹 Boozy Breakfast Section */
.family-quiz {
    text-align: center;
    padding: 0px 20px;
    background: url('brunch5.jpg') no-repeat center center/cover;
    background-color: #b1d0f3;
    color: white;
    position: relative;
    width: 100%;
}

/* 🔹 Remove Overlay */
.family-quiz::before {
    content: none;
}

/* 🔹 Title Styling */
.banner h1 {
    font-family: 'Kaushan Script', cursive;
    font-size: 50px;
    color: white;
    text-align: center;
    margin: 0;
    padding: 15px 0;
    position: relative;
    z-index: 2;
}

/* 🔹 Text Content Styling */
.family-quiz .content {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.content h2,
.content p,
.content ul {
    color: white;
}

/* 🔹 Contact Button */
.contact-btn-container {
    margin-top: 20px;
    text-align: center;
    margin-bottom: 30px; /* ✅ Added gap between button and images */
}

.contact-btn {
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    background-color: #207972;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.contact-btn:hover {
    background-color: #165c4a;
}

/* 🔹 Brunch Images in 2x2 Grid */
.landscape-image-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px; /* ✅ Adds space before the map */
}

.landscape-image-container img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

/* 🔹 Interactive Map Section - Full Width */
.map-section {
    width: 100vw; /* ✅ Makes sure it stretches fully */
    max-width: 100%; /* ✅ Prevents overflow */
    text-align: center;
    margin: 0;
    padding: 0;
    background-color: #b1d0f3;
}

/* 🔹 Fix for Map Overflow & Proper Alignment */
.map-section iframe {
    width: 100vw; /* ✅ Ensures it fits the screen fully */
    max-width: 100%;
    height: 350px;
    border: none;
    display: block;
}

/* 🔹 Remove Shadow from Map */
.map-section::before {
    content: none;
}

/* 🔹 Footer Section - Full Width */
footer {
    text-align: center;
    padding: 20px;
    background-color: #b1d0f3;
    color: black;
    font-weight: 600;
    font-size: 16px;
    width: 100vw; /* ✅ Ensures footer stretches across the full screen */
    max-width: 100%;
    margin-top: 0; /* ✅ Removed Extra Gap */
}

/* 🔹 Remove Shadow from Footer */
footer::before {
    content: none;
}

/* 🔹 Mobile Responsiveness */
@media (max-width: 768px) {
    .banner h1 {
        font-size: 40px;
        margin-top: 0px;
    }

    .family-quiz {
        padding: 0px 15px;
        background-size: cover;
    }

    .family-quiz .content {
        padding: 15px;
    }

    .content h2 {
        font-size: 30px;
    }

    .content p {
        font-size: 16px;
    }

    .contact-btn {
        font-size: 16px;
        padding: 12px 20px;
        width: 80%;
    }

    .landscape-image-section {
        grid-template-columns: 1fr;
    }

    .landscape-image-container img {
        height: 250px;
    }

    /* 🔹 Map Section Full Width on Mobile */
    .map-section {
        width: 100vw;
        max-width: 100%;
    }

    .map-section iframe {
        width: 100vw;
        max-width: 100%;
        height: 300px;
    }

    /* 🔹 Footer Full Width on Mobile */
    footer {
        width: 100vw;
        max-width: 100%;
    }
}
