/* 
====================================
Wedding & Honeymoon Page Styles
====================================
*/

/* General Styles
---------------------------------------- */
:root {
    --primary-color: #00a652;
    --secondary-color: #2e3d4b;
    --accent-color: #00ae5b;
    --text-color: #333;
    --light-color: #fff;
    --dark-color: #0a0a0a;
    --gray-color: #f5f5f5;
    --transition-speed: 0.3s;
    --font-primary: 'RobotoBold_0', 'Roboto Slab', sans-serif;
    --font-secondary: 'RobotoRegular', sans-serif;
    --font-light: 'RobotoLight', sans-serif;
    --font-medium: 'RobotoMedium', sans-serif;
}

/* Hero Banner
---------------------------------------- */
.wedding-hero-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background: #000;
    margin: 0;
    padding: 0;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
}

.hero-content h1, 
.hero-content h2, 
.hero-content p, 
.hero-content span {
    color: var(--light-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-text-wrapper {
    position: relative;
    height: 160px; /* Reduced height to match smaller text size */
}

.hero-text-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease, visibility 0s linear 1s;
}

.hero-text-content.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 1s ease, transform 1s ease, visibility 0s linear;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 6vw, 3.8rem); /* Reduced from 2.8rem/5rem */
    color: var(--light-color);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-family: var(--font-secondary);
    font-size: clamp(1rem, 2.2vw, 1.4rem); /* Reduced from 1.2rem/1.8rem */
    color: var(--light-color);
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btn-wrap {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}



.btn-hero,
.btn-hero-outline {
    font-family: var(--font-secondary);
    display: inline-block;
    padding: 12px 30px;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all var(--transition-speed);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-hero {
    background-color: var(--primary-color);
    color: var(--light-color);
    border: 2px solid var(--primary-color);
}

.btn-hero:hover {
    background-color: transparent;
    color: var(--light-color);
    border-color: var(--light-color);
}

.btn-hero-outline {
    background-color: transparent;
    color: var(--light-color);
    border: 2px solid var(--light-color);
}

.btn-hero-outline:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
    border-color: var(--light-color);
}

.hero-controls {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 15;
    pointer-events: none;
}

.hero-control-prev,
.hero-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    pointer-events: auto;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.hero-control-prev {
    left: 30px;
}

.hero-control-next {
    right: 30px;
}

.hero-control-prev:hover,
.hero-control-next:hover {
    background-color: rgba(135, 106, 59, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.hero-control-prev-icon,
.hero-control-next-icon {
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    width: 18px;
    height: 18px;
    display: block;
}

.hero-control-prev-icon {
    transform: rotate(-135deg);
}

.hero-control-next-icon {
    transform: rotate(45deg);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    color: var(--light-color);
    animation: fadeInUp 2s ease infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 3px solid var(--light-color);
    border-bottom: 3px solid var(--light-color);
    transform: rotate(45deg);
    margin: 0 auto 5px;
}

.scroll-text {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate(-50%, 10px);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -10px);
    }
}

/* Main Content Sections
---------------------------------------- */
.wedding-main {
    overflow: hidden;
}

/* Common Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-tag {
    display: block;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
    line-height: 1.2;
}

.title-divider {
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin-bottom: 30px;
}

/* Introduction Section */
.wedding-intro {
    background-color: var(--light-color);
}

.highlight-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
    margin: 25px 0;
}

.section-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
}

/* Why Choose Us Section */
.wedding-why-us {
    position: relative;
    padding: 120px 0;
    color: var(--light-color);
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}

.parallax-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}

.content-card {
    background: linear-gradient(135deg, rgba(46, 61, 75, 0.9) 0%, rgba(33, 44, 55, 0.95) 100%);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-left: 4px solid var(--accent-color);
}

.wedding-why-us .section-title,
.wedding-why-us .section-tag,
.wedding-why-us h2 {
    color: var(--light-color);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
}

.feature-list li {
    display: flex;
    margin-bottom: 40px;
    transition: transform 0.3s ease;
}

.feature-list li:hover {
    transform: translateX(10px);
}

.feature-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #41c985 100%);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    transform: rotate(45deg);
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-list li:hover .feature-icon {
    background: linear-gradient(135deg, #41c985 0%, var(--accent-color) 100%);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.feature-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-list li:hover .feature-icon::after {
    opacity: 0.2;
}

.feature-icon i {
    font-size: 28px;
    color: var(--light-color);
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
}

.feature-list li:hover .feature-icon i {
    transform: rotate(-45deg) scale(1.2);
}

.feature-content h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--light-color);
}

