
/* Wedding Site - Complete Static CSS */

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Lato', sans-serif;
    color: #a52e52;
    line-height: 1.6;
    background: #FFFDFB;
}

.App { min-height: 100vh; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

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

/* Section Title */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: #16060d;
    animation: fadeInUp 0.8s ease-out;
}

/* Hero */
.hero-section {
    height: 100vh;
    min-height: 700px;
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3rem 4rem;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-date {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    background: linear-gradient(135deg, #16060d 20%, #0f5aff 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-divider {
    width: 250px;
    height: 3px;
    background: linear-gradient(to right, #16060d, #0f5aff);
    margin: 0 auto 1.5rem;
    border-radius: 3px;
}

.hero-venue {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
}

/* Countdown */
.countdown-section {
    background: #0fe61e;
    padding: 4rem 0;
    display: flex;
    align-items: center;
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.countdown-block {
    background: linear-gradient(135deg, #16060d 30%, #0f5aff 70%);
    padding: 1.5rem 2rem;
    border-radius: 25px;
    min-width: 130px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(249,42,130,0.3);
    transition: transform 0.3s ease;
}

.countdown-block:hover {
    transform: translateY(-8px);
}

.countdown-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
}

.countdown-label {
    font-size: 0.9rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* When & Where - Expandable Cards */
.when-where-section {
    background: #f8f5f0;
    padding: 5rem 0;
}

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

.expandable-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(253,248,247,0.95));
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(249,42,130,0.1);
    border: 1px solid rgba(249,42,130,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.expandable-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(249,42,130,0.2);
}

.expandable-card-header {
    text-align: center;
    position: relative;
}

.expandable-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #16060d;
    margin-bottom: 1rem;
}

.expandable-card-summary {
    color: #4b5563;
    font-size: 1.1rem;
    line-height: 1.6;
}

.expand-icon {
    margin-top: 1rem;
    color: #16060d;
    transition: transform 0.3s ease;
}

.expandable-card[data-expanded="true"] .expand-icon {
    transform: rotate(180deg);
}

.expandable-card-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding-top: 0;
}

.expandable-card[data-expanded="true"] .expandable-card-content {
    max-height: 500px;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 2px solid rgba(249,42,130,0.1);
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.schedule-item {
    padding: 0.75rem 1rem;
    background: rgba(249,42,130,0.05);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.schedule-item:hover {
    background: rgba(249,42,130,0.1);
    transform: translateX(5px);
}

.schedule-text { color: #4b5563; font-weight: 500; }
.address-text { text-align: center; color: #4b5563; font-size: 1.1rem; }

/* RSVP */
.rsvp-section {
    background: #0fe61e;
    padding: 5rem 0;
}

.rsvp-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.rsvp-cta-button {
    min-width: 300px;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
}

.rsvp-cta-primary {
    background: linear-gradient(135deg, #16060d 30%, #0f5aff 70%);
    color: white;
    box-shadow: 0 10px 30px rgba(249,42,130,0.3);
}

.rsvp-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(249,42,130,0.4);
}

.rsvp-cta-secondary {
    background: rgba(255,255,255,0.9);
    color: #6b7280;
    border: 2px solid #d1d5db;
}

.rsvp-cta-secondary:hover {
    background: #f3f4f6;
}

/* Timeline Slider */
.story-section {
    background: #f8f5f0;
    padding: 5rem 0;
}

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

.timeline-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #16060d 30%, #0f5aff 70%);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(249,42,130,0.3);
    transition: all 0.3s ease;
    z-index: 10;
}

.timeline-nav:hover {
    transform: translateY(-50%) scale(1.1);
}

.timeline-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.timeline-nav-prev { left: 0; }
.timeline-nav-next { right: 0; }

.timeline-track {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #16060d, #0f5aff);
    border-radius: 2px;
    transform: translateY(-50%);
}

.timeline-items {
    display: flex;
    transition: transform 0.5s ease;
}

.timeline-item {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 2rem;
    opacity: 0.3;
    transform: scale(0.9);
    transition: all 0.5s ease;
}

.timeline-item.active {
    opacity: 1;
    transform: scale(1);
}

.timeline-year {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #16060d;
    background: rgba(248,245,240,0.95);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(249,42,130,0.2);
    margin-bottom: 1rem;
}

.timeline-dot {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #16060d, #0f5aff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(249,42,130,0.3);
    margin-bottom: 1.5rem;
}

.timeline-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    max-width: 500px;
    text-align: center;
}

.timeline-card p {
    color: #4b5563;
    line-height: 1.7;
}

.timeline-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.timeline-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(249,42,130,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.timeline-dots .dot.active {
    background: #16060d;
    transform: scale(1.3);
}

.timeline-dots .dot:hover {
    background: #16060d;
}

/* Contacts */
.contacts-section {
    background: #0fe61e;
    padding: 5rem 0;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(253,248,247,0.9));
    backdrop-filter: blur(12px);
    border-radius: 25px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(249,42,130,0.1);
    border: 1px solid rgba(253,63,146,0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(253,63,146,0.25);
}

.contact-icon-large {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.contact-icon {
    color: #000;
}

.contact-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #16060d;
    text-align: center;
    margin-bottom: 1.5rem;
}

.contact-names {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-person {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: rgba(253,63,146,0.05);
    border-radius: 12px;
    transition: all 0.2s ease;
    min-height: 72px;
}

.contact-person:hover {
    background: rgba(253,63,146,0.1);
    transform: translateX(5px);
}

.contact-phone-icon {
    color: #000;
    flex-shrink: 0;
}

.contact-person-info {
    display: flex;
    flex-direction: column;
}

.contact-person-name {
    font-weight: 600;
    color: #1f2937;
    font-size: 1.1rem;
}

.contact-person-phone {
    color: #4b5563;
    font-size: 0.95rem;
}

/* Witnesses Grid - 2x2 layout */
.contact-witnesses-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-witness-name {
    background: rgba(253,63,146,0.08);
    border: 1px solid rgba(253,63,146,0.15);
    border-radius: 12px;
    padding: 0.8rem;
    text-align: center;
    font-weight: 600;
    color: #1f2937;
    font-size: 1rem;
    transition: all 0.2s ease;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-witness-name:hover {
    background: rgba(253,63,146,0.12);
    transform: translateY(-2px);
}

/* Email container with icon */
.contact-email-container {
    position: relative;
    margin-top: 2rem;
}

.contact-email-icon {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #16060d 30%, #0f5aff 70%);
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(253,63,146,0.3);
    z-index: 10;
}

.contact-email-icon svg {
    color: white;
}

.contact-mail-icon {
    stroke: white;
}

.contact-email {
    display: block;
    background: rgba(253,63,146,0.05);
    border-radius: 20px;
    padding: 2rem 1rem 1rem 1rem;
    text-align: center;
    color: #4b5563;
    font-size: 0.85rem;
    text-decoration: none;
    word-break: break-all;
    transition: all 0.2s ease;
}

.contact-email:hover {
    background: rgba(253,63,146,0.1);
}

/* FAQ */
.faq-section {
    background: #f8f5f0;
    padding: 5rem 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 20px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 15px 35px rgba(249,42,130,0.1);
}

.faq-question {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #16060d;
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: rgba(249,42,130,0.05);
}

.faq-icon {
    transition: transform 0.3s ease;
    color: #16060d;
}

.faq-item[data-open="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: #4b5563;
    line-height: 1.7;
    padding: 0 2rem;
}

.faq-item[data-open="true"] .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section { background-attachment: scroll; min-height: 600px; }
    .hero-card { padding: 2rem; margin: 1rem; }
    .hero-title { font-size: 2.8rem; }
    .section-title { font-size: 2rem; }
    .countdown-container { gap: 1rem; }
    .countdown-block { min-width: 75px; padding: 1rem; }
    .countdown-number { font-size: 1.8rem; }
    .when-where-grid { grid-template-columns: 1fr; }
    .timeline-slider { padding: 0 40px; }
    .timeline-nav { width: 40px; height: 40px; }
    .timeline-card { padding: 1rem; }
    .contacts-grid { grid-template-columns: 1fr; }
}
