/* ============================================
   BLACKTHREAD - COMPLETE BLACK/GREY/WHITE THEME
   FORCE OVERRIDE VERSION
   ============================================ */

/* RESET & BASE - FORCED */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #8a8a8a !important;
    background: #000000 !important;
    scroll-behavior: smooth;
}

/* TYPOGRAPHY - FORCED WHITE */
h1, h2, h3, h4, h5, h6 {
    color: #ffffff !important;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 4rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    color: #8a8a8a !important;
    margin-bottom: 1rem;
}

/* CONTAINER */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 0.75rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #6b6b6b, #8a8a8a) !important;
}

.section-header p {
    color: #6b6b6b !important;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* HEADER */
.site-header {
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-decoration: none;
    background: linear-gradient(135deg, #ffffff, #b0b0b0) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    transition: 0.3s ease;
}

.logo:hover {
    opacity: 0.9;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: #8a8a8a !important;
    font-weight: 500;
    transition: 0.2s ease;
    position: relative;
    font-size: 0.95rem;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffffff, #b0b0b0) !important;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ffffff !important;
}

/* MOBILE MENU */
.menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #ffffff !important;
    transition: 0.2s ease;
}

.menu-btn:hover {
    color: #8a8a8a !important;
}
/* HERO VIDEO SECTION */
.hero-video-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

/* VIDEO */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

/* DARK OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 2;
}

/* CONTENT */
.hero-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.hero-content {
    max-width: 850px;
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: white;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-content p {
    color: rgba(255,255,255,0.85);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-primary {
    background: white;
    color: black;
}

.btn-primary:hover {
    transform: translateY(-3px);
}

.btn-outline {
    border: 1px solid rgba(255,255,255,0.4);
    color: white;
}

.btn-outline:hover {
    background: white;
    color: black;
}

/* MOBILE */
@media (max-width: 768px) {

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

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

    .hero-video-section {
        height: 90vh;
    }
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: linear-gradient(135deg, #ffffff, #b0b0b0) !important;
    color: #000000 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    filter: brightness(0.98);
}

.btn-outline {
    border: 1.5px solid #6b6b6b !important;
    color: #8a8a8a !important;
    background: transparent !important;
    margin-left: 1rem;
}

.btn-outline:hover {
    border-color: #ffffff !important;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

.btn-small {
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* STATS SECTION */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.stat-card {
    background: #1a1a1a !important;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    text-align: center;
    transition: 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    font-size: 2.5rem;
    color: #b0b0b0 !important;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff !important;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6b6b6b !important;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CARDS */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.card {
    background: #1a1a1a !important;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    filter: grayscale(30%);
    transition: 0.3s ease;
}

.card:hover .card-image {
    filter: grayscale(0%);
    transform: scale(1.02);
}

.card-content {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #ffffff !important;
}

.card-meta {
    color: #6b6b6b !important;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.card-meta i {
    margin-right: 0.3rem;
    color: #b0b0b0 !important;
}

.badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.badge-upcoming {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #b0b0b0 !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

/* GALLERY */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    aspect-ratio: 4/3;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;

}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: #ffffff;
    padding: 2rem 1rem 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: #ffffff !important;
}

.gallery-overlay p {
    font-size: 0.85rem;
    opacity: 0.8;
    margin: 0;
    color: #ffffff !important;
}

/* TESTIMONIALS */
.testimonials-section {
    background: linear-gradient(135deg, #111111 0%, #000000 100%) !important;
    padding: 5rem 0;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.testimonial-card {
    background: #1a1a1a !important;
    border-radius: 20px;
    padding: 2rem;
    transition: 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15) !important;
}

.stars {
    color: #b0b0b0 !important;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.stars i {
    margin-right: 2px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #6b6b6b !important;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2d2d2d, #4a4a4a) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    font-weight: bold;
    font-size: 1.2rem;
}

.author-info strong {
    display: block;
    color: #ffffff !important;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: #6b6b6b !important;
    font-size: 0.8rem;
    margin: 0;
}

/* NEWSLETTER */
.newsletter-section {
    margin: 5rem auto;
}

.newsletter-card {
    background: #1a1a1a !important;
    border-radius: 28px;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.newsletter-card h2 {
    margin-bottom: 0.75rem;
}

.newsletter-card p {
    color: #6b6b6b !important;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto 0;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    background: #000000 !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 9999px;
    font-size: 1rem;
    color: #ffffff !important;
    transition: 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: #b0b0b0 !important;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05);
}

.newsletter-input::placeholder {
    color: #6b6b6b !important;
}

/* FOOTER */
.site-footer {
    background: #000000 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #ffffff !important;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: #6b6b6b !important;
    text-decoration: none;
    transition: 0.2s ease;
    font-size: 0.9rem;
}

.footer-col a:hover {
    color: #ffffff !important;
}

.social-links {
    display: flex;
    gap: 1.2rem;
    margin-top: 1rem;
}

.social-links a {
    color: #6b6b6b !important;
    font-size: 1.5rem;
    transition: 0.2s ease;
}

.social-links a:hover {
    color: #ffffff !important;
    transform: translateY(-3px);
}

hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    margin: 2rem 0;
}

.copyright {
    text-align: center;
    color: #6b6b6b !important;
    font-size: 0.85rem;
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeInUp 0.6s ease forwards;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #000000 !important;
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .menu-btn {
        display: block;
    }
    
    .stats-grid {
        margin-top: -40px;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn-outline {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-grid {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .card-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-card {
        padding: 2rem;
    }
}