* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #f3f1ec;
    color: #202020;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}


/* TOP BAR */

.top-bar {
    position: sticky;
    top: 0;
    z-index: 100;

    min-height: 70px;
    padding: 12px 7%;

    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid #d8d5ce;

    display: flex;
    align-items: center;
    justify-content: space-between;

    backdrop-filter: blur(8px);
}

.site-name {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 18px;
    font-weight: bold;
}

.site-name img {
    width: 38px;
    height: 38px;

    object-fit: cover;
    border-radius: 50%;

    border: 2px solid #202020;
}

nav {
    display: flex;
    gap: 22px;
}

nav a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

nav a:hover {
    text-decoration: underline;
}


/* HERO */

.hero {
    max-width: 1100px;
    margin: 0 auto;

    min-height: 620px;
    padding: 90px 7%;

    display: flex;
    align-items: center;
    gap: 70px;
}

.hero-image {
    flex-shrink: 0;
}

.hero-image img {
    width: 230px;
    height: 230px;

    object-fit: cover;
    border-radius: 50%;

    border: 7px solid white;

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.12);
}

.small-heading,
.section-label {
    margin: 0 0 10px;

    font-size: 12px;
    font-weight: bold;

    letter-spacing: 2px;
    color: #777;
}

.hero h1 {
    margin: 0 0 18px;

    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.05;
}

.hero h1 span {
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 7px;
}

.intro {
    max-width: 620px;
    font-size: 18px;
    color: #555;
}

.buttons {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}

.button {
    display: inline-block;

    padding: 11px 19px;

    border-radius: 7px;

    text-decoration: none;
    font-weight: bold;

    transition: transform 0.15s ease,
                box-shadow 0.15s ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.youtube-button {
    background: #202020;
    color: white;
}

.tiktok-button {
    background: white;
    color: #202020;

    border: 1px solid #ccc;
}


/* RANDOM IMAGE STRIP */

.random-images {
    max-width: 1200px;
    margin: 0 auto 80px;

    padding: 20px;

    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;

    align-items: center;
}

.random-images img {
    width: 100%;
    height: 180px;

    object-fit: cover;

    border-radius: 10px;
}

.random-text {
    padding: 20px;

    background: white;
    border: 1px solid #ddd9d1;
    border-radius: 10px;

    font-style: italic;
    color: #666;
}


/* CHANNEL SECTIONS */

.channel-section {
    max-width: 1050px;
    margin: 0 auto 80px;

    padding: 55px;

    background: white;

    border: 1px solid #ddd9d1;
    border-radius: 14px;

    display: flex;
    align-items: center;
    gap: 60px;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.channel-picture {
    width: 190px;
    flex-shrink: 0;

    text-align: center;
}

.channel-picture img {
    width: 170px;
    height: 170px;

    object-fit: contain;
}

.channel-content {
    flex: 1;
}

.channel-content h2 {
    margin: 0 0 15px;

    font-size: 44px;
}

.channel-content p {
    color: #5a5a5a;
}

.channel-link {
    display: inline-block;

    margin-top: 12px;

    color: #202020;
    font-weight: bold;

    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.channel-link:hover {
    opacity: 0.65;
}


/* ABOUT */

.about {
    max-width: 850px;

    margin: 0 auto;

    padding: 20px 7% 100px;
}

.about-box {
    background: #202020;
    color: white;

    border-radius: 14px;

    padding: 55px;
}

.about-box .section-label {
    color: #aaa;
}

.about-box h2 {
    margin-top: 0;

    font-size: 40px;
}

.about-box p {
    color: #ddd;
}

.tiny-note {
    margin-top: 35px;

    font-size: 12px;
    color: #999 !important;
}


/* FOOTER */

footer {
    padding: 45px 20px;

    background: white;

    border-top: 1px solid #d8d5ce;

    text-align: center;
}

.footer-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    font-weight: bold;
}

.footer-profile img {
    width: 35px;
    height: 35px;

    object-fit: cover;

    border-radius: 50%;
}

footer p {
    color: #666;
}

footer .copyright {
    margin-top: 25px;
    font-size: 12px;
    color: #999;
}


/* MOBILE */

@media (max-width: 760px) {

    .top-bar {
        padding: 10px 5%;
    }

    nav {
        gap: 10px;
    }

    nav a {
        font-size: 12px;
    }

    .hero {
        min-height: auto;

        padding-top: 70px;
        padding-bottom: 70px;

        flex-direction: column;
        text-align: center;

        gap: 35px;
    }

    .hero-image img {
        width: 180px;
        height: 180px;
    }

    .buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .random-images {
        grid-template-columns: 1fr;

        padding: 20px;
        margin-bottom: 50px;
    }

    .random-images img {
        height: 220px;
    }

    .channel-section {
        margin-left: 5%;
        margin-right: 5%;

        padding: 35px 25px;

        flex-direction: column;

        text-align: center;

        gap: 30px;
    }

    .tiktok-section {
        flex-direction: column-reverse;
    }

    .channel-picture img {
        width: 130px;
        height: 130px;
    }

    .channel-content h2 {
        font-size: 36px;
    }

    .about {
        padding-left: 5%;
        padding-right: 5%;
    }

    .about-box {
        padding: 35px 25px;
    }

    .about-box h2 {
        font-size: 32px;
    }
}