:root {
    --primary: #E8C4C4;  /* Soft nude pink */
    --secondary: #D2A3A3; /* Muted dusty rose */
    --dark: #3A3232;     /* Warm dark brown */
    --light: #FAF5F5;    /* Creamy white with pink undertone */
    --accent: #C89595;   /* Subtle mauve accent */
    --text: #4A3E3E;     /* Soft brownish-gray */
    --text-light: #8E7D7D; /* Muted pinkish-gray */
}

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

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text);
            background-color: white;
            overflow-x: hidden;
            line-height: 1.6;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }

        /* Header */
        header {
            position: fixed;
            width: 100%;
            z-index: 1000;
            transition: all 0.3s ease;
            padding: 20px 5%;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }

        header.scrolled {
            padding: 15px 5%;
            background: rgba(255, 255, 255, 0.98);
        }

        .logo {
            font-size: 28px;
            font-weight: 900;
            color: var(--primary);
            text-decoration: none;
            font-family: 'Montserrat', sans-serif;
        }

        .logo span {
            color: var(--dark);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 30px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            font-size: 16px;
            transition: color 0.3s;
            position: relative;
        }

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

        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--primary);
            bottom: -5px;
            left: 0;
            transition: width 0.3s;
        }

        .nav-links a:hover:after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            cursor: pointer;
            font-size: 24px;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            padding: 0 5%;
            background: linear-gradient(rgba(58, 50, 50, 0.7), rgba(58, 50, 50, 0.7)), url(../images/nat_hero.webp) no-repeat center center/cover;
            color: white;
            position: relative;
        }

        .hero-content {
            max-width: 600px;
            animation: slideUp 1s ease forwards;
            opacity: 0;
        }

        .hero h1 {
            font-size: 72px;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .btn {
            display: inline-block;
            padding: 15px 30px;
            background: var(--primary);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 700;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 16px;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(232, 196, 196, 0.3);
            background-color: var(--secondary);
        }

        .btn-secondary {
            background: transparent;
            border: 2px solid white;
            margin-left: 15px;
        }

        .btn-secondary:hover {
            background: white;
            color: var(--dark);
        }

        .social-links {
            position: absolute;
            bottom: 40px;
            left: 5%;
        }

        .social-links a {
            color: white;
            font-size: 20px;
            margin-right: 20px;
            transition: color 0.3s;
        }

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

        /* About Section */
        .section {
            padding: 100px 5%;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 48px;
            color: var(--dark);
            margin-bottom: 15px;
        }

        .section-title p {
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-text {
            flex: 1;
        }

        .about-text h3 {
            font-size: 36px;
            margin-bottom: 20px;
            color: var(--dark);
        }

        .about-text p {
            margin-bottom: 20px;
            color: var(--text-light);
        }

        .about-image {
            flex: 1;
            position: relative;
        }

        .about-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        /* Music Section */
        .music {
            background: var(--light);
        }

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

        .music-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .music-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(216, 179, 179, 0.15);
        }

        .music-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .music-card-content {
            padding: 20px;
        }

        .music-card h3 {
            margin-bottom: 10px;
            font-size: 22px;
        }

        .music-card p {
            color: var(--text-light);
            margin-bottom: 15px;
        }

        /* Style Guide Section */
        .style-guide {
            position: relative;
            overflow: hidden;
        }

        .style-guide:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            opacity: 0.05;
            z-index: -1;
        }

        .style-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
        }

        .tab-btn {
            padding: 12px 25px;
            background: none;
            border: none;
            font-size: 16px;
            font-weight: 700;
            color: var(--text-light);
            cursor: pointer;
            position: relative;
            transition: all 0.3s;
        }

        .tab-btn.active {
            color: var(--primary);
        }

        .tab-btn.active:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 50%;
            height: 2px;
            background: var(--accent);
        }

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

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

        @keyframes slideUp {
            from {
            transform: translateY(30px);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
}
        .style-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
        }

        .style-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            height: 300px;
        }

        .style-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

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

        .style-item-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 20px;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            color: white;
        }

        .style-item-overlay h3 {
            margin-bottom: 5px;
            font-size: 18px;
        }

        .style-item-overlay p {
            font-size: 14px;
            opacity: 0.8;
        }

        /* Ebook Section */
        .ebook {
            background: var(--dark);
            color: white;
            text-align: center;
        }

        .ebook .section-title h2 {
            color: white;
        }

        .ebook .section-title p {
            color: rgba(255, 255, 255, 0.8);
        }

        /* Ebook wrapper for multiple ebook containers */
        .ebook-wrapper {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
            align-items: flex-start;
            justify-content: center;
            max-width: 1100px;
            margin: 0 auto;
        }

        .ebook-container {
            display: flex;
            align-items: center;
            gap: 50px;
            flex: 1 1 0;
            min-width: 250px;
            max-width: 100%;
        }

        .ebook-container.image-only {
            flex: 0 0 240px;
            max-width: 240px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .ebook-image {
            flex: 1;
            position: relative;
        }

        .ebook-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .ebook-badge {
            position: absolute;
            top: -20px;
            right: -20px;
            background: var(--accent);
            color: var(--dark);
            padding: 15px;
            border-radius: 50%;
            font-weight: 900;
            font-size: 20px;
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(0, 229, 255, 0.3);
        }

        .ebook-content {
            flex: 1;
            text-align: left;
            line-height: 1.2;
        }

        .ebook-content h3 {
            font-size: 36px;
            margin-bottom: 20px;
        }

        .ebook-content p {
            margin-bottom: 20px;
            opacity: 0.9;
        }

        .ebook-features {
            margin: 15px 0;
        }

        .ebook-feature {
            display: flex;
            align-items: center;
            margin-bottom: 1px;
        }

        .ebook-feature i {
            color: var(--accent);
            font-size: 20px;
            margin-right: 15px;
            position: relative;
            line-height: 1;
            top: -10px;
        }

        .price {
            font-size: 48px;
            font-weight: 700;
            margin: 15px 0;
            color: white;
        }

        .price span {
            font-size: 16px;
            font-weight: 400;
            opacity: 0.7;
        }

       /* Booking Section */
.booking {
    padding: 100px 5%;
    background: var(--light);
}

.booking-wrapper {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.booking-container {
    flex: 1;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.booking-header {
    padding: 20px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    text-align: center;
}

.booking-header h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.booking-form {
    padding: 30px;
}

.booking-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.booking-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: var(--secondary);
}

/* Responsive styles */
@media (max-width: 992px) {
    .booking-wrapper {
        flex-direction: column;
    }
    
    .booking-image {
        height: 300px;
        margin-top: 30px;
    }
}


        /* Gallery Section */
        .gallery {
            padding: 0 5% 100px;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
        }

        .gallery-item {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            aspect-ratio: 1/1;
        }

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

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

        .insta-hover {
            position: absolute;
            bottom: 10px;
            left: 10px;
            color: white;
            background: rgba(0, 0, 0, 0.5);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 14px;
            opacity: 0;
            transition: opacity 0.3s;
            display: flex;
            align-items: center;
            gap: 5px;
        }

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

        .gallery-loading {
            display: flex;
            justify-content: center;
            padding: 40px;
            grid-column: 1 / -1;
        }

          .spinner {
            width: 40px;
            height: 40px;
            border: 4px solid rgba(255, 77, 141, 0.3);
            border-radius: 50%;
            border-top-color: var(--primary);
            animation: spin 1s ease-in-out infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Elfsight Instagram Feed Customization */
        .elfsight-app-ee591f0e-a54a-4456-975c-bdc64ce93c4c {
         margin: 30px auto;
            max-width: 1200px;
        }

        /* Make feed responsive */
        @media (max-width: 768px) {
            .elfsight-app-ee591f0e-a54a-4456-975c-bdc64ce93c4c {
                padding: 0 15px;
            }
        }
        /* Contact Section */
        .contact {
            background: var(--dark);
            color: white;
        }

        .contact .section-title h2 {
            color: white;
        }

        .contact-container {
            display: flex;
            gap: 50px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-info {
            flex: 1;
        }

        .contact-info h3 {
            font-size: 28px;
            margin-bottom: 20px;
        }

        .contact-info p {
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .contact-details {
            margin-bottom: 30px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .contact-item i {
            font-size: 20px;
            color: var(--accent);
            margin-right: 15px;
            width: 20px;
        }

        .contact-social {
            display: flex;
            gap: 15px;
        }

        .contact-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 18px;
            transition: all 0.3s;
        }

        .contact-social a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        .contact-form {
            flex: 1;
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .contact-form h3 {
            font-size: 28px;
            margin-bottom: 20px;
            color: var(--dark);
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 50px 5% 20px;
            text-align: center;
        }

        .footer-logo {
            font-size: 28px;
            font-weight: 900;
            color: var(--primary);
            margin-bottom: 20px;
            display: inline-block;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            list-style: none;
            margin-bottom: 30px;
        }

        .footer-links li {
            margin: 0 15px;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .footer-social {
            margin-bottom: 30px;
        }

        .footer-social a {
            color: white;
            font-size: 20px;
            margin: 0 10px;
            transition: color 0.3s;
        }

        .footer-social a:hover {
            color: var(--accent);
        }

        .copyright {
            opacity: 0.7;
            font-size: 14px;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            overflow-y: auto;
            padding: 20px;
        }

        .modal-content {
            background: white;
            max-width: 600px;
            margin: 50px auto;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            animation: modalFadeIn 0.3s ease;
        }

        @keyframes modalFadeIn {
            from { opacity: 0; transform: translateY(-50px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .modal-header {
            padding: 20px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            position: relative;
        }

        .modal-header h3 {
            font-size: 24px;
        }

        .close-modal {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 24px;
            color: white;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .close-modal:hover {
            transform: rotate(90deg);
        }

        .modal-body {
            padding: 30px;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .about-content, .ebook-container, .contact-container {
                flex-direction: column;
            }
            
            .about-image, .ebook-image {
                margin-bottom: 30px;
            }
            
            .hero h1 {
                font-size: 56px;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: white;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: left 0.3s;
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links li {
                margin: 15px 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero h1 {
                font-size: 42px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .section-title h2 {
                font-size: 36px;
            }
            
            .btn {
                padding: 12px 20px;
                display: inline-block;
                margin-top: 20px;
            }

            .ebook-container {
                flex: 1 1 100%;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 36px;
            }
            
            .section {
                padding: 70px 5%;
            }
            
            .tab-btn {
                padding: 10px 15px;
                font-size: 14px;
            }
            
            .price {
                font-size: 36px;
            }
        }