/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.main-header {
    background-color: #4a4a4a;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 30px;
    height: 30px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a4a4a;
    font-size: 18px;
    font-weight: bold;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    letter-spacing: 2px;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #cccccc;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 70vh;
    background-image: url('https://images.unsplash.com/photo-1513694203232-719a280e022f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
}

.hero-title {
    font-size: 64px;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 32px;
    font-weight: 300;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

/* Welcome Section */
.welcome-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.welcome-icon {
    width: 60px;
    height: 60px;
    background-color: #d4a574;
    border: 2px solid #8b6f47;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b6f47;
    font-size: 24px;
    font-weight: bold;
}

.welcome-title {
    font-size: 48px;
    font-weight: bold;
    color: #000000;
    text-align: center;
    margin-bottom: 50px;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
}

.video-wrapper {
    background-color: #000000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-thumbnail {
    width: 100%;
    height: 450px;
    background-image: url('https://images.unsplash.com/photo-1529156069898-49953e39b3ac?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.video-logo {
    background-color: #ff8a80;
    padding: 20px 40px;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.video-logo-main {
    font-size: 36px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.video-logo-sub {
    font-size: 18px;
    color: #ffffff;
    font-weight: 500;
}

.play-button-large {
    width: 80px;
    height: 80px;
    background-color: #ff0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 32px;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.play-button-large:hover {
    transform: scale(1.1);
}

.video-controls {
    display: flex;
    gap: 20px;
    padding: 15px 20px;
    background-color: #1a1a1a;
    border-top: 1px solid #333333;
}

.video-control-item {
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.video-control-item:hover {
    color: #cccccc;
}

.video-footer {
    padding: 15px 20px;
    background-color: #1a1a1a;
    border-top: 1px solid #333333;
}

.watch-youtube-btn {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.watch-youtube-btn:hover {
    color: #ff0000;
}

/* Footer */
.site-footer {
    background-color: #f5f5f5;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

.footer-copyright {
    font-size: 16px;
    color: #333333;
    margin-bottom: 10px;
}

.footer-wordpress {
    font-size: 12px;
    color: #999999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.footer-wordpress::before {
    content: '□';
    font-size: 14px;
    color: #cccccc;
}

.footer-wordpress::after {
    content: '□';
    font-size: 14px;
    color: #cccccc;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 24px;
    }
    
    .welcome-title {
        font-size: 36px;
    }
    
    .video-thumbnail {
        height: 350px;
    }
    
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .welcome-title {
        font-size: 28px;
    }
    
    .video-thumbnail {
        height: 250px;
    }
    
    .video-logo-main {
        font-size: 24px;
    }
    
    .video-logo-sub {
        font-size: 14px;
    }
    
    .play-button-large {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}
