    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');
    
    :root {
        --primary: #6c3483;
        --secondary: #9b59b6;
        --accent: #8e44ad;
        --light: #f9f0ff;
        --dark: #2c3e50;
        --white: #ffffff;
    }

    body {
        font-family: 'Poppins', sans-serif;
        padding-bottom: 70px;
        color: var(--dark);
        background-color: #f8f7fa;
    }

    body.no-scroll {
        overflow: hidden;
        height: 100vh;
    }

    .font-script {
        font-family: 'Great Vibes', cursive;
    }

    .cover {
        height: 100vh;
        width: 100%;
        background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../img/m-1.jpeg") center/cover no-repeat;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .cover-content {
        background: rgba(255, 255, 255, 0.7);
        width: 85%;
        padding: 40px;
        text-align: center;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .section {
        padding: 60px 20px;
    }

    .section-title {
        margin-bottom: 10px;
        text-align: center;
        color: var(--primary);
    }

    .bottom-navbar {
        position: fixed;
        bottom: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        padding: 10px 0;
    }

    .nav-item {
        text-align: center;
    }

    .nav-link {
        color: var(--dark);
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 0.8rem;
        padding: 8px 0;
        transition: all 0.3s ease;
    }

    .nav-link i {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }

    .nav-link.active {
        color: var(--primary);
        font-weight: 600;
    }

    .countdown-container {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin: 30px 0;
    }

    .countdown-box {
        background-color: var(--light);
        border-radius: 15px;
        padding: 15px;
        width: 70px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(108, 52, 131, 0.1);
        border: 1px solid rgba(108, 52, 131, 0.2);
    }

    .countdown-value {
        font-size: 1.8rem;
        font-weight: bold;
        margin: 0;
        color: var(--primary);
    }

    .countdown-label {
        font-size: 0.75rem;
        margin: 0;
        color: var(--accent);
        font-weight: 500;
    }

    .couple-img {
        width: 180px;
        height: 180px;
        border-radius: 50%;
        object-fit: cover;
        margin: 0 auto 20px;
        display: block;
        border: 5px solid var(--white);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .timeline-container {
        position: relative;
        padding-left: 40px;
        margin-bottom: 50px;
    }

    .timeline-container::before {
        content: '';
        position: absolute;
        left: 10px;
        top: 10px;
        height: 100%;
        width: 2px;
        background-color: var(--secondary);
    }

    .timeline-item {
        position: relative;
        margin-bottom: 40px;
        background-color: var(--white);
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .timeline-item::before {
        content: '';
        position: absolute;
        left: -40px;
        top: 20px;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background-color: var(--primary);
        box-shadow: 0 0 0 4px rgba(108, 52, 131, 0.2);
    }

    .timeline-item h4 {
        color: var(--primary);
        margin-bottom: 10px;
        font-weight: 600;
    }

    .gallery-img {
        width: 100%;
        height: 230px;
        object-fit: cover;
        border-radius: 15px;
        margin-bottom: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .gallery-img:hover {
        transform: scale(1.02);
    }

    .event-card {
        background-color: var(--white);
        border-radius: 15px;
        padding: 30px;
        margin-bottom: 25px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        border-left: 5px solid var(--primary);
    }

    .event-card h3 {
        color: var(--primary);
        font-weight: 600;
    }

    .event-icon {
        color: var(--accent);
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .comment-card {
        background-color: var(--white);
        border-radius: 15px;
        padding: 20px;
        margin-bottom: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .audio-btn {
        position: fixed;
        right: 20px;
        top: 20px;
        background-color: var(--white);
        border-radius: 50%;
        width: 45px;
        height: 45px;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        color: var(--primary);
        border: none;
        transition: all 0.3s ease;
    }

    .audio-btn:hover {
        transform: scale(1.1);
    }

    .hero {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        background-color: var(--white);
        border-radius: 20px;
        padding: 40px 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }
    
    .divider {
        width: 80px;
        border-top: 2px solid var(--primary);
        margin: 15px auto 25px;
    }
    
    .opening-text {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 20px;
    }
    
    .btn-custom {
        background-color: var(--primary);
        color: white;
        border: none;
        padding: 12px 30px;
        border-radius: 50px;
        font-weight: 500;
        letter-spacing: 1px;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(108, 52, 131, 0.3);
    }
    
    .btn-custom:hover {
        background-color: var(--accent);
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(108, 52, 131, 0.4);
        color: white;
    }
    
    .btn-outline-custom {
        border: 2px solid var(--primary);
        color: var(--primary);
        background-color: transparent;
        padding: 10px 25px;
        border-radius: 50px;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .btn-outline-custom:hover {
        background-color: var(--primary);
        color: white;
    }
    
    .maps-container {
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        height: 300px;
        margin-top: 20px;
    }
    
    .form-control, .form-select {
        padding: 12px 20px;
        border-radius: 10px;
        border: 1px solid #e1e1e1;
        background-color: #f9f9f9;
    }
    
    .form-control:focus, .form-select:focus {
        border-color: var(--secondary);
        box-shadow: 0 0 0 0.25rem rgba(108, 52, 131, 0.25);
    }
    
    .badge {
        padding: 6px 12px;
        border-radius: 50px;
        font-weight: 500;
    }
    
    .pulse-animation {
        animation: pulse 1.5s infinite;
    }
    
    @keyframes pulse {
        0% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.05);
        }
        100% {
            transform: scale(1);
        }
    }
    
    .ornament {
        color: var(--primary);
        font-size: 1.5rem;
        margin: 0 5px;
    }
    
    .section-separator {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 30px 0;
    }
    
    .separator-line {
        height: 1px;
        background-color: rgba(108, 52, 131, 0.2);
        flex-grow: 1;
    }
    
    .footer {
        text-align: center;
        padding: 30px 20px;
        background-color: var(--primary);
        color: white;
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
        margin-top: 50px;
        height: 100%;
        width: 100%;
        padding-bottom: 100px;
        margin-bottom: -5rem;
    }
    
    #rsvp-list {
        max-height: 400px;
        overflow-y: auto;
        scrollbar-width: thin;
        scrollbar-color: #ccc transparent;
        margin-bottom: -4rem;
    }
    
    #rsvp-list::-webkit-scrollbar {
        width: 6px;
    }
    
    #rsvp-list::-webkit-scrollbar-thumb {
        background-color: #ccc;
    }
    
    /* Vendor content layout */
    .vendor-content {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Gaya untuk logo vendor */
    .vendor-logo {
        width: 140px !important; /* Membuat logo lebih besar */
        height: 140px !important;
        object-fit: contain; /* Menjaga agar logo tetap proporsional */
        margin-right: 20px; /* Memberikan ruang antara logo dan teks */
    }
    
    /* Gaya untuk informasi vendor */
    .vendor-info {
        text-align: left;
    }
    
    /* Gaya untuk judul dan deskripsi */
    .vendor-info h5 {
        margin: 0;
        font-size: 1.2rem;
        font-weight: bold;
    }
    
    .vendor-info p {
        margin: 0;
        font-size: 1rem;
        color: #555;
    }