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

:root {
    --primary-red: #DC143C;
    --dark-red: #A01020;
    --accent-red: #FF1744;
    --black: #000000;
    --dark-gray: #111111;
    --medium-gray: #222222;
    --light-gray: #f5f5f7;
    --off-white: #fafafa;
    --large-section-spacing: 15vh;
    /* Big gap for home to mission */
    --section-spacing: 6vh;
    /* Small gap for other sections */
    --mobile-section-spacing: 5vh;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--light-gray);
    background: var(--black);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    height: 72px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--off-white);
    letter-spacing: -0.5px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

nav ul li a {
    color: var(--light-gray);
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: -0.2px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-red);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--light-gray);
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
}

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

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.9)),
        url("images/dectet.png") center/cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(220, 20, 60, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 80px;
}

.hero-logo-container {
    margin-bottom: 48px;
    animation: fadeInUp 1s ease-out;
}

.hero-logo {
    font-family: 'Playfair Display', serif;
    font-size: 96px;
    font-weight: 900;
    color: var(--off-white);
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 16px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: rgba(245, 245, 247, 0.8);
    margin: 48px auto;
    max-width: 1000px;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.3px;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.hero-tagline .highlight {
    color: var(--primary-red);
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    background: var(--primary-red);
    color: white;
    padding: 16px 48px;
    border-radius: 24px;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -0.2px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 1s ease-out 0.6s backwards;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.cta-button:hover {
    background: var(--accent-red);
    transform: scale(1.05);
}

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

.scroll-arrow {
    width: 1px;
    height: 32px;
    background: var(--primary-red);
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    border-right: 1px solid var(--primary-red);
    border-bottom: 1px solid var(--primary-red);
    transform: translateX(-50%) rotate(45deg);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-8px);
    }

    60% {
        transform: translateX(-50%) translateY(-4px);
    }
}

/* Section Styles */
.section {
    padding: var(--section-spacing) 0;
    position: relative;
}

/* Founder Message Styles */
.founder-message {
    max-width: 900px;
    margin: 4rem auto 5rem;
    background: linear-gradient(135deg, var(--black), var(--dark-gray));
    border-radius: 20px;
    padding: 4rem 3rem;
    border: 1px solid rgba(220, 20, 60, 0.2);
    position: relative;
    overflow: hidden;
}

.founder-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-red), var(--accent-red));
}

.founder-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.quote-icon {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--primary-red);
    line-height: 1;
    opacity: 0.3;
    flex-shrink: 0;
    margin-top: -0.5rem;
}

.quote-icon.start {
    margin-left: -0.5rem;
}

.quote-icon.end {
    margin-right: -0.5rem;
    align-self: flex-end;
    margin-top: auto;
    margin-bottom: -1rem;
}

.founder-text {
    flex: 1;
}

.founder-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--light-gray);
    font-weight: 300;
    font-style: italic;
    margin-bottom: 2.5rem;
    text-align: left;
}

.founder-signature {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.signature-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    margin: 0 auto 1rem;
}

.founder-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--off-white);
    font-weight: 600;
    margin-bottom: 0.3rem;
    letter-spacing: 0.5px;
}

.founder-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--primary-red);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design for Founder Message */
@media (max-width: 768px) {
    .founder-message {
        padding: 2.5rem 1.5rem;
        margin: 3rem auto 4rem;
    }

    .founder-content {
        flex-direction: column;
        gap: 0.5rem;
    }

    .quote-icon {
        font-size: 3rem;
        align-self: flex-start;
    }

    .quote-icon.start {
        margin-left: 0;
        margin-bottom: -1rem;
    }

    .quote-icon.end {
        align-self: flex-end;
        margin-top: -2rem;
        margin-right: 0;
    }

    .founder-quote {
        font-size: 1.2rem;
        line-height: 1.7;
        margin-bottom: 2rem;
    }

    .founder-name {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .founder-message {
        padding: 2rem 1.25rem;
    }

    .founder-quote {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .quote-icon {
        font-size: 2.5rem;
    }
}

/* Mission section gets larger spacing after home */
#mission.section {
    padding: var(--large-section-spacing) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 32px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--off-white);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: rgba(245, 245, 247, 0.6);
    font-weight: 300;
    letter-spacing: 0.3px;
}

