/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #E23636;
    --primary-blue: #2B4C7E;
    --bg-black: #0A0A0A;
    --bg-charcoal: #1A1A1A;
    --text-white: #FFFFFF;
    --text-gray: #B0B0B0;
    --accent-gold: #FFD700;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-black);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-black);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c72d2d;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: rgba(10, 10, 10, 0.3);
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(226, 54, 54, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: var(--primary-red);
}

.nav-logo i {
    font-size: 28px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--text-white);
    text-decoration: none;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-red);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.5), rgba(10, 10, 10, 0.8));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 96px;
    color: var(--primary-red);
    text-shadow: 0 0 20px rgba(226, 54, 54, 0.5);
    margin-bottom: 10px;
}

.hero-subtitle {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 56px;
    color: var(--text-white);
    margin-bottom: 20px;
}

.hero-text {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: var(--primary-red);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: var(--transition);
}

.hero-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(226, 54, 54, 0.6);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 32px;
    color: var(--primary-red);
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

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

.animate-fade-in-delay {
    animation: fadeIn 1s ease-in 0.3s backwards;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-in 0.6s backwards;
}

.animate-fade-in-delay-3 {
    animation: fadeIn 1s ease-in 0.9s backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    text-align: center;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 18px;
    margin-bottom: 60px;
}

/* Team Section */
.team-section {
    background: var(--bg-charcoal);
    padding-bottom: 40px;
}

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

.team-card {
    background: var(--bg-black);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    height: fit-content;
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-red);
    box-shadow: 0 8px 30px rgba(226, 54, 54, 0.3);
}

.team-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(226, 54, 54, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.team-overlay i {
    font-size: 48px;
    color: var(--text-white);
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-card:hover .team-image {
    transform: scale(1.1);
}

.team-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.team-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    color: var(--text-white);
    margin-bottom: 5px;
}

.team-role {
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-bio {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Trailer Section */
.trailer-section {
    background: var(--bg-black);
    padding-top: 40px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(226, 54, 54, 0.3);
}

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

/* Synopsis Section */
.synopsis-section {
    background: var(--bg-charcoal);
    padding: 60px 0;
}

.synopsis-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.synopsis-image {
    width: 100%;
}

.synopsis-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    height: auto;
}

.synopsis-text {
    background: var(--bg-black);
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-red);
}

.synopsis-intro {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.synopsis-text p {
    margin-bottom: 20px;
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 15px;
}

.synopsis-title {
    text-align: center;
    color: #dc143c;
    margin-bottom: 30px;
    margin-top: 30px;
}

.synopsis-title h2 {
    font-size: 22px;
    font-weight: 700;
}

.synopsis-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--bg-charcoal);
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-gray);
    font-size: 13px;
    line-height: 1.6;
}

.detail-item i {
    color: var(--primary-red);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.detail-item strong {
    color: var(--text-white);
}

/* Narrative Section */
.narrative-section {
    background: var(--bg-charcoal);
    background-image: linear-gradient(rgba(26, 26, 26, 0.85), rgba(26, 26, 26, 0.85)), url('assets/background.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
    position: relative;
}

.narrative-section .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Typography Section */
.narrative-typography {
    background: var(--bg-black);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 60px;
    border-left: 4px solid var(--primary-red);
}

.typography-title h2 {
    font-size: 24px;
    color: var(--primary-red);
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: 2px;
}

.typography-text {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.typography-text li {
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border-left: 3px solid var(--primary-red);
    transition: var(--transition);
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 15px;
}

.typography-text li:hover {
    background: rgba(220, 20, 60, 0.1);
    transform: translateX(8px);
}

.typography-text strong {
    color: var(--text-white);
    display: block;
    margin-bottom: 8px;
}

/* Accordion */
.narrative-accordion {
    display: grid;
    gap: 20px;
}

.accordion-item {
    background: var(--bg-black);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid transparent;
}

.accordion-item:hover {
    border-color: var(--primary-red);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.15);
}

.accordion-item.active {
    border-color: var(--primary-red);
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.1) 0%, rgba(220, 20, 60, 0.05) 100%);
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
}

.accordion-header:hover {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.15) 0%, rgba(220, 20, 60, 0.08) 100%);
}

