/* Base Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #fcfcfc;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

/* Hero Section */
.hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2)), url('images/sarah.jpg'); 
    background-size: cover;
    background-position: center 0%;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: flex-start;
    padding-top: 40px;
}

.logo-area {
    color: #e5a93b;
    font-family: 'Georgia', serif;
}

.main-title {
    font-size: 3.5rem;
    font-weight: bold;
    letter-spacing: -1px;
    line-height: 0.9;
}

.subtitle {
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: lowercase;
    padding-left: 5px;
}

/* Welcome Section */
.welcome-section {
    background-color: #f7be4d;
    padding: 40px 0;
    color: #1a365d;
}

.welcome-section h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.welcome-section p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.social-links a {
    transition: opacity 0.2s;
}

.social-links a:hover {
    opacity: 0.7;
}

.email, .spotlight, .instagram, .imdb, .Linkedin, .ADA {
    width: 100%; 
    height: 50px
}



/* Audio Section */
.audio-section {
    background-color: #fff;
    padding: 60px 0;
}

.audio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 950px;
}

.audio-card {
    text-align: center;
}


.audio-title {
    color: #1a365d;
    font-size: 0.85rem;
}


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

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 950px;
}

.video-card {
    text-align: center;
}

.video-placeholder {
    background-color: #1a1a1a;
    border: 1px solid #333;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.video-placeholder video {
    width: 100%;
}

.video-title {
    color: #888;
    font-size: 0.85rem;
}

/* Responsive Breakpoints */
@media (max-width: 850px) {
    .audio-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 500px;
    }
    .video-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 500px;
    }
    
    .main-title {
        font-size: 2.8rem;
    }
    
    .welcome-section h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 35vh;
        min-height: 200px;
    }
    
    .main-title {
        font-size: 2.2rem;
    }
    
    .social-links {
        flex-direction: column;
        gap: 15px;
    }

    .email, .spotlight, .instagram, .imdb, .Linkedin, .ADA {
    width: 100%; 
    height: 30px
}
}