/* AROS.TV Offline Backup Stylesheet */

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #0a0a0a;
    color: #fff;
}

/* Navigation */
.navbar {
    background: #111;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar a:hover,
.navbar a.active {
    color: #ffd700;
}

/* Hero Section */
.hero {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

section {
    margin-bottom: 4rem;
}

/* Page Headers */
.page-header {
    text-align: center;
    padding: 3rem 0;
    border-bottom: 1px solid #333;
    margin-bottom: 3rem;
}

.page-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.page-header h4 {
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 1rem;
}

.page-header p {
    max-width: 800px;
    margin: 0 auto;
    color: #ccc;
}

/* Welcome Section */
.welcome {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(180deg, #111 0%, #0a0a0a 100%);
    border-radius: 10px;
}

.welcome h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #ffd700;
}

.welcome h6 {
    font-size: 1rem;
    color: #888;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.welcome p {
    max-width: 700px;
    margin: 0 auto 2rem;
    color: #ccc;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: #ffd700;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    background: #ffed4a;
    transform: translateY(-2px);
}

/* Production Grid */
.productions h6 {
    text-align: center;
    font-size: 1rem;
    color: #888;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.production-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.production-item {
    overflow: hidden;
    border-radius: 10px;
    background: #1a1a1a;
    transition: transform 0.3s ease;
}

.production-item:hover {
    transform: scale(1.02);
}

.production-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

/* Video Catalog Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.video-item {
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.video-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.video-item h4 {
    padding: 1rem;
    color: #fff;
}

.video-item p {
    padding: 0 1rem 1rem;
    color: #ffd700;
    font-size: 0.9rem;
}

/* Video Banner */
.video-banner {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.video-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-banner h3 {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    font-size: 2rem;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

/* Catalog Grid */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.catalog-item {
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.catalog-item:hover {
    transform: translateY(-5px);
}

.catalog-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.catalog-item h4 {
    padding: 1rem 1rem 0.5rem;
    color: #ffd700;
}

.catalog-item p {
    padding: 0 1rem 1rem;
    color: #888;
    font-size: 0.9rem;
}

/* About Preview */
.about-preview {
    text-align: center;
    padding: 4rem 2rem;
    background: #111;
    border-radius: 10px;
}

.about-preview h6 {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.about-preview h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #ffd700;
}

.about-preview p {
    max-width: 700px;
    margin: 0 auto 2rem;
    color: #ccc;
}

/* Team Grid */
.team {
    text-align: center;
}

.team h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #ffd700;
}

.team h4 {
    color: #888;
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: #1a1a1a;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 150px;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.team-member h5 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.team-member .role {
    color: #ffd700;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.team-member .email a {
    color: #888;
    text-decoration: none;
    font-size: 0.85rem;
}

.team-member .email a:hover {
    color: #ffd700;
}

/* Coming Soon */
.coming-soon {
    text-align: center;
}

.coming-soon h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #ffd700;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    background: #000;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

.video-container h4 {
    padding: 1rem;
    color: #fff;
    background: rgba(0,0,0,0.7);
}

.video-placeholder {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
}

.video-placeholder img {
    width: 100%;
    height: auto;
}

.video-placeholder h4 {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

/* Contact Info */
.contact-info {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
}

.contact-info h4 {
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.contact-details p {
    margin-bottom: 1rem;
}

.contact-details ul {
    list-style: none;
    margin-left: 1rem;
}

.contact-details li {
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: #ffd700;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Newsletter */
.newsletter {
    text-align: center;
    padding: 3rem 2rem;
    background: #111;
    border-radius: 10px;
}

.newsletter h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ffd700;
}

.newsletter p {
    color: #888;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.newsletter-form input {
    padding: 0.8rem 1.5rem;
    border: 1px solid #333;
    border-radius: 5px;
    background: #1a1a1a;
    color: #fff;
    width: 300px;
    max-width: 100%;
}

.newsletter-form button {
    padding: 0.8rem 2rem;
    background: #ffd700;
    color: #000;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #ffed4a;
}

/* Footer */
footer {
    background: #111;
    padding: 2rem;
    text-align: center;
    border-top: 1px solid #333;
    margin-top: 4rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ffd700;
}

footer p {
    color: #666;
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar ul {
        gap: 1rem;
    }
    
    .welcome h2,
    .page-header h2 {
        font-size: 1.8rem;
    }
    
    .production-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .navbar ul {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .production-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form input {
        width: 100%;
    }
}
