/* General Styles */

body {
    margin: 0;
    font-family: "Playfair Display", "Bookman Old Style", serif;
    text-align: center;
    background-color: black;
}

header {
    position: relative;
    background-image: url('images/Barn-backdrop-image.jpeg');
    background-position: top center;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    /* text sits at the bottom */
    padding-bottom: 0px;
    height: 450px;
    color: white;
    font-size: 2em;
    text-align: center;
}

.header-top {
    flex-direction: column;
    text-align: center;
    margin: 0 auto;
}

h1 {
    font-family: "Comic Neue", cursive;
}

.title-group {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.subtitle {
    display: inline-block;
    transform: scaleX(1.6);
    font-family: serif;
    font-size: 0.8em;
    opacity: 0.7;
    margin-top: -0.5em;
    margin-bottom: -0.5em;
    line-height: 1.5;
}

.top-image,
.bottom-image {
    background-color: black;
}


/* Responsive Image Gallery */

.image-gallery {
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px 5%;
    flex-wrap: wrap;
    text-align: center;
    background-color: black;
}


/* Image Items */

.full-image-item img {
    width: 100%;
    max-width: 500px;
    min-width: 150px;
    align-items: center;
    margin: 0 auto;
}

.image-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 30%;
    max-width: 500px;
    min-width: 150px;
    margin: 0 auto;
}

.image-item-wide {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 500px;
    min-width: 150px;
    margin: 0 auto;
}

.image-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    border: 4px solid #8b5a2b;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.menu-container {
    display: flex;
    justify-content: center;
    margin: 0;
    background-color: black;
}

.menu-text {
    display: flex;
    justify-content: center;
    font-size: 1.5em;
    font-weight: 300;
    color: #C5C5C5;
    text-align: left;
    gap: 80px;
    padding: 25px;
    margin: 0;
    background-color: black;
}

.menu-text a {
    color: #C5C5C5;
}

.description-container {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    background-color: black;
    position: relative;
    max-width: 700px;
    padding: 0 1.5rem;
}

.description-text {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 1rem 2rem;
    font-size: 1.5em;
    font-weight: 300;
    color: #C5C5C5;
    text-align: left;
}

.description-text p {
    margin-top: 0;
}

.keyword {
    font-size: 1.2em;
    font-weight: bold;
}

.contact-area {
    position: relative;
    background-color: black;
    color: #C5C5C5;
    font-size: 2.5em;
    text-align: center;
    overflow: hidden;
    padding: 10px;
}


/* Footer */

footer {
    text-align: center;
    padding: 1px;
    background-color: black;
    position: relative;
    z-index: 1;
}

.footer-logo img {
    width: 60px;
    height: auto;
    margin-right: 15px;
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.copyright {
    font-size: 1em;
    white-space: nowrap;
    color: #C5C5C5;
}


/* Mobile devices */

@media (max-width: 768px) {
    .title,
    .subtitle {
        font-size: 0.6em;
        /* Reduce font size for mobile */
        text-align: center;
        /* Ensures centered text on mobile */
    }
    .description-text {
        grid-template-columns: 1fr;
        gap: 2rem 2rem;
    }
    .description-text p {
        margin-bottom: 0;
    }
    .image-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 500px;
        min-width: 150px;
        margin: 0 auto;
    }
    .image-item img {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 500px;
        min-width: 150px;
        margin: 0 auto;
    }
    a[href^="tel"] {
        color: inherit;
    }
    @media (max-width: 1024px) {
        a[href^="tel"] {
            color: inherit;
        }
    }
    @media (max-width: 1366px) {
        a[href^="tel"] {
            color: inherit;
        }
    }
}