        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }

        body {
            background-color: #000;
            color: #fff;
            overflow-x: hidden;
        }

        .navbar {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: background-color 0.3s ease;
            background-color: rgba(0, 0, 0, 0.9);
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #fff;
            text-decoration: none;
        }

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

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

        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #f0f0f0;
        }

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

        .page-header {
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-image: url('../images/Festivals/Khalid-1_C_webp.webp');
            background-size: cover; /* Makes image cover the entire area */
            background-position: center; /* Centers the image */
            background-repeat: no-repeat; /* Prevents the image from repeating */
            background-color: #111; /* Fallback color if image doesn't load */
            margin-top: 70px;
            position: relative; /* For overlay if needed */
        }

        /* Add a semi-transparent overlay to ensure text remains readable */
        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
            z-index: 1;
        }

        .page-header h1 {
            font-size: 48px;
            font-weight: 700;
            letter-spacing: 2px;
            position: relative;
            z-index: 2; /* This places the text above the overlay */
        }

        .about-content {
            padding: 100px 50px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-text {
            flex: 1;
            padding-right: 50px;
        }

        .about-text h2 {
            font-size: 36px;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .about-text p {
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 25px;
            color: #ccc;
        }

        .about-image {
            flex: 1;
            height: 600px;
            overflow: hidden;
        }

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

        .book-now-section {
            text-align: center;
            padding: 100px 0;
            background-image: url('../images/Music/GJV_1689_C_webp.webp');
            background-size: cover; /* Makes image cover the entire area */
            background-position: center; /* Centers the image */
            background-repeat: no-repeat; /* Prevents the image from repeating */
            background-color: #111; /* Fallback color if image doesn't load */
        }

        .book-now-button {
            display: inline-block;
            padding: 15px 40px;
            background-color: #fff;
            color: #000;
            text-decoration: none;
            font-size: 18px;
            font-weight: 600;
            border-radius: 4px;
            transition: all 0.3s ease;
            letter-spacing: 1px;
        }

        .book-now-button:hover {
            background-color: #ddd;
            transform: translateY(-3px);
        }

        .experience-section {
            padding: 100px 50px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .experience-section h2 {
            font-size: 36px;
            margin-bottom: 40px;
            text-align: center;
        }

        .experience-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .experience-item {
            background-color: #111;
            padding: 30px;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }

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

        .experience-item h3 {
            font-size: 22px;
            margin-bottom: 15px;
        }

        .experience-item p {
            color: #ccc;
            line-height: 1.6;
        }

        footer {
            background-color: #111;
            padding: 50px 0;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .footer-logo {
            flex: 1;
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 20px;
        }

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

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

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

        .footer-links a:hover {
            color: #ddd;
        }

        .social-links {
            flex: 1;
            display: flex;
            justify-content: flex-end;
            list-style: none;
            margin-bottom: 20px;
        }

        .social-links li {
            margin: 0 10px;
        }

        .social-links a {
            color: #fff;
            font-size: 20px;
            transition: color 0.3s ease;
        }

        .social-links a:hover {
            color: #ddd;
        }

        .copyright {
            width: 100%;
            text-align: center;
            padding-top: 20px;
            font-size: 14px;
            color: #888;
        }

        @media screen and (max-width: 768px) {
            .navbar {
                padding: 20px;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: rgba(0, 0, 0, 0.9);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
            }

            .nav-links.active {
                display: flex;
            }

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

            .mobile-menu {
                display: block;
            }

            .about-content {
                flex-direction: column;
                padding: 50px 20px;
            }

            .about-text {
                padding-right: 0;
                margin-bottom: 30px;
            }

            .experience-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                flex-direction: column;
                padding: 0 20px;
            }

            .footer-logo, .footer-links, .social-links {
                justify-content: center;
                width: 100%;
            }
        }