/* Google Fonts Import: Playpen Sans - Extra Light (weight 200) and Regular (weight 400) */
@import url('https://fonts.googleapis.com/css2?family=Playpen+Sans:wght@200;400&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: white;
    color: #333;
    min-height: 100vh;
}

/* Header and Navigation */
.navbar {
    background: white;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #f0f0f0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.logo {
    height: 70px;
    width: auto;
    border-radius: 8px;
}

.brand-text {
    /* Font is now imported and ready to use */
    font-family: 'Playpen Sans', cursive; 
    /* This line applies the "Extra Light" style */
    font-weight: 200; 
    font-size: 1.8rem;
    color: #333;
    margin: 0;
    margin-left: 1cm;
}

/* Main content area */
main {
    margin-top: 100px;
    min-height: calc(100vh - 100px);
    background: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Video Section */
.video-section {
    padding: 60px 0;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.video-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-item video {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    background: #f8f9fa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        height: 50px;
    }
    
    .brand-text {
        font-size: 1.4rem;
        margin-left: 0.7cm;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    main {
        margin-top: 90px;
        min-height: calc(100vh - 90px);
    }
    
    .video-section {
        padding: 40px 0;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .video-item video {
        max-width: 100%;
        border-radius: 8px;
    }
}