/* --- General Setup & Variables --- */
:root {
    --primary-green: #295a38;
    --primary-yellow: #f2e900;
    --text-light: #ffffff;
    --text-dark: #222222;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary-green);
    color: var(--text-light);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- Header & Navigation --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo-background {
    background-color: var(--primary-yellow);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-image {
    width: 90%;
    height: auto;
}

.logo-text h1 {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.logo-text p {
    font-size: 0.8rem;
    font-weight: 400;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

nav a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

nav a:hover {
    opacity: 0.8;
}

.signup-button {
    background-color: var(--primary-yellow);
    color: var(--text-dark);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
}

/* --- Hero Section --- */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
}

.hero-text h2 {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.start-watching-button {
    display: inline-block;
    background-color: var(--primary-yellow);
    color: var(--text-dark);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.start-watching-button:hover {
    transform: scale(1.05);
}

/* --- Hero Image and 'Live' elements --- */
.hero-image-container {
    position: relative;
}

.live-icon-group {
    position: absolute;
    top: -20px;
    left: 20px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.camera-icon {
    width: 60px;
    height: 60px;
    color: var(--primary-green);
    background-color: #ffffff;
    border-radius: 50%;
    padding: 10px;
}

.live-badge {
    background-color: var(--primary-yellow);
    color: var(--text-dark);
    padding: 0.6rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
}

.image-wrapper {
    /* This creates the unique angled shape */
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%, 0 15%);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}


/* --- Responsive Design for smaller screens --- */
@media (max-width: 992px) {
    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        order: 2; /* Move text below image */
    }

    .hero-image-container {
        order: 1; /* Move image above text */
        margin-bottom: 2rem;
    }

    header {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-text h2 {
        font-size: 2.5rem;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .logo-area {
        flex-direction: column;
        text-align: center;
    }
}