@font-face {
    font-family: 'Paradise Point Condensed';
    src: url('../fonts/ParadisePoint-CondensedHeavy.woff2') format('woff2'),
         url('../fonts/Swell Type - Paradise Point Condensed Heavy.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Paradise Point Extended';
    src: url('../fonts/ParadisePoint-ExtendedHeavy.woff2') format('woff2'),
         url('../fonts/Swell Type - Paradise Point Extended Heavy.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Paradise Point Bold';
    src: url('../fonts/ParadisePoint-Bold.woff2') format('woff2'),
         url('../fonts/Swell Type - Paradise Point Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lato Bold';
    src: url('../fonts/Lato-Bold.woff2') format('woff2'),
         url('../fonts/Lato-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --coral: #f05d6f;
    --dark-blue: #1f4478;
}

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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    overflow-x: hidden;
}

.image-carousel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

.banner {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.banner.active {
    opacity: 1;
}

.content {
    min-height: 100vh;
    padding: 2rem;
    padding-top: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.45);
}

.logo {
    position: absolute;
    top: 2rem;
    left: 2rem;
    width: 150px;
    height: auto;
}

h1 {
    font-family: 'Paradise Point Condensed', 'Helvetica Neue', Arial, sans-serif;
    font-size: 4rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: #fffbcc;
    letter-spacing: 0.05em;
    line-height: 0.9;
}

.cta-button {
    background: var(--coral);
    color: #fffbcc;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.5rem;
    margin: 2rem 0;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 3px solid #fffbcc;
    font-family: 'Lato Bold', Arial, sans-serif;
}

.cta-button:hover {
    background: var(--dark-blue);
    transform: scale(1.05);
}

.brand {
    font-family: 'Paradise Point Extended', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    margin: 1rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: #fffbcc;
}

.products {
    font-family: 'Paradise Point Bold', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.2rem;
    max-width: 800px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: #fffbcc;
}

.heading-carousel {
    opacity: 1;
    transition: opacity 1s ease-in-out;
    min-height: 8rem;
}

@media (max-width: 768px) {
    .content {
        padding-top: 130px;
        justify-content: flex-start;
    }

    h1 {
        font-size: 2.5rem;
        margin-top: 1rem;
    }

    .logo {
        width: 100px;
    }

    .cta-button {
        font-size: 1.2rem;
        padding: 0.8rem 1.6rem;
    }

    .products {
        font-size: 1rem;
    }

    .heading-carousel {
        min-height: 5rem;
    }
}

@media (max-width: 480px) {
    .content {
        padding-top: 110px;
    }

    h1 {
        font-size: 1.8rem;
        margin-top: 0.5rem;
    }

    .logo {
        width: 80px;
        top: 1rem;
        left: 1rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 0.7rem 1.4rem;
    }

    .brand {
        font-size: 0.85rem;
    }

    .products {
        font-size: 0.85rem;
    }

    .heading-carousel {
        min-height: 4rem;
    }
}
