/* Bridal Jewelry Video Section */
.bridal-jewelry-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f8f5;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 2;
}

.bridal-content {
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 40px 20px;
    max-width: 600px;
    margin: 0 auto;
}

.bridal-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #d4af37;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.bridal-description {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', Arial, sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    font-weight: 400;
    letter-spacing: 0.3px;
    text-align: center;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.bridal-description .highlight {
    font-style: italic;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
}

.chat-now-btn {
    background-color: #ffffff;
    color: #333333;
    border: none;
    padding: 15px 40px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    min-width: 180px;
}

.chat-now-btn:hover {
    background-color: #d4af37;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.chat-now-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .bridal-jewelry-section {
        height: 100vh;
        min-height: 500px;
    }

    .bridal-content {
        bottom: 60px;
        padding: 30px 15px;
    }

    .bridal-title {
        font-size: 2.5rem;
        margin-bottom: 25px;
    }

    .bridal-description {
        font-size: 0.95rem;
        margin-bottom: 35px;
        padding: 0 15px;
        line-height: 1.6;
        letter-spacing: 0.2px;
    }

    .chat-now-btn {
        padding: 12px 35px;
        font-size: 0.9rem;
        min-width: 160px;
    }
}

@media (max-width: 480px) {
    .bridal-content {
        bottom: 40px;
    }

    .bridal-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .bridal-description {
        font-size: 0.9rem;
        line-height: 1.6;
        letter-spacing: 0.1px;
        padding: 0 20px;
    }

    .chat-now-btn {
        padding: 10px 30px;
        font-size: 0.85rem;
        min-width: 140px;
    }
}

/* Animation for content appearance */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bridal-content {
    animation: fadeInUp 1s ease-out 0.5s both;
}

.bridal-title {
    animation: fadeInUp 1s ease-out 0.7s both;
}

.bridal-description {
    animation: fadeInUp 1s ease-out 0.9s both;
}

.chat-now-btn {
    animation: fadeInUp 1s ease-out 1.1s both;
}

/* Updated bridal description */
.bridal-description {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', Arial, sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    font-weight: 400;
    letter-spacing: 0.3px;
    text-align: center;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.bridal-description .highlight {
    font-style: italic;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
}

.bridal-description{

}