/* Import Horizon Regular font */
@font-face {
    font-family: 'Horizon';
    src: url('horizon-webfont.woff2') format('woff2'),
         url('horizon-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* Import Glacial Indifference font */
@font-face {
    font-family: 'Glacial Indifference';
    src: url('https://db.onlinewebfonts.com/t/1c1c5b1d1a1a1a1a1a1a1a1a1a1a1a1a.eot');
    src: url('https://db.onlinewebfonts.com/t/1c1c5b1d1a1a1a1a1a1a1a1a1a1a1a1a.eot?#iefix') format('embedded-opentype'),
         url('https://db.onlinewebfonts.com/t/1c1c5b1d1a1a1a1a1a1a1a1a1a1a1a1a.woff2') format('woff2'),
         url('https://db.onlinewebfonts.com/t/1c1c5b1d1a1a1a1a1a1a1a1a1a1a1a1a.woff') format('woff'),
         url('https://db.onlinewebfonts.com/t/1c1c5b1d1a1a1a1a1a1a1a1a1a1a1a1a.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

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

:root {
    --primary-red: #7f2f2f;
    --dark-red: #5a1f1f;
    --light-red: #a04f4f;
    --charcoal: #2b2724;
    --light-gray: #e0e0e0;
    --dark-charcoal: #1e1b18;
}

body {
    font-family: 'Raleway', sans-serif;
    background: linear-gradient(135deg, var(--charcoal), var(--primary-red));
    color: var(--light-gray);
    line-height: 1.7;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    font-weight: 400;
}

/* Dark noise texture overlay */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: 300px 300px;
    z-index: -1;
    opacity: 0.15;
    pointer-events: none;
}

/* Parallax sections */
.parallax-section {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 1rem;
    animation-timing-function: ease;
}

.section-content {
    max-width: 1200px;
    width: 100%;
    padding: 1.5rem;
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Background layers for parallax effect */
.bg-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: translateZ(-1px) scale(1);
    opacity: 0.2;
}

/* Lava */
.bg-layer-1 { 
    background-image: url('../src/pexels-atlantic-opus-878507985-20849160.jpg');
    transform: translateZ(-2px) scale(2);
}

/* Church */
.bg-layer-2 { 
    background-image: url('../src/pexels-michael-d-beckwith-2150568551-31269856.jpg');
    transform: translateZ(-3px) scale(3);
}

/* Logo Section */
.logo-section {
    background: linear-gradient(135deg, rgba(30, 27, 24, 1), rgba(127, 47, 47, 0.5));
}

.logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.logo-image {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    display: block;
    filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.8));
}

.logo-container::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: var(--primary-red);
}

.tagline {
    font-family: 'Glacial Indifference', sans-serif;
    font-size: 1.8rem;
    max-width: 800px;
    margin: 2rem auto 0;
    color: rgba(224, 224, 224, 0.9);
    padding: 1.5rem 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: normal;
}

/* Description */
.description-section {
    background: linear-gradient(135deg, rgba(30, 27, 24, 1), rgba(127, 47, 47, 0.5));
}

.description {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    background: rgba(43, 39, 36, 0.7);
    border: 1px solid rgba(127, 47, 47, 0.4);
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.description p {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    line-height: 1.8;
}

.highlight {
    color: var(--light-red);
    font-weight: 600;
}

/* Video Section */
.video-section {
    background: linear-gradient(135deg, rgba(30, 27, 24, 1), rgba(127, 47, 47, 0.5));
}

.video-title {
    font-family: 'Glacial Indifference', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    border: 2px solid var(--primary-red);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--charcoal), var(--primary-red));
    pointer-events: none;
    z-index: -2;
}

.video-container iframe {
    width: 100%;
    height: 450px;
    display: block;
    border: none;
}

/* Streaming Section */
.streaming-section {
    background: linear-gradient(135deg, rgba(30, 27, 24, 1), rgba(127, 47, 47, 0.5));
}

.section-title {
    font-family: 'Glacial Indifference', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--primary-red);
}

.platforms {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
    max-width: 900px;
    margin: 0 auto;
}

.platform {
    flex: 0 0 calc(20% - 1.2rem);
    max-width: 160px;
    background: rgba(43, 39, 36, 0.8);
    border: 1px solid rgba(127, 47, 47, 0.4);
    border-radius: 5px;
    padding: 1.2rem 0.8rem;
    transition: all 0.3s ease;
}

