* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    max-width: 100vw;
}

#opening-soon,
#gift-card-shop {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    max-width: 100vw;
    overflow-x: hidden;
}

button {
    border: none;
}

.hidden {
    visibility: hidden !important;
    display: none !important;
}

/* Header styles moved to components/header.css */

.content-container {
    flex: 1;
    padding: 40px 5vw;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-evenly;
    align-items: center;
    box-sizing: border-box;
}

.content-container .content-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.content-container .content-gift {
    gap: 20px;
}

.content-container .content-gift i {
    font-size: 30px;
    border-bottom: solid 1px var(--theme);
    padding-bottom: 20px;
    margin-bottom: -20px;
}

.content-container .content-gift h2 {
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 700;
    font-style: italic;
    text-align: center;
}

.content-container .content-gift h2 span {
    font-size: 50px;
    line-height: 70px;
}

.content-container .content-gift p {
    font-weight: 300;
    margin-bottom: 20px;
    text-align: center;
    line-height: 24px;
}

.content-container .logo {
    width: auto;
    max-height: 300px;
}

.content-container h1 {
    font-size: 24px;
    line-height: 34px;
    text-align: center;
}

/* Footer styles moved to components/footer.css */

@media (min-width: 850px) and (min-height: 700px) {

    html:not(:has(#legal-notices)):not(:has(#gift-card-shop)),
    body:not(:has(#legal-notices)):not(:has(#gift-card-shop)) {
        height: 100%;
        overflow: hidden;
    }

    #opening-soon:not(#gift-card-shop) {
        height: 100vh;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    /* Header & Footer responsive styles moved to their own component files */
    #opening-soon:not(#gift-card-shop) .content-container {
        flex: 1;
        min-height: 0;
        overflow: hidden;
    }

    .content-container .logo {
        max-height: min(300px, 30vh);
        object-fit: contain;
    }

    .content-container .content-item {
        min-height: 0;
    }

    .content-container .content-item h1 {
        font-size: clamp(18px, 3vh, 24px);
        line-height: 1.4;
    }

    .content-container .subtitle {
        font-size: clamp(12px, 2vh, 14px);
        line-height: 1.5;
    }
}

@media (max-width: 850px) {
    body {
        height: auto;
    }

    #opening-soon,
    #gift-card-shop {
        min-height: 100vh;
    }

    .content-container {
        gap: 80px;
        flex-direction: column-reverse;
        padding: 80px 40px;
    }

    .content-container .logo {
        max-height: 250px;
    }

}

@media (max-width: 500px) {

    /* Header mobile responsive styles moved to components/header.css */
    .content-container {
        padding: 60px 20px;
    }

    .content-container .logo {
        max-height: 200px;
    }

    .content-container .content-gift h2 {
        font-size: 18px;
    }

    .content-container .content-gift h2 span {
        font-size: 36px;
        line-height: 60px;
    }

    .content-container .content-gift p {
        font-size: 14px;
    }

    /* Footer mobile responsive styles moved to components/footer.css */
}

#legal-notices {
    display: flex;
    flex-direction: column;
    padding-top: 40px;
    padding-bottom: 0;
    min-height: 100vh;
    overflow-y: visible;
}

#legal-notices .logo-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

#legal-notices .logo-container a {
    display: inline-block;
    transition: opacity 0.3s;
}

#legal-notices .logo-container a:hover {
    opacity: 0.8;
}

#legal-notices .logo-container .logo {
    height: 200px;
}

#legal-notices .legal-notices-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    line-height: 1.8;
}

#legal-notices .legal-notices-container h1 {
    font-size: 32px;
    text-transform: uppercase;
    font-style: italic;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: left;
    color: #ffffff;
}

#legal-notices .legal-notices-container h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 20px 0 10px 0;
    color: #ffffff;
}

#legal-notices .legal-notices-container p,
#legal-notices .legal-notices-container span {
    font-size: 16px;
    color: #c7c7c7;
}

#legal-notices .legal-notices-container h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 15px 0 10px 0;
    color: #ffffff;
}

#legal-notices .legal-notices-container ul {
    list-style-type: disc;
    margin-left: 30px;
    margin-bottom: 15px;
    color: #c7c7c7;
}

#legal-notices .legal-notices-container ul ul {
    list-style-type: circle;
    margin-left: 25px;
    margin-top: 10px;
    margin-bottom: 10px;
}

#legal-notices .legal-notices-container li {
    font-size: 16px;
    color: #c7c7c7;
    margin-bottom: 8px;
    line-height: 1.8;
}

#legal-notices .footer-container {
    margin-top: 60px;
    /* Other footer styles are in components/footer.css */
}