* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #dcdcdc;
    color: #000;
}

/* ====================== HEADER ====================== */
header {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    z-index: 10;
}

.logo {
    font-weight: 700;
    font-size: 22px;
}

nav a {
    margin-left: 25px;
    color: white;
    font-weight: 500;
    font-size: 14px;
    opacity: 0.85;
    text-decoration: none;
}

nav a:hover {
    opacity: 0.55;
}

.icon {
    width: 18px;
}

/* ====================== BANNER ====================== */
.banner img {
    width: 100%;
}

.banner-title {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.banner-title h1 {
    font-size: 45px;
    font-weight: 600;
}

.banner-title p {
    font-size: 14px;
    margin-top: 3px;
    letter-spacing: 4px;
}

/* ====================== SECTIONS ====================== */
.section {
    width: 100%;
    max-width: 900px;
    margin: 60px auto;
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 20px;
}

.center {
    flex-direction: column;
    text-align: center;
}

.left-image {
    width: 40%;
}

.center-image {
    width: 60%;
    margin: 20px 0;
}

.center-image.small {
    width: 45%;
}

.text-block {
    width: 60%;
}

.text-block h2 {
    font-size: 22px;
    font-weight: 700;
}

.subtitle {
    margin-top: 5px;
    font-size: 18px;
    opacity: 0.7;
}


.grandpa-subtitle {
    margin-top: -15px; /* pull it closer */
    font-size: 18px;
    opacity: 0.7;
}


.quote {
    margin-top: 15px;
    font-style: italic;
    margin-top: -10px;
}

.buy-btn {
    background: black;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 20px;
    margin-top: 10px;
    display: inline-block;
}

/* ====================== VIDEO ====================== */
.video-section {
    width: 50%;
    max-width: 900px;
    margin: 60px auto;
    text-align: center;
}

video {
    width: 100%;
    border-radius: 6px;
    background: black;
}

.video-controls {
    margin-top: 15px;
}

.video-controls button {
    margin: 0 8px;
    padding: 10px 16px;
    font-size: 18px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    background: black;
    color: white;
}

.below-video {
    margin-top: 15px;
    font-size: 14px;
}

/* ====================== FOOTER ====================== */
footer {
    margin-top: 60px;
    background: black;
    color: white;
    text-align: center;
    padding: 40px 0;
}

.footer-links a {
    margin: 0 10px;
    font-size: 14px;
    opacity: 0.8;
    text-decoration: none;
}

.email {
    margin-top: 5px;
    font-size: 12px;
    opacity: 0.8;
}

.footer-icons {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
}


/* Make footer links white (not blue) */
footer a {
    color: white !important;
    text-decoration: none;
    opacity: 0.85;
}

footer a:hover {
    opacity: 0.55;
}

/* Ensure footer icons stay clickable */
.footer-icons a {
    display: inline-block;
}

.footer-icon {
    width: 20px;
    cursor: pointer;
}




/* ================= MOBILE HEADER (up to 430px width) ================= */
@media (max-width: 430px) {
    header {
        flex-direction: column;      /* stack logo + nav */
        align-items: center;         /* center everything */
        padding: 15px 10px;
        gap: 10px;                   /* spacing between logo and nav */
    }

    .logo {
        font-size: 20px;             /* smaller logo text */
        margin-bottom: -5px;
    }

    nav {
        display: flex;
        flex-wrap: wrap;             /* wrap links to next line */
        justify-content: center;     /* center links */
        gap: 10px;                   /* spacing between links */

    }

    nav a {
        font-size: 12px;             /* smaller links */
        margin-left: 0;              /* reset margin */
    }

    .icon {
        width: 16px;                 /* smaller icon */
        height: auto;
    }
}
