* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: sans-serif;
    color: white;
    overflow-x: hidden; /* Prevents horizontal scroll */
}

/* NAVBAR */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(20, 20, 20, 0.1); /* Low black, opaque, no fade */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 2rem 1.2rem 2rem;
    z-index: 1000;
    border-bottom: none;
    box-shadow: none;
    transition: background 0.3s;
}

nav .logo { 
    font-weight: bold; 
    font-size: 1.5rem; 
    flex: 0 1 auto; /* Ensure the logo stays on the left */
}

nav .menu {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center; /* Center the menu items */
    flex: 1; /* Ensure the menu takes up the remaining space */
}

.dropdown {
    position: relative;
}
.dropdown:hover .drop-items {
    display: block;
}

.drop-items {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.2); /* Low opacity white */
    backdrop-filter: blur(12px);           /* Blur effect */
    -webkit-backdrop-filter: blur(20px);
    padding: 0.5rem;
    min-width: 120px;
    border-radius: 8px; /* Friendly border radius */
}

.drop-items a {
    display: block;
    padding: 0.5rem;
    text-decoration: none;
    color: white;
}
nav a {
    color: white;
    text-decoration: none;
    border-radius: 8px; /* Friendly border radius */
    padding: 0.5rem 1rem;
    transition: background-color 0.3s;
}
nav a:hover {
    background-color: rgba(255, 255, 255, 0.1); /* Light hover effect */
}

/* HERO SECTION */
.section.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: url('images/background_long.png') no-repeat center center/cover;
    height: 100vh;
    padding: 4rem;
}

.hero-left {
    margin-left: 10vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: auto;
    width: 33.33vw;
    min-width: 250px;
    gap: 1rem;
}

.hero-left img {
    max-width: 520px;
    width: 100%;
    height: auto;
}

.play-btn {
    margin-top: auto;
    padding: 1rem 2rem;
    background: rgb(255, 255, 255);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 10px; /* Friendly border radius */
}
.hero-right img {
    max-height: 90vh;
}

/* IN PROGRESS SECTION */
.section.progress {
    background: url('bg2.jpg') no-repeat center center/cover;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    font-weight: bold;
}

/* LANDSCAPE CAROUSELS */
.section.carousel-landscape {
    background: black;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    width: 100vw;
    max-width: 100vw;
    align-items: center;
    padding-bottom: 15vh;
}

.carousel {
    display: flex;
    overflow-x: auto;
    position: relative;
    width: 100%;
    max-width: 100vw;
    justify-content: center;
    scrollbar-width: none;
}
.carousel::-webkit-scrollbar {
    display: none;
}

.carousel-track {
    display: flex;
    width: max-content;
}

.card {
    width: 320px;
    height: 180px;
    background: gray;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    margin: 5px;
}

/* FOLLOW JOURNEY SECTION */
.section.follow {
    background: #111;
    padding: 4rem 2rem;
    text-align: center;
}
.section.follow h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}
.carousel-portrait {
    display: flex;
    overflow: hidden;
    justify-content: center;
}
.carousel-track-portrait {
    display: flex;
    animation: scroll 25s linear infinite;
    gap: 1rem;
}
.portrait {
    width: 180px;
    height: 320px;
    background: #555;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    border-radius: 10px; /* Friendly border radius */
}
.tiktok-btn {
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: #111;
    color: white;
    border: 2px solid white;
    cursor: pointer;
    border-radius: 10px; /* Friendly border radius */
}

/* FOOTER */
footer {
    background: #000;
    color: white;
    padding: 3rem 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
footer .logo {
    font-size: 1.5rem;
    font-weight: bold;
}
footer .links {
    display: flex;
    gap: 4rem;
}
footer .col h4 {
    margin-bottom: 1rem;
}
footer .col a {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    border-radius: 8px; /* Friendly border radius */
    padding: 0.5rem 1rem;
    transition: background-color 0.3s;
}
footer .col a:hover {
    background-color: rgba(255, 255, 255, 0.1); /* Light hover effect */
}
footer .socials {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}
.socials a {
    width: 32px;
    height: 32px;
    display: inline-block;
    border-radius: 8px;
    /* Remove text-indent and background if using images */
    overflow: hidden; /* Optional: ensures image stays inside */
    vertical-align: middle;
}
.socials a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}