
        /* General Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Cormorant Garamond', serif;
        }
        
        body {
            background-color: #f9f7f4;
            color: #3a3a3a;
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        h1, h2, h3 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 300;
            color: #9b7b55;
        }
        
        p {
            line-height: 1.6;
            margin-bottom: 15px;
        }
        
        .text-center {
            text-align: center;
        }
        
        .mt-50 {
            margin-top: 50px;
        }
        
        .mb-50 {
            margin-bottom: 50px;
        }
        
        .section {
            padding: 80px 0;
            position: relative;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: #9b7b55;
            color: white;
            text-decoration: none;
            border-radius: 30px;
            transition: all 0.3s ease;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: #85684a;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .divider {
            width: 150px;
            height: 2px;
            background-color: #9b7b55;
            margin: 30px auto;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            background-image: url('img/hero.jpeg'); 
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            position: relative;
            color: #fff;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }
        
        
        .hero-content {
            position: relative;
            z-index: 3;
            max-width: 800px;
            padding: 0 20px;
        }
        
        .hero h1 {
            font-size: 72px;
            margin-bottom: 20px;
            color: #fff;
            font-family: 'Great Vibes', cursive;
        }
        
        .hero p {
            font-size: 24px;
            margin-bottom: 30px;
        }
        
        .date-badge {
            background-color: rgba(255, 255, 255, 0.9);
            color: #3a3a3a;
            padding: 15px 30px;
            border-radius: 5px;
            font-size: 24px;
            margin-top: 30px;
        }

        /* Remainder of your CSS stays the same */
        /* Couple Section */
        .couple {
            background-color: #fff;
        }
        
        .couple-container {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 50px;
        }
        
        .partner {
            text-align: center;
            flex: 1;
            min-width: 300px;
        }
        
        .partner img {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 20px;
            border: 5px solid rgba(155, 123, 85, 0.3);
        }
        
        .partner h3 {
            font-size: 28px;
            margin-bottom: 10px;
        }
        
        .heart-divider {
            font-size: 40px;
            color: #9b7b55;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* Event Details */
        .event-details {
            background-color: #f9f7f4;
        }
        
        .event-card {
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            padding: 30px;
            margin-bottom: 30px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .event-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .event-card i {
            font-size: 40px;
            color: #9b7b55;
            margin-bottom: 20px;
        }
        
        .event-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
        }
        
        /* Map Section */
        .map-container {
            height: 400px;
            margin-top: 30px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* RSVP Section */
        .rsvp {
            background-color: #fff;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            border-color: #9b7b55;
            outline: none;
            box-shadow: 0 0 0 3px rgba(155, 123, 85, 0.3);
        }
        
        textarea.form-control {
            resize: vertical;
            min-height: 100px;
        }
        
        .radio-group {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .radio-option {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        /* Quotes Section */
        .quotes {
            background:url('img/hero.jpeg') no-repeat center center;
            background-size: cover;
            color: #fff;
            text-align: center;
            position: relative;
        }
        
        .quotes::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
        }
        
        .quotes-content {
            position: relative;
            z-index: 1;
        }
        
        .quote {
            font-size: 28px;
            font-style: italic;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        
        .quote-author {
            font-size: 18px;
        }
        
        /* Gallery Section */
        .gallery {
            background-color: #f9f7f4;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }
        
        .gallery-item {
            height: 250px;
            overflow: hidden;
            border-radius: 10px;
            position: relative;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        /* Wishes Section */
        .wishes {
            background-color: #fff;
        }
        
        .wishes-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .wish-card {
            background-color: #f9f7f4;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .wish-card p {
            font-style: italic;
            margin-bottom: 10px;
        }
        
        .wish-author {
            text-align: right;
            font-weight: bold;
            color: #9b7b55;
        }
        
        /* Footer */
        footer {
            background-color: #3a3a3a;
            color: #fff;
            text-align: center;
            padding: 30px 0;
        }
        
        footer p {
            margin-bottom: 0;
        }
        
        /* Music Player */
        .music-player {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .music-player:hover {
            transform: scale(1.1);
        }
        
        .music-player i {
            font-size: 24px;
            color: #9b7b55;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 48px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .section {
                padding: 60px 0;
            }
            
            .partner {
                min-width: 100%;
            }
            
            .heart-divider {
                margin: 20px 0;
            }
            
            .flower-top-left, .flower-bottom-right {
                width: 100px;
                height: 100px;
            }
        }
