/* Reset some default styles */
body, h1, h2, p {
    margin: 0;
    padding: 0;
}

/* Set the background image to cover the viewport */
.background-container {
    position: relative;
    width: 100%;
    max-width: 1920px;
    height: 0;
    padding-bottom: 56.25%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('images/img1.jpg');
    background-size: 101% auto;
    background-position: center;
    overflow: hidden;
}

.logo-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 30%;

}

/* Center the logo */
.logo {
    max-width: 100%;
    height: auto;

}


/* Style the header text */
.header-text {
    position: absolute;
    top: 6%; /* Adjust as needed */
    left: 5%;
    width: 112%;
    text-align: left;
    color: #fafafa; /* Set your desired text color */
    font-size: 1.3vw;
}

.row {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.column {
    flex: 1;
    padding-left: 0%;
    text-align: left;
}

body {
    max-width: 1920px;
    margin: 0 auto; /* Centers the site horizontally */
    background-color: #fafafa;
    font-family: 'Bodoni', serif; /* Set the font family to Bodoni */
    

}

/* Shop Section */
.shop-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8vw 6%;
    background-color: #fafafa;
}

.shop-card {
    display: flex;
    align-items: center;
    gap: 8vw;
    max-width: 1200px;
}

.shop-image {
    flex: 1;
    position: relative;
}

.shop-image img {
    width: 100%;
    max-width: 550px;
    height: auto;
    display: block;
    filter: drop-shadow(12px 12px 30px rgba(0, 0, 0, 0.35));
}

.shop-info {
    flex: 1;
}

.shop-info h2 {
    font-family: 'Bodoni', serif;
    font-size: 2.5vw;
    font-weight: normal;
    margin-bottom: 1vw;
}

.shop-description {
    font-family: 'Inter';
    font-size: 1.1vw;
    line-height: 1.6;
    margin-bottom: 1.5vw;
    color: #333;
}

.shop-price {
    font-family: 'Bodoni', serif;
    font-size: 2vw;
    margin-bottom: 1.5vw;
}

.shop-buttons {
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.shop-button {
    display: inline-block;
    padding: 0.8vw 2.5vw;
    background-color: #000;
    color: #fafafa;
    text-decoration: none;
    font-family: 'Inter';
    font-size: 1vw;
    letter-spacing: 0.1em;
    border: 1px solid #000;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.shop-button:hover {
    background-color: #fff;
    color: #000;
}


/*Styles the section*/
.section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vw;
    background-color: #fafafa;
    /*box-sizing: border-box; /*includes padding in section's total width/height */
    padding-left: 6%;
    padding-right: 6%;
}

/*Styles the column in the section*/
.section .column {
    flex: 1;
    text-align: left;
    padding: 0px;
    position: relative;
    margin: 0 0px;
}

/*Styles the text in the column*/
.section .column h2 {
    font-family: 'Bodoni', serif; /* Set the font family to Bodoni */
    font-size: 2vw; /* Set your desired font size*/
    font-weight: normal; /* Set the font weight to normal (not bold) */
    margin-bottom: 1.7vw;
   
}

.section .column small {
    font-family: 'Inter'; /* Set the font family to Inter*/
    font-size: 1.1vw; /* Set your desired font size*/

}

.section-text {
    max-width: 65%;
    line-height: 1.4vw;

    
}

/* Styles the images in the column */
.section .column img {
    max-width: 125%;
    height: auto;
    display: block;
    margin: 0px;
    max-height: auto; /* Adjust as needed to control image height */
    width: auto;
    position: absolute;
    left: -20%;
    top: 0;
    transform: translateY(-51%);
}

.footer {
    background-color: #000; /* Set the background color for the footer */
    color: #fafafa; /* Set text color for footer text */
    text-align: center;
    padding: 20px 0; /* Add vertical padding to the footer */
    margin-top: 15vw;

}

.footer-container {
    margin-top: 1.5vw;
    display: flex;
    flex-wrap: wrap; /* Allow columns to wrap to the next line on small screens */
    justify-content: center;

}

.footer-column {
    flex: 1;
    font-size: 2vw;
    margin-top: 20px;
}

.footer a {
    color: #fafafa; /* Set link color */
    text-decoration: none;
}

