/* Wedding Hero Section */
.wedding-hero {
    min-height: 44vh !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
    padding-bottom: 0;
    display: flex;
    align-items: flex-start;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    position: relative;
    overflow: hidden;
}

.wedding-hero::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="hearts" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M10 15c-2-3-4-5-6-7 2-2 4-3 6-3s4 1 6 3c-2 2-4 4-6 7z" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23hearts)"/></svg>');
    opacity: 0.3;
}

.wedding-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 4rem;
    align-items: end;
    position: relative;
    z-index: 2;
}

.wedding-hero__title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
    margin-top: 0;
}

.wedding-hero__text {
  flex: 1 1 420px;
  max-width: 640px;
  width: 100%;
  line-height: 1.7;
  padding-left: 120px;
  text-align: left;
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding-top: 0;
  top: -64px;
}
.wedding-hero__subtitle {
  font-size: 1.13rem;
  margin-bottom: 2.2rem;
  color: #fff;
}
.wedding-hero__features {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    margin-bottom: 1rem;
}

.feature__icon {
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.feature__text {
    font-weight: 500;
    font-size: 1.1rem;
}

.wedding-hero__image {
  flex: 1 1 320px;
  min-width: 160px;
  max-width: 320px;
  margin-right: 0;
  display: block;
  margin-top: 64px;
}
@media (min-width: 700px) {
  .wedding-hero__image, .wedding-hero__image-placeholder {
    width: 800px;
    height: 800px;
    max-width: 800px;
    max-height: 800px;
    margin-left: 200px;
  }
}
@media (max-width: 900px) {
  .wedding-hero {
    flex-direction: column;
    align-items: center;
    padding-top: 12px;
  }
  .wedding-hero__text {
    max-width: 98vw;
    padding-left: 0;
    text-align: center;
    top: 0;
    padding-top: 120px;
  }
  .wedding-hero__subtitle {
    font-size: 1rem;
    max-width: 90vw;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
    margin-bottom: 1.2rem;
  }
  .wedding-hero__image {
    max-width: 98vw;
    margin: 0 auto;
    align-self: center;
    margin-top: 0;
  }
}

.wedding-hero__image-placeholder {
    position: relative;
    overflow: hidden;
}
.wedding-hero__image-placeholder img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.wedding-hero__image-placeholder .image-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
}

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

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.gallery__item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery__item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.gallery__image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
    position: relative;
}

.gallery__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.7));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: white;
    opacity: 0;
    transition: var(--transition);
}

.gallery__item:hover .gallery__overlay {
    opacity: 1;
}

.gallery__overlay h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery__overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Wedding Videos Section */
.wedding-videos {
    padding: 100px 0;
    background: white;
}

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

.video-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.video-card__placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
    position: relative;
    cursor: pointer;
}

.video-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.video-card:hover .video-card__overlay {
    background: rgba(0, 0, 0, 0.5);
}

.video-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
}

.video-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
    background: var(--bg-light);
}

.why-choose__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.why-choose__item {
  background: #fff;
  border-radius: 0;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.08);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.why-choose__item:hover {
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.12);
}
.why-choose__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.why-choose__item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.5rem;
}
.why-choose__item p {
  color: #555;
  font-size: 1rem;
}

/* Wedding Stats Section */
.wedding-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), #34495e);
    color: white;
}

.wedding-stats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-item__number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-item__label {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Wedding Gallery Section */
.wedding-gallery {
    padding: 100px 0;
    background: white;
}

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

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.gallery-item__image-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
    position: relative;
}

.gallery-item__info {
    padding: 1.5rem;
    background: white;
}

.gallery-item__info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.gallery-item__info p {
    color: var(--text-light);
}

/* Work Style Section */
.work-style {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.style-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.style-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

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

.style-card__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

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

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

/* Wedding CTA Section */
.wedding-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    text-align: center;
}

.wedding-cta__content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.wedding-cta__content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Wedding Modal Styles */
.wedding-modal {
    /* Styles for wedding modal */
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .wedding-hero__container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .wedding-hero__title {
        font-size: 2.5rem;
    }

    .wedding-hero__subtitle {
        font-size: 1.1rem;
    }

    .wedding-hero__image-placeholder {
        width: 100%;
        max-width: 350px;
        height: 450px;
    }

    .wedding-hero__features {
        align-items: center;
    }

    .gallery__grid,
    .wedding-videos__grid,
    .why-choose__grid,
    .wedding-gallery__grid,
    .work-style__grid {
        grid-template-columns: 1fr;
    }

    .wedding-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wedding-cta__content h2 {
        font-size: 2rem;
    }

    .stat-item__number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .wedding-hero__title {
        font-size: 2rem;
    }

    .wedding-hero__subtitle {
        font-size: 1rem;
    }

    .wedding-hero__image-placeholder {
        height: 350px;
    }

    .wedding-stats__grid {
        grid-template-columns: 1fr;
    }

    .stat-item__number {
        font-size: 2rem;
    }

    .wedding-cta__content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 600px) {
  .gallery__overlay {
    opacity: 1 !important;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 70%, rgba(0,0,0,0.05) 100%);
    color: #fff;
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 16px 12px 10px 12px;
    min-height: 60px;
    font-size: 1rem;
    pointer-events: none;
  }
  .gallery__image-placeholder, .gallery__img {
    position: relative;
    }
}

@media (max-width: 700px) {
  .why-choose__grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .why-choose__item {
    width: 100%;
    min-width: 0;
    max-width: 100vw;
    height: auto;
    min-height: 0;
    margin: 0;
    padding: 1.5rem 1rem;
  }
}

/* Additional Animations */
@keyframes heartBeat {
    0% {
        transform: scale(1);
    }
    14% {
        transform: scale(1.3);
    }
    28% {
        transform: scale(1);
    }
    42% {
        transform: scale(1.3);
    }
    70% {
        transform: scale(1);
    }
}

.feature__icon {
    animation: heartBeat 2s infinite;
}

.feature:nth-child(2) .feature__icon {
    animation-delay: 0.5s;
}

.feature:nth-child(3) .feature__icon {
    animation-delay: 1s;
}

/* Hover Effects */
.gallery__item:hover .gallery__image-placeholder {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.video-card:hover .video-card__placeholder {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item__image-placeholder {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Focus Styles */
.video-card:focus-within {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

.gallery__item:focus-within {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
} 