/* Mission Section */
.mission-statement {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    text-align: center;
    line-height: 1.6;
    color: rgba(245, 245, 247, 0.9);
    margin: 0 auto clamp(5px, 1vh, 15px);
    max-width: 1300px;
    font-weight: 300;
    letter-spacing: 0.3px;
}

/* Members Section */
#mission.section {
    padding-bottom: 130px;
}

#members.section {
    padding-top: 0;
    margin-top: -30px;
}

#members .section-header {
    margin-top: -10px;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.member-card {
    background: var(--dark-gray);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.member-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-red);
}

.member-photo {
    width: 100%;
    height: 280px;
    position: relative;
    overflow: hidden;
    background: var(--medium-gray);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.member-card:hover .member-photo img {
    transform: scale(1.05);
}

.member-info {
    padding: 24px;
    text-align: center;
}

.member-info h3 {
    font-family: 'Playfair Display', serif;
    color: var(--off-white);
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.member-info p {
    color: var(--primary-red);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Add badge directly on the photo */
.member-photo {
    position: relative;
}

.member-card[data-role] .role-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--primary-red);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.member-card[data-role="Co-Founder"] .role-badge {
    background: var(--accent-red);
}

/* Past Performances Section */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.video-card {
    background: var(--dark-gray);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-red);
}

.video-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.video-thumbnail {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

.video-thumbnail:hover .video-overlay {
    background: rgba(0, 0, 0, 0.1);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    color: var(--primary-red);
    z-index: 2;
    transition: all 0.3s ease;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}

.video-thumbnail:hover .play-icon {
    transform: translate(-50%, -50%) scale(1.1);
    color: var(--accent-red);
}

.video-info {
    padding: 24px;
}

.video-info h3 {
    font-family: 'Playfair Display', serif;
    color: var(--off-white);
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.video-info p {
    color: rgba(245, 245, 247, 0.6);
    font-size: 14px;
    line-height: 1.5;
}

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

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.contact-intro {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: rgba(245, 245, 247, 0.8);
    line-height: 1.6;
    margin-bottom: 64px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-item {
    background: var(--dark-gray);
    padding: 40px 32px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-item:hover {
    transform: translateY(-4px);
    border-color: var(--primary-red);
    background: rgba(220, 20, 60, 0.05);
}

.contact-item i {
    font-size: 32px;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.contact-text h4 {
    font-family: 'Playfair Display', serif;
    color: var(--off-white);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-item a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    display: inline-block;
}

.contact-item a:hover {
    color: var(--accent-red);
}

.contact-item span {
    color: rgba(245, 245, 247, 0.7);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 300;
}

/* Footer */
footer {
    background: var(--black);
    padding: 48px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer .container {
    text-align: center;
}

footer p {
    color: rgba(245, 245, 247, 0.6);
    font-size: 14px;
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-links a {
    color: rgba(245, 245, 247, 0.6);
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-red);
}

/* Responsive Design */
@media (max-width: 1024px) {
    :root {
        --section-spacing: 100px;
        --mobile-section-spacing: 64px;
    }

    .hero-logo {
        font-size: 72px;
    }

    .hero-tagline {
        font-size: 20px;
    }

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

    .members-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-spacing: 80px;
        --mobile-section-spacing: 48px;
    }

    .section {
        padding: var(--mobile-section-spacing) 0;
    }

    .container {
        padding: 0 24px;
    }

    nav ul {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    header.nav-open nav ul {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: saturate(180%) blur(20px);
        padding: 24px 0;
        gap: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero-section {
        padding: 0 24px;
    }

    .hero-logo {
        font-size: 48px;
    }

    .hero-tagline {
        font-size: 18px;
        margin: 32px auto;
    }

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

    .section-subtitle {
        font-size: 18px;
    }

    .mission-statement {
        font-size: 20px;
        margin-bottom: 64px;
    }

    .members-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .videos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-item {
        padding: 32px 24px;
    }
}

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

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

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

    .members-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin: 0 auto;
    }

    .member-photo {
        height: 240px;
    }

    .video-thumbnail {
        height: 180px;
    }

    .contact-intro {
        font-size: 18px;
    }
}