/* style.css - Dark Header/Footer, Light Page Content */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    background: #f5f5f0;
}

.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== DARK HEADER ========== */
.dark-header {
    background: #0a0a0f;
    color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo h1 {
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: #c9a03d;
    margin-bottom: 4px;
}

.logo .tagline {
    font-size: 0.75rem;
    font-weight: 500;
    color: #aaa;
    letter-spacing: 1px;
}

.main-nav ul {
    display: flex;
    gap: 32px;
    list-style: none;
}

.main-nav a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    transition: 0.3s;
    font-size: 1rem;
}

.main-nav a:hover, .main-nav a.active {
    color: #c9a03d;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #ffffff;
}

/* ========== HERO VIDEO SECTION ========== */
.hero-video-section {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
     object-position: center; 
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 90%;
    max-width: 900px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    letter-spacing: 6px;
    font-weight: 700;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.5);
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.hero-description {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.95;
}

/* ========== LIGHT MAIN CONTENT ========== */
.light-content {
    background: #ffffff;
    color: #1a1a2e;
    padding: 60px 0;
    flex: 1;
}

.content-section {
    margin-bottom: 60px;
}

.content-section h2 {
    font-size: 2.2rem;
    color: #c9a03d;
    margin-bottom: 24px;
    border-left: 5px solid #c9a03d;
    padding-left: 20px;
}

.content-section p {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}

.section-intro {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #555;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.card {
    background: #f8f8f8;
    padding: 28px;
    border-radius: 16px;
    transition: transform 0.3s;
    border: 1px solid #e0e0e0;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.card h3 {
    color: #c9a03d;
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.card ul {
    list-style: none;
    padding-left: 0;
}

.card ul li {
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    color: #333;
}

.card ul li::before {
    content: "▹";
    position: absolute;
    left: 0;
    color: #c9a03d;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.feature {
    background: #f8f8f8;
    padding: 28px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #e0e0e0;
    transition: 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 2.5rem;
    color: #c9a03d;
    margin-bottom: 16px;
}

.feature h3 {
    margin-bottom: 12px;
    color: #1a1a2e;
}

.feature p {
    color: #555;
    font-size: 0.95rem;
}

.exp-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.exp-item {
    background: #f8f8f8;
    padding: 16px 24px;
    border-radius: 40px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #e0e0e0;
    color: #1a1a2e;
}

.exp-item i {
    color: #c9a03d;
    font-size: 1.2rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.value {
    background: #f8f8f8;
    padding: 12px 20px;
    border-radius: 40px;
    font-size: 0.95rem;
    color: #333;
    border: 1px solid #e0e0e0;
}

.value span {
    font-weight: 700;
    color: #c9a03d;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.partner-card {
    background: #f8f8f8;
    padding: 20px;
    text-align: center;
    border-radius: 12px;
    font-weight: 500;
    transition: 0.3s;
    border: 1px solid #e0e0e0;
    color: #1a1a2e;
}

.partner-card:hover {
    border-color: #c9a03d;
    transform: translateY(-3px);
}

.objectives-list {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.objectives-list li {
    background: #f8f8f8;
    padding: 16px 20px;
    border-radius: 12px;
    position: relative;
    padding-left: 48px;
    color: #333;
    border: 1px solid #e0e0e0;
}

.objectives-list li::before {
    content: "🏆";
    position: absolute;
    left: 16px;
    top: 16px;
}

.movement {
    text-align: center;
    background: linear-gradient(135deg, #f8f8f8, #ffffff);
    padding: 48px;
    border-radius: 24px;
    border: 1px solid #c9a03d30;
}

.movement h2 {
    border-left: none;
    text-align: center;
}



/* ========== GALLERY PAGE ========== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-col {
    overflow: hidden;
    border-radius: 12px;
    position: relative;
    cursor: pointer;
    aspect-ratio: 3 / 4;
    background: #1a1a2e;
}

.gallery-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-col:hover img {
    transform: scale(1.06);
}

.gallery-col::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background 0.3s ease;
}

.gallery-col:hover::after {
    background: rgba(0,0,0,0.15);
}

/* Lightbox */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-overlay img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 24px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
    z-index: 10000;
}

/* Gallery Responsive */
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .gallery-col {
        border-radius: 8px;
        aspect-ratio: 3 / 4;
    }
}

/* Blog Page */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
}

.blog-card {
    background: #f8f8f8;
    padding: 28px;
    border-radius: 20px;
    transition: 0.3s;
    border: 1px solid #e0e0e0;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.1);
}

.blog-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #c9a03d;
}

.blog-meta {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 16px;
}

.read-more {
    display: inline-block;
    margin-top: 16px;
    color: #c9a03d;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.read-more i {
    transition: 0.3s;
}

.read-more:hover i {
    transform: translateX(6px);
}