.platform:hover {
    transform: translateY(-5px);
    border-color: var(--light-red);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    background: rgba(43, 39, 36, 1);
}

.platform i {
    font-size: 2.2rem;
    color: var(--light-red);
    margin-bottom: 0.8rem;
}

.platform-name {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.platform-btn {
    display: inline-block;
    background: var(--primary-red);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    text-decoration: none;
    border-radius: 3px;
    transition: background 0.3s ease;
    border: 1px solid rgba(127, 47, 47, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.platform-btn:hover {
    background: var(--dark-red);
}

/* Social Section */
.social-section {
    background: linear-gradient(135deg, rgba(30, 27, 24, 1), rgba(127, 47, 47, 0.5));
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(43, 39, 36, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--light-red);
    transition: all 0.3s ease;
    border: 1px solid rgba(127, 47, 47, 0.4);
}

.social-icon:hover {
    background: var(--primary-red);
    transform: translateY(-5px);
    color: white;
    border-color: var(--primary-red);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, rgba(30, 27, 24, 1), rgba(127, 47, 47, 0.5));
}

.contact-section .section-content {
    max-width: 800px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(43, 39, 36, 0.8);
    border: 1px solid rgba(127, 47, 47, 0.4);
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-form .form-group {
    margin-bottom: 1.2rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 500;
    color: var(--light-red);
    font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.7rem 0.9rem;
    background: rgba(30, 27, 24, 0.8);
    border: 1px solid rgba(127, 47, 47, 0.4);
    border-radius: 3px;
    color: white;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: 'Raleway', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--light-red);
    background: rgba(30, 27, 24, 1);
}

.contact-form textarea {
    min-height: 130px;
    resize: vertical;
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 0.9rem;
    background: var(--primary-red);
    color: white;
    border: none;
    border-radius: 3px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(127, 47, 47, 0.5);
    font-family: 'Glacial Indifference', sans-serif;
}

.submit-btn:hover {
    background: var(--dark-red);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    /*background: rgba(30, 27, 24, 0.95);*/
    background: linear-gradient(135deg, rgba(30, 27, 24, 1), rgba(127, 47, 47, 0.5));
    color: rgba(224, 224, 224, 0.7);
    transform: translateZ(-1px) scale(1);
}

.footer-logo {
    font-family: 'Horizon', sans-serif;
    font-size: 2rem;
    color: #fff;
    display: block;
    margin: auto;
    margin-bottom: 0.8rem;
    width: 50%;
}

.footer-logo span {
    color: var(--primary-red);
}

footer p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Navigation Dots */
.nav-dots {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(127, 47, 47, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-red);
    transform: scale(1.2);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0;}
    to { opacity: 1;}
}

/* Responsive Design */
@media (max-width: 992px) {
    .platform {
        flex: 0 0 calc(33.333% - 1.2rem);
    }
    
    .nav-dots {
        right: 15px;
    }
}

@media (max-width: 768px) {
    .logo-image {
        max-height: 150px;
    }
    
    .video-container iframe {
        height: 300px;
    }
    
    .platform {
        flex: 0 0 calc(50% - 1.2rem);
        max-width: 140px;
        padding: 1rem 0.6rem;
    }
    
    .platform i {
        font-size: 2rem;
    }
    
    .platform-name {
        font-size: 0.9rem;
        min-height: 35px;
    }
    
    .tagline {
        font-size: 1.3rem;
        padding: 1rem 0;
    }
    
    .social-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .nav-dots {
        display: none;
    }
    
    .section-content {
        padding: 1rem;
    }
    
    .description {
        padding: 1.5rem;
    }
    
    .description p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .logo-image {
        max-height: 120px;
    }
    
    .tagline {
        font-size: 1rem;
        padding: 0.8rem 0;
    }
    
    .video-container iframe {
        height: 200px;
    }
    
    .platform {
        flex: 0 0 calc(50% - 0.8rem);
        max-width: 130px;
        padding: 0.8rem 0.5rem;
    }
    
    .platform i {
        font-size: 1.8rem;
    }
    
    .platform-name {
        font-size: 0.8rem;
        min-height: 30px;
    }
    
    .platform-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .social-icon {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 0.8rem;
        font-size: 0.95rem;
    }
    
    footer {
        padding: 1.5rem;
    }
    
    .footer-logo {
        font-size: 1.8rem;
    }
}