:root {
    --primary-color: #C4A484;
    --text-color: #333;
    --background-color: #fff;
}

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.hero {
    min-height: 100vh;
    background: #1a1a1a;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 2rem 0;
}

.video-container {
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    position: relative;
    padding-bottom: 45%;
    height: 0;
    overflow: hidden;
}

@media (max-width: 768px) {
    .video-container {
        max-width: 100%;
        padding-bottom: 56.25%;
    }
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
}

.logo {
    max-width: 200px;
    margin-bottom: 2rem;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

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

.section {
    padding: 5rem 0;
}

#about {
    background-color: var(--background-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.watch-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    transition: background-color 0.3s;
}

.watch-button:hover {
    background-color: #a88b6e;
}

#contact {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

#contact .container {
    max-width: 600px;
}

#contact h2 {
    margin-bottom: 1.5rem;
}

#contact p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

#contact a {
    color: white;
    text-decoration: none;
    border-bottom: 1px solid white;
    transition: opacity 0.3s;
}

#contact a:hover {
    opacity: 0.8;
}

footer {
    background-color: #333;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 2.5rem;
    }
}
