
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* --primary-red: #636b2f; */
            --primary-red: #898355;
            --dark-red: #898375;
            /* --dark-red: #636b4f; */
            --cream: #fdf5e6;
            --light-cream: #fefefe;
            --dark-text: #2c2c2c;
            --gold: #d4af37;
            --light-gray: #f5f5f5;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            line-height: 1.6;
            color: var(--dark-text);
            background-color: var(--light-cream);
        }

        /* Header */
        .header {
            background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
            color: white;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            height: 4rem;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .nav {
            display: flex;
            height: 100%;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .logo {
            display: inline;
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 700;
            text-decoration: none;
            color: white;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--gold);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                        url('./assets/place/seating4.jpg') center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            margin-top: 64px;
        }

        .hero-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero-content p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        .cta-button {
            display: inline-block;
            background: var(--dark-text);
            background: #404040;
            color: white;
            padding: 1rem 2.5rem;
            text-decoration: none;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(137, 131, 85, 0.3);
            /* rgba(99, 107, 47, 0.3) */
        }

        .cta-button:hover {
            background: var(--dark-red);
             background: #2c2c2c;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(137, 131, 85, 0.4);
        }

        /* Sections */
        .section {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            text-align: center;
            margin-bottom: 1rem;
            color: var(--primary-red);
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            margin-bottom: 3rem;
            color: var(--gold);
            font-weight: 500;
        }

        /* About Section */
        .about {
            background: var(--cream);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .about-text {
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .about-images {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .about-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .about-image:first-child {
            grid-column: span 2;
            height: 250px;
        }

        /* Promise Section */
        .promise-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .promise-video{
            width: 100%;
            height: 100%;
            border-radius: 10px;
            filter: brightness(0.8);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            -webkit-appearance: none;
        }
        .promise-video::-webkit-media-controls-volume-slider,
.promise-video::-webkit-media-controls-mute-button {
    display: none !important;
}
    .promise-photo{
        width: 100%;
            height: 100%;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
            color: white;
            text-align: center;
            padding: 4rem 2rem;
        }

        .cta-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        /* Reviews Section */
        .reviews {
            background: var(--light-gray);
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .review-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.3s;
        }

        .review-card:hover {
            transform: translateY(-5px);
        }

        .stars,gold{
            color: var(--gold);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        .black{
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #e5e5e5;
        }

        .review-text {
            font-style: italic;
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .reviewer-name {
            font-weight: 600;
            color: var(--primary-red);
        }

        .google-logo {
            width: 20px;
            height: 20px;
            margin-left: 0.5rem;
            vertical-align: middle;
        }

        /* Footer */
        .footer {
            background: var(--dark-text);
            color: white;
            padding: 3rem 2rem 1rem;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            font-family: 'Playfair Display', serif;
            color: var(--gold);
            margin-bottom: 1rem;
        }

        .footer-bottom {
            border-top: 1px solid #555;
            padding-top: 1rem;
            margin-top: 2rem;
        }
        .candle-dinner{
            color: #7a4550 ;
        }
        .candle-dinner+p{
            color: #7a4550 ;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-content p {
                font-size: 1.2rem;
            }

            .about-content,
            .promise-content {
                grid-template-columns: 1fr;
            }

            .about-images {
                order: -1;
            }

            .section-title {
                font-size: 2.5rem;
            }
            .cta-button{
                margin-top: 1rem;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .review-card a{
            text-decoration: none;
            color: #898355;
        }
        .review-link a{
            color: #2c2c2c;
            margin: 5px 25px 0 0;
        }
        .nav-logo{
            display: flex;
            align-items: center;
            justify-items: center;
        }
        .loi{
            height: 2.5rem;
            width: 2.5rem;
            margin-right: 1rem;
        }
        .fade-in {
            animation: fadeInUp 0.6s ease-out;
        }
        