/* Custom Cinematic Effects */
:root {
    --blue: #1E4FFF; /* Main Accent Blue */
    --blue-soft: #6EA8FF;
}

body {
    background-color: #050505;
    font-family: 'Montserrat', sans-serif;
    color: #FFFFFF;
}

/* Scroll Behavior */
html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--blue) #000;
}

/* Custom Nav Transition */
nav.scrolled {
    background: rgba(0, 0, 0, 0.95);
    padding-top: 1rem;
    padding-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(30, 79, 255, 0.3);
}

/* Reveal Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 1.2s ease-out;
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 1.2s ease-out;
}

.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* Mobile Link Styling */
.mobile-link {
    color: white;
    font-weight: 200;
    transition: color 0.3s;
}

.mobile-link:hover {
    color: var(--blue);
}

/* Utility Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease forwards;
}

/* Delays for children in grid */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

/* Text Shadows for Hero */
.text-shadow-lg {
    text-shadow: 0 0 40px rgba(0,0,0,0.8);
}

/* Typography */
h1, h2, h3, h6 {
    font-family: 'Cinzel', serif;
}

/* Blue Gradient Text */
.blue-gradient {
    background: linear-gradient(to right, var(--blue), var(--blue-soft));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Progress Bars */
.progress-bar {
    height: 8px;
    background: #1a1a1a;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--blue);
}

/* Navigation Links */
.nav-link {
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--blue);
}

 
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: var(--bg-dark);
            color: white;
            font-family: 'Montserrat', sans-serif;
        }

        h1, h2, h3 {
            font-family: 'Cinzel', serif;
        }

        /* ===== HEADER ===== */
        .page-header {
            padding: 120px 20px 60px;
            text-align: center;
        }

        .page-header span {
            color: var(--blue);
            font-size: 12px;
            letter-spacing: 4px;
            text-transform: uppercase;
        }

        .page-header h1 {
            font-size: 42px;
            margin-top: 10px;
        }

        /* ===== CAST SECTION ===== */
        .cast-section {
            padding: 60px 0 100px;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: auto;
        }

        .cast-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 40px;
        }

        .cast-card {
            background: var(--card-bg);
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.4s ease;
        }

        .cast-card:hover {
            transform: translateY(-8px);
        }

        .cast-card img {
            width: 100%;
            height: 360px;
            object-fit: cover;
            filter: grayscale(100%);
            transition: filter 0.5s ease;
        }

        .cast-card:hover img {
            filter: grayscale(0%);
        }

        .cast-info {
            padding: 20px;
            text-align: center;
        }

        .cast-info h3 {
            font-size: 18px;
            margin-bottom: 6px;
        }

        .cast-role {
            font-size: 12px;
            color: var(--blue);
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .cast-info p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* ===== FOOTER ===== */
        footer {
            padding: 30px 0;
            text-align: center;
            border-top: 1px solid #111;
            font-size: 13px;
            color: #666;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 600px) {
            .page-header h1 {
                font-size: 32px;
            }

            .cast-card img {
                height: 300px;
            }
        }
   
         .input-field {
            background: #0A0A0A;
            border: 1px solid rgba(255, 255, 255, 0.05);
            padding: 1rem;
            width: 100%;
            color: white;
            transition: all 0.3s ease;
        }
        .input-field:focus {
            outline: none;
            border-color: #3b82f6;
            background: #111;
        }
          .character-gradient {
            background: linear-gradient(to right, #050505 30%, transparent 100%);
        }
         .form-input {
            background: #111111;
            border: 1px solid rgba(255, 255, 255, 0.05);
            padding: 1.25rem;
            width: 100%;
            color: white;
            font-size: 0.85rem;
            letter-spacing: 0.05em;
            transition: all 0.3s ease;
        }
        .form-input:focus {
            outline: none;
            border-color: #3b82f6;
            background: #161616;
        }
        .info-label {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 0.3em;
            color: #3b82f6;
            font-weight: 700;
            margin-bottom: 0.5rem;
            display: block;
        }
        .map-container {
            filter: grayscale(1) invert(0.92) contrast(1.2);
            transition: all 1s ease;
        }
        .map-container:hover {
            filter: grayscale(0.5) invert(0.92) contrast(1.1);
        }
         @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .animate-success {
            animation: fadeIn 0.8s ease forwards;
        }
.signature {
    margin-top: 10px;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #555;
}

.signature a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.signature a:hover {
    color: #ffffff;
}
.collab-logo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: contain;  /* <-- key change */
    background: #FFFFFF;     /* optional: background for empty space */
    filter: grayscale(100%);
    transition: all 0.5s ease, transform 0.5s ease, filter 0.5s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 8px;
}

.collab-logo:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
    border-color: var(--blue);
    box-shadow: 0 0 30px var(--blue);
}