.footer-logo {
    margin: 100px; /* Add space between columns and the logo */
}

.footer-logo img {
    max-width: 18vw; /* Set the maximum width for the logo */
    height: auto;
}

/* Small desktop / large tablet */
@media screen and (min-width: 769px) and (max-width: 1100px) {
    .section {
        height: auto;
        min-height: 40vw;
        margin-bottom: 8vw;
    }

    .section .column img {
        position: relative;
        max-width: 100%;
        left: 0;
        transform: none;
    }

    .section .column h2 {
        font-size: 2.5vw;
    }

    .section .column small {
        font-size: 1.5vw;
    }

    .section-text {
        max-width: 90%;
        line-height: 2vw;
    }

    .shop-info h2 {
        font-size: 3vw;
    }

    .shop-description {
        font-size: 1.5vw;
    }

    .shop-button {
        font-size: 1.3vw;
        padding: 1vw 3vw;
    }

    .header-text {
        font-size: 1.6vw;
    }

    .footer-column {
        font-size: 2.5vw;
    }
}

/* Mobile styles */
@media screen and (max-width: 768px) {

    /* Hero */
    .background-container {
        padding-bottom: 148%;
        background-size: cover;
        background-position: center;
        clip-path: inset(0 0 10px 0);
    }

    .logo-container {
        max-width: 60%;
        top: 25%;
    }

    .header-text {
        font-size: 3.5vw;
        top: 52%;
        left: 6%;
        width: 90%;
        text-align: left;
    }

    .row {
        flex-direction: column;
        align-items: flex-start;
    }

    .row .column {
        text-align: left;
        margin-bottom: 3vw;
    }

    /* Shop section */
    .shop-section {
        padding: 22vw 8% 30vw 8%;
    }

    .shop-card {
        flex-direction: column;
        gap: 8vw;
    }

    .shop-image {
        text-align: center;
    }

    .shop-image img {
        max-width: 60%;
        margin: 0 auto;
    }

    .shop-info {
        text-align: center;
    }

    .shop-info h2 {
        font-size: 7vw;
        margin-bottom: 3vw;
    }

    .shop-description {
        font-size: 3.8vw;
        line-height: 1.5;
        margin-bottom: 4vw;
    }

    .shop-buttons {
        gap: 3vw;
    }

    .shop-button {
        font-size: 4vw;
        padding: 3.5vw 6vw;
        text-align: center;
    }

    /* Content sections */
    .section {
        flex-direction: column-reverse;
        height: auto;
        padding: 0;
        padding-top: 14vw;
        padding-bottom: 14vw;
        overflow: hidden;
    }

    .section .column {
        position: static;
        text-align: center;
        padding: 0 8%;
    }

    .section .column img {
        position: static;
        transform: none;
        width: 100vw;
        max-width: none;
        margin-left: calc(-50vw + 50%);
        left: auto;
        margin-bottom: 20vw;
        display: block;
    }

    .section .column h2 {
        font-size: 5vw;
        font-weight: 300 !important;
        margin-bottom: 4vw;
    }

    .section .column small {
        font-size: 3.8vw;
        line-height: 1.5;
        font-weight: 300;
    }

    .section-text {
        max-width: 100%;
        line-height: 6vw;
    }

    /* Address section */
    .section-address {
        padding: 0 !important;
    }

    .section-address .column:first-child {
        padding: 20vw 8% 6vw 8% !important;
    }

    .section-address .column:last-child img {
        margin-bottom: 0 !important;
    }

    /* Thin text everywhere on mobile */
    h2, h3, p, a, small, .shop-info h2, .shop-description, .shop-button {
        font-weight: 300 !important;
    }

    /* Footer */
    .footer {
        margin-top: 2vw;
        padding: 16vw 0;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 4vw;
    }

    .footer-column {
        font-size: 3.8vw;
        font-weight: 200;
        margin-top: 0;
        letter-spacing: 0.05em;
    }

    .footer-column a,
    .footer-column p {
        font-weight: 200;
    }

    .footer-logo {
        margin: 14vw 40px 0 40px;
    }

    .footer-logo img {
        max-width: 35vw;
    }
}


