/* Base Styles for Home Page Content */

/* Hero Section Styles */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-white);
}

.hero-section video.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.btn-hero {
    background-color: var(--primary-color);
    color: var(--text-white);
    font-family: var(--font-secondary);
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 50px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(232, 107, 140, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.6s;
}

.btn-hero:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 6px 20px rgba(232, 107, 140, 0.6);
    transform: translateY(-2px);
}

.btn-hero:hover:before {
    left: 100%;
}

/* Services Section Styles */
.services-section {
    padding: 100px 0;
    background-color: var(--background-light);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    font-family: var(--font-secondary);
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-primary);
    color: var(--secondary-color);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.divider {
    position: relative;
    text-align: center;
    height: 20px;
}

.divider span {
    display: inline-block;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    position: relative;
}

.divider span:before, .divider span:after {
    content: '';
    position: absolute;
    top: -3px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.divider span:before {
    left: -5px;
}

.divider span:after {
    right: -5px;
}

.service-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    font-family: var(--font-secondary);
    background: transparent;
    border: 2px solid var(--primary-light);
    padding: 8px 20px;
    margin: 5px;
    border-radius: 30px;
    color: var(--text-light);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-white);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background-color: var(--background-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-color);
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-dark);
    display: block;
}

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

.service-image-container {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(110, 59, 90, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-icon {
    background-color: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    transform: translateY(-20px);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: translateY(0);
}

.view-details {
    color: var(--text-white);
    font-family: var(--font-secondary);
    font-weight: 600;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.service-card:hover .view-details {
    transform: translateY(0);
}

.service-info {
    padding: 20px;
    text-align: center;
}

.service-name {
    font-family: var(--font-primary);
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-white);
    font-family: var(--font-secondary);
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(232, 107, 140, 0.3);
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(232, 107, 140, 0.5);
}

#explore-more {
    margin-top: 20px;
}

/* Featured Vendors Section */
.featured-vendors-section {
    padding: 100px 0;
    background-color: var(--background-white);
}

.featured-slider {
    position: relative;
    padding: 0 10px;
}

.vendor-card {
    background-color: var(--background-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px var(--shadow-color);
    transition: all 0.3s ease;
    height: 100%;
}

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

.vendor-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.vendor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.vendor-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-color);
    color: var(--text-white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vendor-info {
    padding: 20px;
    text-align: center;
}

.vendor-info h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-weight: 600;
}

.vendor-info p {
    font-family: var(--font-secondary);
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.vendor-meta {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    color: var(--text-light);
}

.vendor-meta span i {
    color: var(--primary-color);
    margin-right: 5px;
}

.swiper-button-next, .swiper-button-prev {
    color: var(--primary-color) !important;
    width: 40px !important;
    height: 40px !important;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 5px 15px var(--shadow-color);
    opacity: 0;
    transition: all 0.3s ease;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 18px !important;
}

.featured-slider:hover .swiper-button-next,
.featured-slider:hover .swiper-button-prev {
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color) !important;
}

/* Gallery Section Styles */
.gallery-section {
    padding: 100px 0;
    background-color: var(--background-light);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(110, 59, 90, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay a {
    background-color: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0);
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay a {
    transform: scale(1);
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 100px 0;
    background-color: var(--background-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--background-white);
    border-radius: 15px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-color);
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 32px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background-color: var(--primary-color);
}

.feature-card:hover .feature-icon i {
    color: var(--text-white);
}

.feature-card h3 {
    font-family: var(--font-primary);
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    font-family: var(--font-secondary);
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Contact Section Styles */
.contact-section {
    padding: 100px 0;
    background-color: var(--background-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-info {
    padding-right: 30px;
}

.contact-info p {
    font-family: var(--font-secondary);
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    margin-bottom: 20px;
}

.contact-item .icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}

.contact-item .icon i {
    color: var(--primary-color);
    font-size: 20px;
}

.contact-item .text h4 {
    font-family: var(--font-primary);
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-item .text p {
    font-family: var(--font-secondary);
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.social-links {
    display: flex;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-5px);
}

.contact-form {
    background-color: var(--background-white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 15px 40px var(--shadow-color);
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 0;
}

.form-group:nth-child(5), .form-group:nth-child(6) {
    grid-column: span 2;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px var(--primary-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group button {
    width: 100%;
    padding: 15px;
    font-family: var(--font-secondary);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(232, 107, 140, 0.5);
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.show {
    visibility: visible;
    opacity: 1;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        padding-right: 0;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        height: 70vh;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .form-container {
        grid-template-columns: 1fr;
    }
    
    .form-group:nth-child(5), .form-group:nth-child(6) {
        grid-column: span 1;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fade-in-up {
    animation: fadeInUp 1s ease forwards;
}

/* Animate.css Integration */
.animate__animated {
    animation-duration: 1s;
}

.animate__delay-1s {
    animation-delay: 1s;
}

.animate__delay-2s {
    animation-delay: 2s;
}