/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation with Logo */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 10px;
}

.nav-btn {
    padding: 10px 18px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.home-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.about-btn {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: white;
}

.gallery-btn {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: white;
}

.contact-btn {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    color: white;
}

.book-btn {
    background: linear-gradient(135deg, #fa709a, #fee140);
    color: white;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Hero Section with Video Background */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 10px;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Enhanced Buttons */
.btn {
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover {
    background: white;
    color: #333;
}

/* New About Section Layout */
.about-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-image {
    position: relative;
}

.feruza-photo {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.feruza-photo:hover {
    transform: scale(1.02);
}

.about-text h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #333;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text h3 {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 30px;
    font-style: italic;
}

.about-description {
    margin-bottom: 25px;
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

.stats {
    display: flex;
    gap: 40px;
    margin: 40px 0;
    justify-content: center;
}

.stat {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fa709a, #fee140);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
}

.achievements {
    list-style: none;
    margin: 30px 0;
}

.achievements li {
    padding: 12px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
    font-size: 1.05rem;
}

.achievements li:before {
    content: "✓";
    color: #43e97b;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.quote {
    font-style: italic;
    font-size: 1.2rem;
    color: #666;
    border-left: 4px solid #fa709a;
    padding-left: 25px;
    margin: 35px 0;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Instagram Section */
.instagram-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram-block {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    padding: 40px;
    border-radius: 20px;
    color: white;
    text-align: center;
    box-shadow: 0 20px 40px rgba(131, 58, 180, 0.3);
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.instagram-block:hover {
    transform: rotate(0deg) scale(1.05);
}

.instagram-title {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.instagram-handles {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.instagram-subtitle {
    opacity: 0.9;
    font-size: 1rem;
    margin-bottom: 25px;
}

.btn-instagram {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.btn-instagram:hover {
    background: white;
    color: #833ab4;
}

/* Gallery Section */
.gallery-section {
    padding: 120px 0;
    background: white;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 60px;
    font-size: 1.2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.gallery-tab {
    padding: 12px 30px;
    border: 2px solid #667eea;
    background: transparent;
    color: #667eea;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gallery-tab.active,
.gallery-tab:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.gallery-overlay p {
    opacity: 0.9;
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.testimonials-section .section-title {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-10px);
}

.testimonial-image {
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.testimonial-text {
    font-style: italic;
    color: white;
    margin-bottom: 20px;
    line-height: 1.7;
    opacity: 0.95;
}

.testimonial-author strong {
    color: white;
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* Enhanced Featured Section */
.featured-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: white;
    text-align: center;
}

.featured-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
    letter-spacing: 4px;
    font-weight: 300;
}

.featured-content {
    max-width: 1000px;
    margin: 0 auto;
}

.featured-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.logo-item {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.logo-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.logo {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.logo-subtitle {
    font-size: 0.9rem;
    opacity: 0.7;
    font-style: italic;
}

/* Services Section */
.services-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.services-section .section-title,
.services-section .section-subtitle {
    color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-15px);
}

.service-image {
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.6rem;
    margin: 25px 25px 15px;
    color: white;
}

.service-card p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0 25px 20px;
    line-height: 1.6;
}

.price {
    margin: 0 25px 15px;
}

.price-discount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fee140;
    margin-right: 15px;
}

.price-original {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
}

.duration {
    color: rgba(255, 255, 255, 0.8);
    margin: 0 25px 25px;
    font-size: 0.95rem;
}

.btn-service {
    background: linear-gradient(135deg, #fa709a, #fee140);
    color: white;
    margin: 0 25px 25px;
    width: calc(100% - 50px);
    font-weight: 600;
}

.btn-gallery {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    display: block;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.btn-gallery:hover {
    background: white;
    color: #667eea;
}

/* Makeup Services Section */
.makeup-services-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.makeup-services-section .section-title,
.makeup-services-section .section-subtitle {
    color: white;
}

.makeup-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.makeup-service-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.makeup-service-card:hover {
    transform: translateY(-10px);
}

.makeup-service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: white;
}

.makeup-service-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.6;
}

.price-range {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fee140;
    margin-bottom: 25px;
}

/* Enhanced Special Offer Section */
.special-offer-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: white;
    position: relative;
    overflow: hidden;
}

.special-offer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.offer-card {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.05);
    padding: 60px 40px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.offer-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #fa709a, #fee140);
    color: white;
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.offer-card h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-style: italic;
    font-weight: 300;
}

.offer-card h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #fee140;
}

.offer-discount {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fa709a, #fee140);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    text-shadow: 0 0 30px rgba(250, 112, 154, 0.5);
}

.offer-card p {
    margin-bottom: 35px;
    opacity: 0.9;
    font-size: 1.1rem;
    line-height: 1.6;
}

.offer-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 35px 0;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.offer-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.offer-item i {
    color: #43e97b;
    font-size: 1.2rem;
}

.offer-item span {
    font-size: 1.05rem;
}

.btn-offer {
    background: linear-gradient(135deg, #fa709a, #fee140);
    color: white;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 1.1rem;
    padding: 20px 40px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(250, 112, 154, 0.4);
}

.offer-expires {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3,
.booking-options h3 {
    font-size: 1.6rem;
    margin-bottom: 30px;
    color: #333;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-item {
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
}

.contact-item strong {
    display: block;
    color: #667eea;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.contact-item p {
    color: #666;
    font-size: 1.05rem;
}

.studio-hours {
    margin-top: 40px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.studio-hours h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.studio-hours p {
    color: #666;
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.booking-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.free-consultation {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.free-consultation h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.free-consultation p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.travel-fees {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    margin: 25px 0;
    border-left: 4px solid #667eea;
}

.travel-fees strong {
    color: #333;
    display: block;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.travel-fees p {
    color: #666;
    margin-bottom: 8px;
    line-height: 1.5;
}

.btn-consultation {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    color: white;
    width: 100%;
    font-weight: 600;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .logo-img {
        height: 45px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .nav-btn {
        padding: 8px 12px;
        font-size: 11px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .instagram-section {
        margin-top: 30px;
    }
    
    .instagram-block {
        transform: none;
        margin: 0 20px;
    }
    
    .stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .gallery-tabs {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .gallery-tab {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .makeup-services-grid {
        grid-template-columns: 1fr;
    }
    
    .offer-details {
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .about-text h2 {
        font-size: 2.2rem;
    }
    
    .offer-discount {
        font-size: 3rem;
    }
    
    .featured-logos {
        grid-template-columns: 1fr;
    }
    
    .nav-btn {
        padding: 6px 10px;
        font-size: 10px;
    }
}

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

.hero-content {
    animation: fadeInUp 1s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for video */
.hero-video {
    opacity: 0;
    animation: fadeIn 2s ease-in-out 0.5s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}
