/* Weddings & Events Page Styles */

/* Hero Section */
.wedding-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.wedding-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.wedding-hero .hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wedding-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 134, 171, 0.8) 0%, rgba(241, 143, 1, 0.8) 100%);
    z-index: -1;
}

.wedding-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.wedding-hero .hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.wedding-hero .hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    opacity: 1;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
}



/* About Section */
.wedding-about-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafb 0%, #f0f7ff 100%);
}

.wedding-about-section .wedding-image {
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.wedding-about-section .wedding-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.wedding-quote {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    position: relative;
    font-style: italic;
}

.wedding-quote::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -10px;
    left: 20px;
    color: rgba(255, 255, 255, 0.3);
}

.wedding-quote cite {
    display: block;
    margin-top: 1rem;
    font-weight: 600;
    font-style: normal;
}

.wedding-content .section-title {
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.wedding-content .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

.wedding-content .section-subtitle {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 2.5rem 0 1.5rem 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    position: relative;
    padding-left: 0;
}

.wedding-content .section-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    text-align: center;
    padding-left: 0;
}

.wedding-content p {
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.8;
}

.wedding-content p:last-child {
    margin-bottom: 0;
}

.wedding-about-section .col-lg-8 {
    padding-left: 2rem;
}

@media (max-width: 768px) {
    .wedding-about-section .col-lg-8 {
        padding-left: 1rem;
        padding-top: 2rem;
    }
}

/* Stats Counter */
.stats-counter {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.counter-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 10px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transition: transform 0.3s ease;
}

.counter-item:hover {
    transform: translateY(-5px);
}

.counter-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.counter-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Services Section */
.wedding-services-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fffbe7 0%, #f8fafb 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.service-card .service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Venues Section */
.wedding-venues-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #e0eafc 100%);
}

.venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.venue-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.venue-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.venue-card .venue-image {
    height: 200px;
    overflow: hidden;
}

.venue-card .venue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.venue-card:hover .venue-image img {
    transform: scale(1.1);
}

.venue-card .venue-content {
    padding: 1.5rem;
}

.venue-card h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.venue-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Contact Section */
.wedding-contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafb 0%, #fffbe7 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.wedding-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.wedding-contact-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.wedding-contact-section .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.wedding-contact-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wedding-contact-section .section-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.contact-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(46, 134, 171, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 280px;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(46, 134, 171, 0.2);
}

.contact-card .contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 0 1.5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 25px rgba(46, 134, 171, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(46, 134, 171, 0.4);
}

.contact-card h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    text-align: center;
    width: 100%;
}

.contact-card .contact-info {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.contact-card .contact-info p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.contact-card .contact-info p:last-child {
    margin-bottom: 0;
}

.contact-card .contact-info p strong {
    color: var(--text-primary);
    font-weight: 600;
}

.contact-card .contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background: rgba(46, 134, 171, 0.1);
    transition: all 0.3s ease;
    margin: 0.5rem 0;
    text-align: center;
    min-width: 200px;
}

.contact-card .contact-link:hover {
    color: var(--secondary-color);
    background: rgba(241, 143, 1, 0.1);
    transform: translateY(-2px);
}

.contact-card .contact-link i {
    font-size: 0.9rem;
}

.contact-card .contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
    text-align: center;
    width: 100%;
}

.contact-cta {
    text-align: center;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.contact-cta .cta-content {
    margin-bottom: 2rem;
}

.contact-cta .cta-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contact-cta .cta-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

.contact-cta .cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-width: 200px;
    justify-content: center;
}

.contact-cta .btn i {
    font-size: 1rem;
}

.contact-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}



/* Animation Classes */
.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .wedding-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .wedding-hero .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .stats-counter {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .venues-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .contact-card {
        padding: 2rem 1.5rem;
        min-height: 250px;
    }

    .contact-card .contact-icon {
        width: 70px;
        height: 70px;
        font-size: 1.6rem;
    }

    .contact-card h3 {
        font-size: 1.2rem;
    }

    .contact-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 0 1rem;
    }

    .contact-cta .cta-content h3 {
        font-size: 1.5rem;
    }

    .contact-cta .cta-content p {
        font-size: 1rem;
    }

    .contact-cta .btn {
        min-width: 180px;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
    
    .wedding-content .section-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .wedding-hero .hero-title {
        font-size: 2rem;
    }
    
    .stats-counter {
        grid-template-columns: 1fr;
    }
    
    .service-card,
    .venue-card,
    .contact-card {
        padding: 1.5rem;
    }

    .wedding-contact-section .section-title {
        font-size: 2rem;
    }

    .wedding-contact-section .section-description {
        font-size: 1rem;
    }

    .contact-card .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
        margin: 0 0 1rem 0;
    }

    .contact-card h3 {
        font-size: 1.1rem;
    }

    .contact-cta .cta-content h3 {
        font-size: 1.3rem;
    }

    .contact-cta .btn {
        min-width: 160px;
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    


} 