/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
    height: 100vh;
    overflow: hidden;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 100;
    padding: 0;
    margin: 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0;
    margin: 0;
}

.logo {
    padding: 0;
    margin: 0;
    line-height: 0;
    font-size: 0;
}

.logo a {
    display: block;
    padding: 0;
    margin: 0;
    line-height: 0;
}

.logo-image {
    height: 200px;
    width: auto;
    filter: drop-shadow(0 0 5px rgba(255, 0, 0, 0.3));
    display: block;
    margin: 0;
    padding: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    padding-right: 2rem;
    align-items: center;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8),
                 0 0 10px rgba(255, 0, 0, 0.5);
    white-space: nowrap;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: #ff3333;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8),
                 0 0 15px rgba(255, 0, 0, 0.8);
}

/* Mobile Navigation */
@media (max-width: 1024px) {
    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        justify-content: space-between;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: block;
    }
}

/* Mobile menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

/* Hero section */
.hero-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

main {
    position: relative;
    z-index: 1;
}

/* Content sections */
.content-section {
    display: none;
    min-height: 100vh;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
}

.content-section.active {
    display: block;
}

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

/* Tour section specific */
#tour {
    display: none;
    min-height: 100vh;
    background: rgba(0, 0, 0, 0.8);
}

#tour.active {
    display: block;
}

/* Contact section specific */
#contact {
    display: none;
    min-height: 100vh;
    background: rgba(0, 0, 0, 0.8);
}

#contact.active {
    display: block;
}

/* News Section */
.news-section {
    position: relative;
    padding: 80px 0;
    min-height: 100vh;
    background: transparent;
    color: #ffffff;
    display: flex;
    align-items: center;
}

.news-section h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    text-transform: uppercase;
    text-align: center;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8),
                 0 0 20px rgba(255, 0, 0, 0.8);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.news-item {
    background: rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.5);
}

.news-date {
    color: #ff3333;
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}

.news-item h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.news-item p {
    color: #cccccc;
    line-height: 1.6;
    margin: 20px 0;
}

.read-more {
    display: inline-block;
    color: #ff3333;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.read-more:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.news-item img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    margin: 20px auto;
    display: block;
    box-shadow: 0 0 20px rgba(255, 51, 51, 0.3);
}

/* News Slideshow */
.news-slideshow {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.news-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.news-slide.active {
    display: block;
    opacity: 1;
}

.news-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255, 51, 51, 0.5);
}

.dot.active {
    background: #ff3333;
    box-shadow: 0 0 10px rgba(255, 51, 51, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .news-section {
        padding: 60px 0;
    }

    .news-section h2 {
        font-size: 2.5rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-item {
        padding: 20px;
    }
}

/* Footer */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    text-align: center;
    padding: 10px 0;
    z-index: 1000;
}

.footer p {
    margin: 0;
    color: #ffffff;
    font-size: 0.9em;
    letter-spacing: 2px;
}

/* Responsive design */
@media (max-width: 1024px) {
    .nav-container {
        height: 120px;
    }

    .logo-image {
        height: 100px;
    }

    .nav-links {
        padding-right: 1rem;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }

    .logo {
        position: relative;
        left: 0;
        transform: none;
    }

    .logo-image {
        height: 120px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: center;
        background-color: rgba(0, 0, 0, 0.9);
        padding: 1rem;
    }

    .mobile-menu {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .content-wrapper {
        padding: 2rem 1rem;
    }

    .content-section h2 {
        font-size: 2rem;
    }
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    top: 50%;
    transform: translateY(-50%);
}

.close-modal {
    position: absolute;
    right: -30px;
    top: -30px;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    background: rgba(255, 51, 51, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: #ff3333;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

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

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

.fade-in {
    animation: fadeIn 1s ease-in;
}

/* Unmute message */
.unmute-message {
    color: #fff;
    text-align: center;
    padding: 10px;
    margin-bottom: 10px;
    background: rgba(255, 51, 51, 0.3);
    border-radius: 5px;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.unmute-message:hover {
    opacity: 1;
}

/* Coming soon message */
.coming-soon {
    text-align: center;
    font-size: 1.2em;
    color: #cccccc;
    padding: 40px 0;
    font-style: italic;
}

/* Contact Section */
.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 20px;
}

.contact-logo {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(255, 51, 51, 0.3);
}

.offices {
    text-align: center;
    margin: 20px 0;
}

.office {
    margin-bottom: 30px;
}

.office h3 {
    color: #ff3333;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.office .phone {
    color: #ffffff;
    font-size: 1.1em;
}

.contact-buttons {
    display: flex;
    gap: 50px;
    margin-top: 30px;
    justify-content: center;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 10px;
    padding: 15px;
}

.contact-icon {
    width: 80px;
    height: 80px;
    transition: transform 0.3s ease;
}

.contact-btn:hover .contact-icon {
    transform: scale(1.1);
}

.email-btn {
    background: rgba(255, 51, 51, 0.1);
    color: #ffffff;
}

.facebook-btn {
    background: rgba(59, 89, 152, 0.1);
    color: #ffffff;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 51, 51, 0.3);
}

.email-btn:hover {
    background: rgba(255, 51, 51, 0.2);
}

.facebook-btn:hover {
    background: rgba(59, 89, 152, 0.2);
}

/* Promo Banner */
.promo-banner {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 180px;
    height: 400px;
    background: rgba(0, 0, 0, 0.6);  
    border: 2px solid #000000;  
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.promo-banner h2 {
    margin: 0;
    font-size: 24px;
    color: #ff3333;
    text-shadow: 0 0 10px rgba(255, 51, 51, 0.3);
}

.sleeve-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 1px solid rgba(255, 51, 51, 0.3);
}

.streaming-icons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.stream-icon {
    max-width: 66.67%;  
    height: auto;
    transition: transform 0.3s ease;
    width: auto;
}

.stream-icon:hover {
    transform: scale(1.1);
}

/* Audio Player */
.audio-player {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.music-toggle {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #000000;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.music-toggle:hover {
    transform: scale(1.1);
    background: rgba(0, 0, 0, 0.8);
}

.music-toggle.playing .fa-play {
    display: none;
}

.music-toggle:not(.playing) .fa-pause {
    display: none;
}
