/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    background: #faf8f6; /* soft neutral */
    color: #2e2e2e;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: #8a4fff; /* main purple */
    border-bottom: 2px solid #5c4033; /* accent brown */
    flex-wrap: wrap;
}

.navbar .logo img {
    width: 40px;
    height: 40px;
}

.navbar nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    flex-wrap: wrap;
}

.navbar nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s, border-bottom 0.3s;
}

.navbar nav ul li a:hover {
    color: #d9c6f0; /* soft lavender */
}

.navbar nav ul li a.active {
    color: #f4e3d7;
    font-weight: bold;
    border-bottom: 2px solid #a6806a; /* light brown accent */
}

.navbar .profile img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #a6806a;
}

/* Hero Section */
.hero {
    position: relative;
    text-align: center;
}

.hero img {
    width: 100%;
    max-height: 65vh;
    object-fit: cover;
    filter: brightness(0.8);
    border-bottom: 3px solid #8a4fff;
}

.hero-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(92, 64, 51, 0.7); /* soft brown overlay */
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 600;
}

/* Section Titles */
.latest-news h2,
.watch-shows h2,
.team h2 {
    margin-bottom: 15px;
    color: #5c4033; /* earthy brown */
    border-left: 5px solid #8a4fff;
    padding-left: 10px;
    font-size: 1.5rem;
    font-weight: 700;
}

/* News */
.news-box {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000; /* black to match video */
    border-radius: 10px;
    border: 2px solid #e0d6cc;
    overflow: hidden;
    position: relative;
}

.news-item {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Responsive video embed */
.news-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
    object-fit: cover;
}

/* Watch Shows Section */
.watch-shows {
    padding: 40px 5%;
}

.watch-shows h2 {
    margin-bottom: 20px;
    color: #5c4033; /* earthy brown */
    border-left: 5px solid #8a4fff;
    padding-left: 10px;
    font-size: 1.6rem;
    font-weight: 700;
}

/* Grid for show cards */
.shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

/* Individual show cards */
.show-card {
    background: #8a4fff;
    color: #ffffff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

.show-card:hover {
    background: #5c4033; /* brown hover */
    transform: scale(1.05);
}

/* Footer */
.footer {
    padding: 40px 8%;
    background: linear-gradient(135deg, #5c4033, #3a2a47);
    color: #f9f9f9;
    border-top: 3px solid #8a4fff;
    margin-top: 40px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo {
    flex: 1 1 220px;
    max-width: 300px;
}

.footer-logo h3 {
    font-size: 20px;
    color: #d9c6f0;
    margin-bottom: 10px;
}

.footer-logo p {
    font-size: 14px;
    color: #ddd;
    line-height: 1.6;
}

.footer-links {
    flex: 1 1 150px;
    min-width: 120px;
}

.footer-links h4 {
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #d9c6f0;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    text-decoration: none;
    font-size: 14px;
    color: #f9f9f9;
    transition: color 0.3s, padding-left 0.3s;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: #d9c6f0;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    margin-top: 25px;
    font-size: 13px;
    color: #bbb;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 15px;
}



/* Team Section */
.team {
    padding: 40px 5%;
    max-width: 1000px;
    margin: auto;
}

.team h2 {
    margin-bottom: 25px;
    color: #3a2a47; /* deep purple-brown for headers */
    border-left: 5px solid #a020f0;
    padding-left: 10px;
    font-size: 2rem;
    text-align: center;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Landscape card style */
.team-card {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    padding: 15px;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.team-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    margin-right: 20px;
    flex-shrink: 0;
}

.team-card h3 {
    margin: 0;
    color: #5c3d7a; /* purple accent */
    font-size: 1.3rem;
}

.team-card p {
    margin: 5px 0 0;
    color: #555;
    font-size: 0.95rem;
}

/* Community Page */
.community-post-form {
    background: #fff;
    color: #2e2e2e;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
}
.community-post-form textarea {
    background: #faf8f6;
    color: #333;
    border: 1px solid #ccc;
}
.community-post-form button {
    background: #8a4fff;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
}
.community-post-form button:hover {
    background: #5c4033;
}

.post-card {
    background: #fff;
    color: #2e2e2e;
    border: 1px solid #eee;
}

/* Auth Box */
.auth-box {
    background: #fff;
    color: #2e2e2e;
    border: 1px solid #ddd;
}
.btn {
    background: #8a4fff;
    color: #fff;
}
.btn:hover {
    background: #5c4033;
}