.feature-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    color: var(--light-color);
}

/* Wedding Destinations */
.wedding-destinations {
    background-color: var(--gray-color);
}

.destination-row {
    margin-bottom: 80px;
}

.destination-row:last-child {
    margin-bottom: 0;
}

.destination-image {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.destination-image img {
    transition: transform 0.8s ease;
    width: 100%;
}

.destination-image:hover img {
    transform: scale(1.05);
}

.destination-content {
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.destination-content h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.destination-content p {
    margin-bottom: 25px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.destination-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.destination-features li {
    margin-bottom: 12px;
    font-size: 1rem;
}

.destination-features i {
    color: var(--accent-color);
    margin-right: 10px;
}

.btn-discover {
    font-family: var(--font-secondary);
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    padding: 5px 0;
    position: relative;
    transition: all var(--transition-speed);
}

.btn-discover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0.3);
    transform-origin: left;
    transition: transform var(--transition-speed);
}

.btn-discover:hover {
    color: var(--accent-color);
}

.btn-discover:hover::after {
    transform: scaleX(1);
    background-color: var(--accent-color);
}

.btn-discover i {
    margin-left: 8px;
    transition: transform var(--transition-speed);
}

.btn-discover:hover i {
    transform: translateX(5px);
}

/* Testimonials Section */
.wedding-testimonials {
    background-color: var(--light-color);
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial-item {
    opacity: 0;
    position: absolute;
    transition: opacity 0.8s ease;
    width: 100%;
}

.testimonial-item.active {
    opacity: 1;
    position: relative;
}

.testimonial-content {
    background-color: var(--gray-color);
    padding: 40px;
    border-radius: 5px;
    position: relative;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-content::before {
    content: '\201C';
    font-family: Georgia, serif;
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 80px;
    color: rgba(200, 169, 126, 0.3);
    z-index: 0;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-author h4 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.testimonial-author p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--accent-color);
}

.testimonial-indicators {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    display: inline-block;
    transition: background-color var(--transition-speed);
    cursor: pointer;
}

.testimonial-dot.active {
    background-color: var(--accent-color);
}

/* Gallery Section */
.wedding-gallery {
    background-color: var(--gray-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 1800px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/2;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(46, 61, 75, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-speed);
}

.overlay-content i {
    color: var(--light-color);
    font-size: 2rem;
}

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

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

/* Services Section */
.wedding-services {
    background-color: var(--light-color);
}

.service-card {
    background-color: var(--gray-color);
    padding: 40px 30px;
    border-radius: 5px;
    text-align: center;
    height: 100%;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon i {
    font-size: 32px;
    color: var(--light-color);
}

.service-card h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.wedding-cta {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/wedding-honeymoon.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    color: var(--light-color);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.wedding-cta h2 {
    font-family: var(--font-primary);
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--light-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.wedding-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--light-color);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}



.btn-cta,
.btn-cta-alt {
    font-family: var(--font-secondary);
    display: inline-block;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all var(--transition-speed);
    border-radius: 0;
}

.btn-cta {
    background-color: var(--primary-color);
    color: var(--light-color);
    border: 2px solid var(--primary-color);
}

.btn-cta:hover {
    background-color: transparent;
    color: var(--light-color);
    border-color: var(--light-color);
}

.btn-cta-alt {
    background-color: transparent;
    color: var(--light-color);
    border: 2px solid var(--light-color);
}

.btn-cta-alt:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

/* Responsive Styles
---------------------------------------- */
@media (max-width: 991px) {
    section {
        padding: 70px 0;
    }
    
    .wedding-hero-banner {
        height: 80vh;
    }
    
    .hero-btn-wrap {
        flex-direction: column;
        align-items: center;
    }
    
    .destination-content {
        padding: 30px 15px;
    }
    
    .content-card {
        padding: 30px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
        max-width: 250px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .wedding-hero-banner {
        height: 70vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .destination-row {
        margin-bottom: 50px;
    }
    
    .destination-image {
        margin-bottom: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .wedding-cta h2 {
        font-size: 2rem;
    }
    
    .feature-list li {
        flex-direction: column;
    }
    
/* Venue Card Styles for Tuscany & Umbria Section
---------------------------------------- */
.venue-card {
    background-color: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.venue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.venue-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

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

.venue-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.venue-content h3 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.venue-content p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: var(--text-color);
}

.venue-content .btn-discover {
    margin-top: auto;
    align-self: flex-start;
}

.bg-light {
    background-color: var(--gray-color);
}
    
    .feature-icon {
        margin: 0 0 15px;
    }
    
    .destination-content {
        text-align: center;
    }
}
