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

        :root {
            --dark-bg: #1a1a1a;
            --darker-bg: #28282B;
            --accent: #F4BB44;
            --accent-hover: #3d5f9e;
            --text-primary: #ffffff;
            --text-secondary: #e0e0e0;
            --red-accent: #c92a2a;
        }

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

        /* Header/Navigation */
        header {
            position: top;
            top: 0;
            left: 0;
            right: 0;
            padding: 1.5rem 3rem;
            display: flex;
            justify-content: space-evenly;
            align-items: center;
            z-index: 1000;
            background: var(--dark-bg);
            backdrop-filter: blur(10px);
        }

        .logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-weight: 300;
            letter-spacing: 2px;
            color: var(--text-primary);
            text-decoration: none;
        }

        .header-book-btn {
            padding: 0.75rem 2rem;
            background-color: var(--accent);
            color: white;
            border: none;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.95rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            border-radius: 12px;
        }

        .header-book-btn:hover {
            background-color: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(44, 74, 124, 0.4);
        }

        .gold-divider {
            height: 1px;
            background: linear-gradient(to right, transparent, rgba(244, 187, 68, 0.4), transparent);
            width: 100%;
        }

        /* Hero Section */
        .hero {
            min-height: 60vh;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            padding: 3rem 3rem;
            position: relative;
            background: var(--darker-bg);
            max-width: 1000px;
            margin: 0 auto;
        }

        .hero-content {
            padding-right: 4rem;
            animation: fadeInLeft 1s ease-out;
            text-align:center;
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 5rem;
            font-weight: 300;
            line-height: 1.1;
            margin-bottom: 1rem;
            letter-spacing: 3px;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            font-weight: 300;
            letter-spacing: 4px;
            margin-bottom: 1.5rem;
            color: #F4BB44;
        }

        .cta-button {
            padding: 1.0rem 2rem;
            background-color: var(--accent);
            color: white;
            border: none;
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            letter-spacing: 1px;
            border-radius:12px;
        }

        .cta-button:hover {
            background-color: black;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(244, 187, 68, 0.5);
        }

        .hero-image {
            position: relative;
            text-align:center;
            animation: fadeInRight 1s ease-out;
        }

        .hero-image img {
            border-radius:24px;
            border-color: #F4BB44;
            width: 100%;
            max-width: 600px;
            height: auto;
            display: block;
            margin-right: auto;
        }

        /* Gallery Section */
        .gallery {
            padding: 4rem 3rem;
            background-color: var(--darker-bg);
            position: relative;
        }

        .gallery::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(to right, transparent, rgba(244, 187, 68, 0.3), transparent);
        }

        .gallery-subtitle {
            text-align: center;
            font-size: 0.9rem;
            letter-spacing: 3px;
            color: var(--text-secondary);
            margin-top: -1.5rem;
            margin-bottom: 2rem;
            text-transform: uppercase;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 0.75rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .gallery-item {
            aspect-ratio: 1 / 1;
            overflow: hidden;
            border-radius: 10px;
            opacity: 0;
            transform: scale(0.95);
            transition: opacity 0.5s ease, transform 0.5s ease;
            position: relative;
        }

        .gallery-item.visible {
            opacity: 1;
            transform: scale(1);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }

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

        .gallery-item::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
            border-radius: 10px;
        }

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

        /* Services Section */
        .services {
            padding: 4rem 3rem;
            background-color: var(--darker-bg);
            position: relative;
        }

        .services-card {
            max-width: 1000px;
            margin: 0 auto;
            background-color: var(--dark-bg);
            border-radius: 16px;
            padding: 3rem 3rem 2.5rem;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .section-title {
            font-family: 'Cormorant Garamond', serif;
            color:#F4BB44;
            font-size: 3.5rem;
            font-weight: 300;
            text-align: center;
            margin-bottom: 1.5rem;
            letter-spacing: 2px;
        }

        .services-list {
            max-width: 100%;
            margin: 0 auto 2rem;
            list-style: none;
        }

        .services-list li {
            font-size: 1.2rem;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            letter-spacing: 2px;
            transition: all 0.3s ease;
        }

        .services-list li:hover {
            padding-left: 1rem;
            color: var(--accent-hover);
        }

        .services-list li::before {
            content: '• ';
            margin-right: 0.5rem;
        }

        .services-cta {
            text-align: center;
        }

        /* Footer */
        footer {
            background-color: var(--darker-bg);
            padding: 2.5rem 3rem 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 4rem;
            max-width: 1000px;
            margin: 0 auto 1.5rem;
        }

        .footer-section h3 {
            color: #F4BB44;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            font-weight: 300;
            margin-bottom: 1.5rem;
            letter-spacing: 2px;
        }

        .footer-section p,
        .footer-section a {
            color: var(--text-secondary);
            font-size: 1rem;
            line-height: 1.8;
            text-decoration: none;
            transition: color 0.3s ease;
        }

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

        .social-link {
            display: inline-block;
            margin-top: 0.5rem;
        }

        @media (max-width: 968px) {
            header {
                padding: 1.5rem 2rem;
            }

            .hero {
                grid-template-columns: 1fr;
                padding: 4rem 2rem 2rem;
                text-align: center;
            }

            .hero-content {
                padding-right: 0;
                margin-bottom: 1.5rem;
            }

            .hero-title {
                font-size: 3.5rem;
            }

            .hero-image img {
                margin: 0 auto;
                max-width: 500px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .services {
                padding: 3rem 2rem;
            }

            .services-card {
                padding: 2rem;
            }

            .gallery {
                padding: 3rem 2rem;
            }

            .gallery-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 640px) {
            .logo {
                font-size: 1.5rem;
            }

            .header-book-btn {
                padding: 0.6rem 1.5rem;
                font-size: 0.85rem;
            }

            .hero {
                padding: 3rem 1.5rem 2rem;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1rem;
                letter-spacing: 2px;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .services-list li {
                font-size: 1rem;
            }

            .services-card {
                padding: 1.5rem;
            }

            .footer-content {
                padding: 0 1rem;
            }

            .gallery {
                padding: 3rem 1.5rem;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.5rem;
            }
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 2rem;
        }