.accordion-item.active .accordion-header {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.2) 0%, rgba(220, 20, 60, 0.1) 100%);
    border-bottom-color: var(--primary-red);
}

.accordion-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220, 20, 60, 0.2);
    border-radius: 50%;
    color: var(--primary-red);
    font-size: 24px;
    flex-shrink: 0;
}

.accordion-header h3 {
    font-size: 20px;
    color: var(--text-white);
    flex: 1;
    font-weight: 600;
}

.accordion-arrow {
    color: var(--primary-red);
    font-size: 18px;
    transition: var(--transition);
    flex-shrink: 0;
}

.accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    position: relative;
}

.accordion-content.active {
    max-height: 800px;
    opacity: 1;
}

.accordion-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.accordion-content p {
    padding: 30px;
    color: var(--text-white);
    line-height: 1.9;
    font-size: 15px;
    background: transparent;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    border: none;
    margin: 0;
}

.accordion-content p:first-of-type {
    border-top: none;
}

.accordion-content p + p {
    padding-top: 15px;
    padding-bottom: 15px;
}

/* Gallery Section */
.gallery-section {
    background: var(--bg-charcoal);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(226, 54, 54, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    font-size: 48px;
    color: var(--text-white);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover {
    box-shadow: 0 8px 30px rgba(226, 54, 54, 0.5);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    animation: zoom 0.3s;
}

@keyframes zoom {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: var(--text-white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--primary-red);
}

.lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: var(--text-gray);
    padding: 20px 0;
}

/* Contact Section */
.contact-section {
    background: var(--bg-black);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.social-link {
    width: 60px;
    height: 60px;
    background: var(--bg-charcoal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 24px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.social-link:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(226, 54, 54, 0.5);
}

.contact-info {
    text-align: center;
    color: var(--text-gray);
}

.contact-info p {
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-info i {
    color: var(--primary-red);
}

/* Footer */
.footer {
    background: var(--bg-charcoal);
    padding: 40px 0;
    border-top: 2px solid var(--primary-red);
}

.footer-content {
    text-align: center;
}

.footer-text {
    color: var(--text-white);
    margin-bottom: 10px;
}

.footer-disclaimer {
    color: var(--text-gray);
    font-size: 14px;
}

/* From Uiverse.io by ShrinilDhorda */ 
.btn {
  font-size: 1.2rem;
  padding: 1rem 2.5rem;
  border: none;
  outline: none;
  border-radius: 0.4rem;
  cursor: pointer;
  text-transform: uppercase;
  color: inherit;
  text-decoration: none;
  background-color: rgb(14, 14, 26);
  color: rgb(234, 234, 234);
  font-weight: 700;
  transition: 0.6s;
  box-shadow: 0px 0px 60px #1f4c65;
  -webkit-box-reflect: below 10px linear-gradient(to bottom, rgba(0,0,0,0.0), rgba(0,0,0,0.4));
}

.btn:active {
  scale: 0.92;
}

.btn:hover {
  background: rgb(2,29,78);
  background: linear-gradient(270deg, rgba(2, 29, 78, 0.681) 0%, rgba(31, 215, 232, 0.873) 60%);
  color: rgb(4, 4, 38);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        padding: 30px 0;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-title {
        font-size: 56px;
    }

    .hero-subtitle {
        font-size: 32px;
    }

    .section-title {
        font-size: 36px;
    }

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

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

    .accordion-content p {
        padding: 20px;
    }

    .accordion-content.active {
        max-height: 1000px;
    }

    .container {
        padding: 0 20px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .synopsis-content {
        grid-template-columns: 1fr;
    }

    .synopsis-text {
        padding: 25px;
    }

    .synopsis-details {
        grid-template-columns: 1fr;
    }

    .narrative-section .container {
        padding: 0 20px;
    }

    .typography-text {
        grid-template-columns: 1fr;
    }

    .accordion-header {
        padding: 20px 20px;
        gap: 15px;
    }

    .accordion-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .accordion-header h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .hero-text {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .accordion-header h3 {
        font-size: 16px;
    }

    .lightbox-close {
        right: 20px;
        top: 20px;
    }

    .narrative-section .container {
        padding: 0 15px;
    }

    .narrative-typography {
        padding: 25px;
    }

    .accordion-content p {
        padding: 20px;
        font-size: 14px;
    }
}