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

html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
    background: #111;
}

/* SLIDESHOW */
.slideshow {
    position: relative;
    width: 100%;
    height: 100svh;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    opacity: 0;
    z-index: 0;

    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

/* OVERLAY */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.18);
    z-index: 3;
}

/* BRAND */
.brand-overlay {
    position: absolute;
    top: 24px;
    left: clamp(24px, 6vw, 90px);
    z-index: 5;
    pointer-events: none;
}

.logo {
    width: clamp(100px, 12vw, 160px);
    height: auto;
    opacity: 0.95;
}

/* CONTENT */
.content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 60px;

    display: flex;
    justify-content: flex-start;

    padding-left: clamp(24px, 6vw, 90px);
    z-index: 4;
}

/* GLASS PANEL */
.glass-panel {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.20);

    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);

    padding: 26px;
    border-radius: 18px;

    width: clamp(260px, 35vw, 330px);

    display: flex;
    flex-direction: column;
    gap: 0px;
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.25);
}

/* TEXT */

.glass-panel h1 {
    font-family: "Century Gothic", "Avenir", sans-serif;
    font-weight: 300;
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 6px !important;
    line-height: 1.05;
}

.glass-panel p {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
    color: white;
    line-height: 1.4;
    margin-bottom: 15px;
}

/* BUTTONS */

.button-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;

    justify-content: center;   /* THIS centers the buttons */
    align-items: center;
}

.button {
    padding: 12px 18px;
    border: 1px solid rgba(255,255,255,0.8);
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.3s ease;
}

.button:hover {
    background: white;
    color: black;
}

/* MOBILE */
@media (max-width: 768px) {

    .content {
        justify-content: center;
        padding-left: 0;
        bottom: 24px;
    }

    .glass-panel {
        width: 90%;
        max-width: 340px;
        padding: 18px;
    }

    .glass-panel h1 {
        font-size: 1.75rem;
    }

    .glass-panel p {
        font-size: 0.9rem;
    }

/* LARGE SCREENS */
@media (min-width: 1800px) {
    .glass-panel {
        width: 420px;
    }
}