/* General Styling */
body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    color: #333;
    line-height: 1.6;
}

h1,
h2 {
    font-family: "Bitter", serif;
    margin-bottom: 0.5em;
}

.container {
    width: 90%;
    margin: auto;
    max-width: 1200px;
}

/* Hero Section */
.hero {
    background: url('/assets/images/hero.jpg') no-repeat center center/cover;
    color: white;
    height: 100vh;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0 20px;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    margin: 0;
}

/* Intro Section */
#intro {
    background-color: #F4E1A1;
    /* Warm Wheat (adjusted) */
    padding: 40px 0;
    display: flex;
    justify-content: center; /* Centers content horizontally */
    align-items: center;     /* Centers content vertically */
    text-align: center;      /* Ensures text is centered */
}

#intro .container {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Ensures items are centered in the container */
}

#intro h2 {
    font-size: 2.5rem;
    color: #c57b3a;
    /* Golden Amber */
    line-height: 1.2;
    margin-bottom: 0.2rem;
    text-align: center;
}

.intro h3 {
    font-size: 1.8rem;
    font-weight: 400;
    color: #555;
    margin-top: 0;
    margin-bottom: 1.5rem;
    text-align: center;
}

#intro p {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Coming Soon Section */
#comingsoon {
    background-color: #7A4D29;
    /* Belgium Ale */
    padding: 40px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

#comingsoon h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
}

#comingsoon p {
    font-size: 1.2rem;
    color: white;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Image Gallery Section */
#gallery {
    background-color: #D3A75C;
    /* Golden Ale */
    padding: 40px 0;
    text-align: center;
}

#gallery h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
}
.image-gallery {
    background-color: #3E2723;
    /* Dark Brown */
    padding: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    /* Center the grid */
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the aspect ratio is maintained and images fill the container */
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    /* Prevents images from having extra space below them */
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.gallery-grid p {
    font-size: 1.2rem;
    color: #FFF;
    /* Adjust text color for readability */
    line-height: 1.6;
    text-align: center;
}

.gallery-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 30px;
    /* Adds some space between the description and the gallery */
    max-width: 900px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 40px;
    background-color: #F9F9F9;
    /* Foamy White */
}

.about-content {
    display: flex;
    flex-direction: row;
    gap: 20px;
    /* Space between the image and text */
    align-items: center;
    justify-content: center;
}

.about-img-container {
    flex-shrink: 0;
    max-width: 50%;
}

.about-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.about-text {
    max-width: 600px;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

/* Footer Section */
footer {
    background-color: #C57B3A;
    /* Golden Amber */
    color: white;
    text-align: center;
    padding: 20px 0;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer li {
    display: inline;
    margin-right: 15px;
}

footer li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

footer li a:hover {
    color: #f5a623;
}

footer li i {
    margin-right: 8px;
}

footer li a:hover i {
    color: #f5a623;
}

/* Scroll Hint */
.scroll-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: white;
    opacity: 0.8;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    cursor: pointer;
    animation: bounce 1.5s infinite ease-in-out;
}

/* Keyframes for Scroll Hint Bounce Animation */
@keyframes bounce {

    0%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    50% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
            align-items: flex-start;
            /* Align content to the top */
            padding-top: 20%;
            /* Space from the top of the screen */
            height: 100vh;
        }

    .hero-content {
      max-width: 90%;
      /* Keep it responsive */
      margin: 0 auto;
      /* Center horizontally */
  }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-button {
        padding: 8px 16px;
    }

    .about-content {
        flex-direction: column;
        align-items: center;
    }

    .about-img-container {
        width: 150px;
        margin-bottom: 20px;
    }

    .about-text {
        text-align: center;
    }

    .coming-soon h2 {
        font-size: 2rem;
    }

    .image-gallery .gallery-grid {
        grid-template-columns: 1fr;
    }
     .gallery-description {
        padding: 0 20px;
        /* Add padding on smaller screens */
    }
}