* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.4));
    z-index: 2;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: grayscale(0.3) brightness(0.6);
}

.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 10;
    transition: all 0.3s ease;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(20px);
}

.navbar-scrolled {
    background: rgba(0,0,0,0.98);
    box-shadow: 0 2px 30px rgba(255,255,255,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 20px rgba(255,255,255,0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 12px 25px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.2);
}

.nav-menu a:hover {
    background: rgba(255,255,255,0.2);
    box-shadow: 0 5px 20px rgba(255,255,255,0.2);
}

.hero-content {
    text-align: center;
    z-index: 5;
    color: #fff;
    max-width: 900px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 30px rgba(255,255,255,0.5);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
    margin-bottom: 60px;
}

.stat {
    text-align: center;
}

.stat span {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 0 20px rgba(255,255,255,0.5);
}

.stat small {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

.cta-btn {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 20px 60px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 15px 40px rgba(255,255,255,0.4);
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-btn:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(255,255,255,0.6);
}

/* Sections */
.section {
    padding: 120px 0;
    position: relative;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 80px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.section-title.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.animate-slide {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s ease;
}

.animate-slide.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.animate-card {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.animate-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Welcome Section - BLACK */
.welcome {
    background: #000;
    color: #fff;
}

.welcome-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.welcome-content p {
    font-size: 1.25rem;
    margin-bottom: 70px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
}

.feature {
    padding: 50px 30px;
    text-align: center;
    background: rgba(255,255,255,0.05);
    border-radius: 25px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.5s ease;
}

.feature:hover {
    transform: translateY(-15px);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 25px 60px rgba(255,255,255,0.15);
}

.feature i {
    font-size: 4.5rem;
    color: #fff;
    margin-bottom: 25px;
    text-shadow: 0 0 20px rgba(255,255,255,0.5);
}

.feature h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Exhibits Section - BLACK */
.exhibits {
    background: #000;
}

.exhibits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
    gap: 40px;
}

.exhibit-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.6s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.exhibit-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 30px 80px rgba(255,255,255,0.15);
}

.exhibit-image {
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.6s ease;
}

.exhibit-card:hover .exhibit-image {
    transform: scale(1.1);
}

.exhibit-type {
    position: absolute;
    top: 25px;
    left: 25px;
    background: rgba(255,255,255,0.2);
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.exhibit-content {
    padding: 35px;
    color: #fff;
}

.exhibit-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Collections Section */
.collections {
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    color: #fff;
}

.collections-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.collection-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.collection-features {
    list-style: none;
    margin-top: 35px;
}

.collection-features li {
    padding: 15px 0;
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 0.9;
}

.collection-features i {
    color: #fff;
    width: 25px;
    font-size: 1.2rem;
}

.collection-image {
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 25px;
}

/* Visit Section - BLACK */
.visit {
    background: #000;
    color: #fff;
}

.visit-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 70px;
    align-items: center;
}

.visit-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.visit-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
}

.visit-feature {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 25px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s ease;
}

.visit-feature:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(15px);
}

.visit-feature i {
    font-size: 3rem;
    color: #fff;
    margin-top: 5px;
    flex-shrink: 0;
}

.cta-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(25px);
    padding: 50px 40px;
    border-radius: 25px;
    border: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transition: all 0.5s ease;
}

.cta-card:hover {
    transform: translateY(-15px);
    background: rgba(255,255,255,0.2);
}

.cta-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
}

.book-btn {
    background: #fff;
    color: #000;
    padding: 18px 50px;
    border-radius: 35px;
    font-weight: 700;
    display: block;
    margin-top: 25px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

.book-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(255,255,255,0.5);
}

/* Contact Section - BLACK */
.contact {
    background: #000;
    color: #fff;
}

.contact-form {
    max-width: 900px;
    margin: 0 auto;
}

.form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 35px;
}

.form-group:last-child {
    grid-template-columns: 1fr;
}

.form-group input,
.form-group textarea {
    padding: 25px;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    font-size: 1.1rem;
    font-family: inherit;
    color: #fff;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #fff;
    box-shadow: 0 0 0 4px rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.1);
}

.submit-btn {
    background: #fff;
    color: #000;
    padding: 25px 70px;
    border: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 15px 40px rgba(255,255,255,0.3);
}

.submit-btn:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(255,255,255,0.5);
}

/* Footer */
.footer {
    background: #111;
    color: #fff;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #fff;
}

.footer-links h4 {
    margin-bottom: 25px;
    color: #fff;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title { font-size: 3rem; }
    .nav-menu { display: none; }
    .hero-stats { 
        flex-direction: column;
        gap: 25px; 
    }
    .collections-content,
    .visit-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .form-group { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .section-title { font-size: 2.5rem; }
    .features-grid { grid-template-columns: 1fr; }
}
/* Add this to existing style.css - Contact Feature Style */
.contact-feature {
    border: 2px solid rgba(255,255,255,0.3);
}

.contact-feature .feature-btn {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    margin-top: 20px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

.contact-feature .feature-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(255,255,255,0.5);
}

/* Rest of CSS remains same */