/* Contact Page */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    margin-top: 30px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.info-card {
    background: #f8f8f8;
    padding: 24px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.info-card i {
    font-size: 2rem;
    color: #c9a03d;
    margin-bottom: 12px;
}

.info-card h3 {
    margin-bottom: 12px;
    color: #1a1a2e;
}

.info-card p {
    color: #555;
}

.contact-form {
    background: #f8f8f8;
    padding: 32px;
    border-radius: 24px;
    border: 1px solid #e0e0e0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    color: #1a1a2e;
    font-size: 1rem;
    transition: 0.3s;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: #c9a03d;
}

.submit-btn {
    background: #c9a03d;
    color: #0a0a0f;
    border: none;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background: #b58a2e;
    transform: translateY(-2px);
}

#formStatus {
    margin-top: 16px;
    text-align: center;
}

/* ========== DARK FOOTER ========== */
.dark-footer {
    background: #0a0a0f;
    color: #ffffff;
    padding: 48px 0 24px;
    border-top: 1px solid #1a1a2a;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.footer-logo h3 {
    color: #c9a03d;
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.footer-logo p {
    color: #aaa;
}

.footer-links {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #c9a03d;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: #ccc;
    font-size: 1.3rem;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #c9a03d;
    transform: translateY(-3px);
}

.footer-copyright {
    font-size: 0.8rem;
    color: #777;
    margin-top: 16px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
    .header-container {
        flex-direction: row;
    }
    
    .main-nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0a0a0f;
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    }
    
    .main-nav ul.show {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .content-section h2 {
        font-size: 1.8rem;
    }
    
    .movement {
        padding: 28px;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .features-grid, .partner-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .logo .tagline {
        font-size: 0.6rem;
    }
}
/* ========== BLOG PAGE WITH VIDEOS & IMAGES ========== */

/* Video Container Styles */
.blog-media {
    flex: 1;
    min-height: 350px;
    overflow: hidden;
    position: relative;
}

.video-blog {
    background: #0a0a0f;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-wrapper-blog {
    width: 100%;
    height: 100%;
    position: relative;
    background: #000;
}

.blog-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
    cursor: pointer;
}

.video-controls-blog {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0,0,0,0.7);
    padding: 8px 16px;
    border-radius: 40px;
    backdrop-filter: blur(5px);
    z-index: 10;
}

.play-pause-blog {
    background: #c9a03d;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-pause-blog i {
    color: #0a0a0f;
    font-size: 1rem;
}

.play-pause-blog:hover {
    background: #b58a2e;
    transform: scale(1.05);
}

.video-label {
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Image Blog Styles */
.image-blog {
    position: relative;
    background: #f0f0f0;
}

.blog-image-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
    transition: transform 0.5s ease;
}

.blog-card-full:hover .blog-image-full {
    transform: scale(1.02);
}

.image-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    backdrop-filter: blur(5px);
}

/* Blog Row Adjustments for Media */
.blog-row {
    display: flex;
    align-items: stretch;
    gap: 0;
}

.blog-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Responsive for Blog Videos */
@media (max-width: 900px) {
    .blog-row {
        flex-direction: column !important;
    }
    
    .blog-content {
        padding: 28px;
        order: 2;
    }
    
    .blog-media {
        min-height: 280px;
        order: 1;
    }
    
    .blog-video {
        min-height: 280px;
    }
    
    .blog-image-full {
        min-height: 280px;
    }
    
    .video-controls-blog {
        bottom: 15px;
        left: 15px;
        padding: 6px 12px;
    }
    
    .play-pause-blog {
        width: 35px;
        height: 35px;
    }
    
    .video-label {
        font-size: 0.75rem;
    }
    
    .image-caption {
        bottom: 15px;
        left: 15px;
        font-size: 0.7rem;
        padding: 4px 12px;
    }
}

@media (max-width: 600px) {
    .blog-content {
        padding: 20px;
    }
    
    .blog-media {
        min-height: 220px;
    }
    
    .blog-video {
        min-height: 220px;
    }
    
    .blog-image-full {
        min-height: 220px;
    }
    
    .video-controls-blog {
        padding: 5px 10px;
    }
    
    .play-pause-blog {
        width: 30px;
        height: 30px;
    }
    
    .play-pause-blog i {
        font-size: 0.8rem;
    }
    
    .video-label {
        font-size: 0.7rem;
    }
}


/* ===== PRESS / IN THE NEWS SECTION ===== */
.press-section {
    margin-bottom: 60px;
    padding-bottom: 50px;
    border-bottom: 2px solid #e0e0e0;
}

.press-heading {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.press-subtext {
    color: #666;
    margin-bottom: 30px;
    font-size: 1rem;
}

.press-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.press-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 24px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.press-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.press-source {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #c9a84c;
}

.press-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.4;
    margin: 0;
}

.press-card p {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.6;
    flex-grow: 1;
    margin: 0;
}

.press-read-more {
    font-size: 0.82rem;
    font-weight: 600;
    color: #c9a84c;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .press-cards {
        grid-template-columns: 1fr;
    }
}