/* =====================================
   Global Styles & Variables
   ===================================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Poppins:wght@300;400;500;600&family=Cormorant+Garamond:wght@400;600;700&family=Montserrat:wght@300;400;600&family=Merriweather:wght@400;700&family=Lato:wght@300;400;700&family=Cinzel:wght@400;600;900&family=Raleway:wght@300;400;600&family=Bebas+Neue&family=Open+Sans:wght@300;400;600&family=Oswald:wght@400;600&family=Roboto:wght@300;400;700&family=Abril+Fatface&family=Karla:wght@300;400;600&family=Dancing+Script:wght@400;600;700&family=Quicksand:wght@300;400;600&display=swap');

:root {
    --primary-color: #8B7355; /* Elegant Taupe */
    --secondary-color: #5C4033; /* Rich Brown */
    --accent-color: #B08968; /* Muted Gold */
    --burgundy: #6B2C3E; /* Deep Burgundy */
    --text-dark: #2C2C2C;
    --text-light: #F5F5F5;
    --bg-light: #FAF8F6;
    --bg-cream: #F5F1ED;
    --gradient-primary: linear-gradient(135deg, rgba(176, 137, 104, 0.15) 0%, rgba(139, 115, 85, 0.1) 100%);
    --gradient-elegant: linear-gradient(135deg, #5C4033 0%, #6B2C3E 100%);
    
    /* Design System Variables */
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Poppins', sans-serif;
    --border-radius: 30px;
    --border-radius-sm: 15px;
    --card-shadow: 0 20px 80px rgba(92, 64, 51, 0.15);
    --card-padding: 4rem 3rem;
    --letter-spacing: 0.5px;
}

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

body {
    font-family: var(--body-font);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
    letter-spacing: var(--letter-spacing);
    transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

/* =====================================
   Full Screen Hero Image Section
   ===================================== */
.hero-image-section {
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
    background-color: var(--bg-light);
    z-index: 0;
}

.hero-image-container {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-full-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: opacity 0.1s ease-out;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: fadeInScroll 1s ease-out 1s both;
    transition: opacity 0.3s ease-out;
}

@keyframes fadeInScroll {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.scroll-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    background: rgba(0, 0, 0, 0.4);
    padding: 0.4rem 1rem;
    border-radius: 20px;
}

.scroll-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.scroll-arrow span {
    display: block;
    width: 20px;
    height: 20px;
    border-bottom: 3px solid white;
    border-right: 3px solid white;
    transform: rotate(45deg);
    animation: scrollBounce 2s infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
}

.scroll-arrow span:nth-child(2) {
    animation-delay: 0.2s;
    opacity: 0.7;
}

.scroll-arrow span:nth-child(3) {
    animation-delay: 0.4s;
    opacity: 0.4;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: rotate(45deg) translateY(0);
        opacity: 0;
    }
    50% {
        transform: rotate(45deg) translateY(10px);
        opacity: 1;
    }
}

h1, h2, h3, h4 {
    font-family: var(--heading-font);
    font-weight: 700;
    transition: all 0.3s ease;
}

/* =====================================
   Hero Section
   ===================================== */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(44, 44, 44, 0.4), rgba(44, 44, 44, 0.5)), 
                url('assets/images/20251003_235523-COLLAGE.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
                rgba(92, 64, 51, 0.3) 0%, 
                rgba(107, 44, 62, 0.2) 50%,
                rgba(92, 64, 51, 0.4) 100%);
    animation: pulse 10s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 2rem;
}

.couple-names {
    font-size: 4rem;
    margin: 2rem 0;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.bride-name, .groom-name {
    display: block;
    animation: fadeInUp 1s ease-out;
}

.bride-name {
    animation-delay: 0.2s;
}

.ampersand {
    display: block;
    font-size: 3rem;
    margin: 1rem 0;
    font-style: italic;
    animation-delay: 0.4s;
}

.groom-name {
    animation-delay: 0.6s;
}

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

.tagline {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 2rem;
    font-weight: 300;
    animation: fadeIn 2s ease-out;
}

.wedding-date {
    background: rgba(255, 255, 255, 0.98);
    padding: 2rem 3.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    display: inline-block;
    animation: fadeInUp 1s ease-out 0.8s both;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.date-text {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.venue-text {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 500;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: white;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* =====================================
   Navigation
   ===================================== */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0.75rem 0.5rem;
    gap: 0.5rem;
}

.navbar li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.navbar li a:hover,
.navbar li a.active {
    background: var(--secondary-color);
    color: white;
}

/* =====================================
   Container & Sections
   ===================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

section {
    scroll-margin-top: 60px;
}

section h2 {
    font-size: 3rem;
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

/* =====================================
   Welcome Section
   ===================================== */
.welcome-section {
    background: white;
}

/* Venue Details Page - Modern Card Design */
.venue-details-section {
    background: linear-gradient(to bottom, #fafaf8 0%, #ffffff 100%);
    padding: 4rem 0 5rem;
    min-height: calc(100vh - 200px);
}

.section-title {
    text-align: center;
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.venue-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 3rem;
}

.venue-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(176, 137, 104, 0.1);
}

.venue-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(92, 64, 51, 0.15);
}

.venue-card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.venue-card-title {
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.venue-card-content {
    color: #666;
    line-height: 1.7;
}

.venue-card-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.venue-name {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin: 0 0 1rem 0;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.venue-address {
    color: #777;
    text-align: center;
    margin-bottom: 1.5rem !important;
    line-height: 1.8;
}

.venue-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--gradient-elegant);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(92, 64, 51, 0.2);
    margin-top: 1rem;
}

.venue-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(92, 64, 51, 0.3);
}

.button-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.venue-button:hover .button-arrow {
    transform: translateX(5px);
}

.airport-name {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin: 0 0 0.75rem 0;
    font-weight: 600;
}

.airport-info {
    margin-bottom: 1rem !important;
}

.distance-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(176, 137, 104, 0.15) 0%, rgba(107, 44, 62, 0.1) 100%);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    margin: 1rem 0;
    font-weight: 600;
    color: var(--secondary-color);
}

.distance-icon {
    font-size: 1.2rem;
}

.venue-info-note {
    background: var(--bg-light);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    margin-top: 1.5rem;
    border-left: 3px solid var(--accent-color);
}

.venue-info-note p {
    margin: 0 !important;
    font-size: 0.95rem;
    color: #666;
}

/* Responsive for Venue Details */
@media (max-width: 768px) {
    .venue-details-section {
        padding: 3rem 0 4rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .venue-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .venue-card {
        padding: 2rem;
    }
    
    .venue-card-title {
        font-size: 1.4rem;
    }
    
    .venue-name {
        font-size: 1.3rem;
    }
    
    .venue-button {
        padding: 0.9rem 1.25rem;
        font-size: 0.95rem;
    }
}

.rsvp-banner {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 2rem 3rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(107, 44, 62, 0.3);
}

.rsvp-banner h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.rsvp-banner p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.95;
}

.welcome-text {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #555;
}

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

.info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(139, 115, 85, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.info-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.info-card p {
    color: #666;
}

/* =====================================
   Schedule Section - Modern Card Design
   ===================================== */
.schedule-section {
    background: white;
    position: relative;
}

.section-subtitle {
    text-align: center;
    color: #999;
    font-size: 1rem;
    margin-top: -0.5rem;
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.schedule-tabs {
    max-width: 1200px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    background: var(--bg-light);
    padding: 0.5rem;
    border-radius: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tab-btn {
    background: transparent;
    border: none;
    border-radius: 50px;
    padding: 1rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    font-family: 'Poppins', sans-serif;
    flex: 1;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.5);
}

.tab-btn.active {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.tab-date {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-color);
    letter-spacing: 0.5px;
}

.tab-btn.active .tab-date {
    color: var(--burgundy);
}

.tab-title {
    font-size: 0.75rem;
    text-align: center;
    line-height: 1.3;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tab-btn.active .tab-title {
    color: var(--secondary-color);
}

.tab-content-wrapper {
    background: transparent;
    padding: 0;
    min-height: 400px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

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

.schedule-day-header {
    text-align: center;
    margin-bottom: 3rem;
}

.schedule-day-header h3 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.day-subtitle {
    color: #999;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.schedule-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.schedule-event {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(176, 137, 104, 0.1);
}

.schedule-event:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(92, 64, 51, 0.15);
}

.event-time-badge {
    background: var(--gradient-elegant);
    color: white;
    padding: 1.25rem;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.event-details-box {
    padding: 2.5rem;
}

.event-info {
    width: 100%;
}

.event-info h4 {
    color: var(--secondary-color);
    font-size: 1.6rem;
    margin: 0 0 1rem 0;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.event-info p {
    color: #666;
    line-height: 1.7;
    margin: 0 0 1rem 0;
    font-size: 1rem;
}

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

.event-guest-info {
    background: linear-gradient(135deg, rgba(176, 137, 104, 0.08) 0%, rgba(107, 44, 62, 0.05) 100%);
    padding: 1rem 1.25rem;
    border-radius: 10px;
    border-left: 3px solid var(--accent-color);
    color: var(--secondary-color);
    font-weight: 500;
    margin-top: 1.25rem !important;
    font-size: 0.95rem;
}

.event-image {
    margin-top: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.event-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

/* =====================================
   Venue Section
   ===================================== */
.venue-section {
    background: white;
}

.venue-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.venue-info h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.address {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.venue-description {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.accommodation-info {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.accommodation-info h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.accommodation-info p {
    color: #666;
}

.venue-location {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.location-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(92, 64, 51, 0.2);
}

.location-link:hover {
    background: var(--burgundy);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(92, 64, 51, 0.3);
}

.maps-button {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.maps-button:hover {
    background: var(--burgundy);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(92, 64, 51, 0.2);
}

.location-note {
    margin-top: 1rem;
    color: #666;
    font-style: italic;
}

/* =====================================
   Travel Section
   ===================================== */
.travel-section {
    background: var(--bg-light);
}

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

.travel-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-top: 4px solid var(--accent-color);
    transition: all 0.3s ease;
}

.travel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(92, 64, 51, 0.15);
}

.travel-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.travel-card p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

.travel-card strong {
    color: var(--secondary-color);
}

/* =====================================
   Post-Wedding Trip Section
   ===================================== */
.trip-section {
    background: var(--bg-light);
}

.trip-announcement {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.trip-announcement h3 {
    color: var(--secondary-color);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.trip-description {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.trip-status {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
    text-align: left;
    margin: 2rem 0;
}

.trip-status p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.8;
}

.trip-status p:last-child {
    margin-bottom: 0;
}

.trip-status strong {
    color: var(--secondary-color);
}

.trip-note {
    font-style: italic;
    margin-top: 1rem;
}

.trip-interest {
    background: linear-gradient(135deg, rgba(176, 137, 104, 0.1) 0%, rgba(107, 44, 62, 0.05) 100%);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.trip-interest p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

/* =====================================
   FAQ Section - Accordion Style
   ===================================== */
.faq-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, #fff 100%);
}

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

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent-color);
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(92, 64, 51, 0.15);
    transform: translateY(-3px);
}

.faq-question {
    background: linear-gradient(135deg, rgba(176, 137, 104, 0.08) 0%, rgba(107, 44, 62, 0.03) 100%);
    padding: 1.25rem 1.5rem;
    transition: all 0.3s ease;
}

.faq-question h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin: 0;
    font-weight: 600;
    line-height: 1.4;
}

.faq-answer {
    padding: 1rem 1.5rem 1.25rem 1.5rem;
    background: white;
}

.faq-answer-content {
    padding-top: 0.75rem;
    border-top: 1px solid var(--bg-light);
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

.faq-answer a {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.faq-answer a:hover {
    border-bottom-color: var(--accent-color);
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, rgba(176, 137, 104, 0.08) 0%, rgba(107, 44, 62, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid rgba(176, 137, 104, 0.15);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.faq-cta h3 {
    color: var(--secondary-color);
    font-size: 1.6rem;
    margin: 0 0 1rem 0;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.faq-cta p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

/* Additional styles for event details */
.dress-code {
    color: var(--accent-color) !important;
    font-weight: 600;
    font-style: italic;
    margin-top: 0.5rem;
}

.event-note {
    color: var(--burgundy) !important;
    font-style: italic;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px dashed var(--accent-color);
}

/* =====================================
   Contact Section
   ===================================== */
.contact-section {
    background: var(--bg-light);
}

.contact-card {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.whatsapp-section {
    background: linear-gradient(135deg, #25D366 0%, #1ea952 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.2);
}

.whatsapp-section h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.whatsapp-section p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.whatsapp-button {
    background: white;
    color: #128C7E;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.whatsapp-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.note {
    font-size: 0.9rem;
    margin-top: 1rem;
    opacity: 0.9;
}

.footer-message {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
}

.footer-message p {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.signature {
    font-family: 'Playfair Display', serif;
    font-size: 2rem !important;
    color: var(--accent-color) !important;
    font-style: italic;
    font-weight: 600;
}

/* =====================================
   Footer
   ===================================== */
footer {
    background: var(--text-dark);
    color: white;
    text-align: center;
    padding: 2rem;
}

/* =====================================
   Greeting Card Homepage
   ===================================== */
.home-page {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-cream) 100%);
    min-height: 100vh;
    position: relative;
}

.home-page .greeting-card {
    margin-top: 100vh;
    margin-bottom: 2rem;
}

.greeting-card {
    max-width: 800px;
    width: calc(100% - 4rem);
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    animation: fadeIn 1s ease-out;
    position: relative;
    z-index: 10;
    transition: all 0.3s ease;
}

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

.card-content {
    padding: var(--card-padding);
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    transition: all 0.3s ease;
}

.invitation-text {
    font-size: 1.1rem;
    color: #666;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-weight: 500;
    width: 100%;
    text-align: center;
}

.greeting-card .couple-names {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin: 1.5rem 0;
    text-shadow: none;
    line-height: 1.2;
}

.greeting-card .bride-name,
.greeting-card .groom-name {
    display: block;
    color: var(--secondary-color);
}

.greeting-card .ampersand {
    display: inline-block;
    font-size: 2.5rem;
    margin: 1rem 0;
    font-style: italic;
    color: var(--accent-color);
}

.wedding-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius-sm);
    width: 100%;
    max-width: 600px;
    transition: all 0.3s ease;
}

.detail-item {
    text-align: center;
}

.date-label,
.venue-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.greeting-card .date-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
    letter-spacing: 1px;
}

.greeting-card .venue-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
}

.location-text {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 500;
}

.detail-divider {
    font-size: 2rem;
    color: var(--accent-color);
    opacity: 0.5;
}

.rsvp-section {
    margin: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.rsvp-text {
    margin: 0;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.rsvp-button {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    background: var(--gradient-elegant);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(92, 64, 51, 0.3);
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.rsvp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(92, 64, 51, 0.4);
}

.rsvp-button:active {
    transform: translateY(-1px);
}

.greeting-card .footer-message {
    margin-top: 2rem;
    padding: 1.5rem 0 0;
    border-top: 2px solid var(--bg-cream);
    width: 100%;
    max-width: 600px;
}

.greeting-card .footer-message p {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.greeting-card .signature {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem !important;
    color: var(--accent-color) !important;
    font-style: italic;
    font-weight: 600;
}

/* =====================================
   Responsive Design
   ===================================== */
@media (max-width: 768px) {
    .navbar ul {
        padding: 0.5rem 0.25rem;
        gap: 0.25rem;
    }
    
    .navbar li a {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .couple-names {
        font-size: 2.5rem;
    }
    
    .wedding-date {
        padding: 1rem 2rem;
    }
    
    .date-text {
        font-size: 1.3rem;
    }
    
    .venue-text {
        font-size: 1rem;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .tab-buttons {
        flex-wrap: wrap;
        max-width: 100%;
        padding: 0.4rem;
    }
    
    .tab-btn {
        padding: 0.75rem 1rem;
    }
    
    .tab-date {
        font-size: 0.85rem;
    }
    
    .tab-title {
        font-size: 0.65rem;
    }
    
    .schedule-day-header h3 {
        font-size: 1.6rem;
    }
    
    .day-subtitle {
        font-size: 0.9rem;
    }
    
    .schedule-timeline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .event-details-box {
        padding: 2rem;
    }
    
    .event-info h4 {
        font-size: 1.4rem;
    }
    
    .event-info p {
        font-size: 0.95rem;
    }
    
    .event-guest-info {
        padding: 0.85rem 1rem;
        font-size: 0.9rem;
    }
    
    .event-image {
        margin-top: 1.25rem;
    }
    
    .venue-content {
        grid-template-columns: 1fr;
    }
    
    .travel-cards {
        grid-template-columns: 1fr;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .faq-question {
        padding: 1rem 1.25rem;
    }
    
    .faq-question h3 {
        font-size: 1.05rem;
    }
    
    .faq-answer {
        padding: 0.75rem 1.25rem 1rem 1.25rem;
    }
    
    .faq-answer-content {
        padding-top: 0.5rem;
    }
    
    .faq-cta {
        padding: 2rem 1.5rem;
    }
    
    .faq-cta h3 {
        font-size: 1.4rem;
    }
    
    .faq-cta p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .navbar ul {
        padding: 0.4rem 0.25rem;
        gap: 0.2rem;
    }
    
    .navbar li a {
        padding: 0.35rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .couple-names {
        font-size: 2rem;
    }
    
    .container {
        padding: 2rem 1rem;
    }
}

/* Responsive for Greeting Card */
@media (max-width: 768px) {
    .greeting-card .couple-names {
        font-size: 2.5rem;
    }
    
    .greeting-card .ampersand {
        font-size: 2rem;
    }
    
    .card-content {
        padding: 3rem 2rem;
    }
    
    .wedding-details {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .detail-divider {
        display: none;
    }
    
    .greeting-card {
        width: calc(100% - 2rem);
    }
}

@media (max-width: 480px) {
    .greeting-card .couple-names {
        font-size: 2rem;
    }
    
    .card-content {
        padding: 2rem 1.5rem;
    }
    
    .greeting-card .date-text {
        font-size: 1.2rem;
    }
    
    .greeting-card .venue-text {
        font-size: 1.1rem;
    }
    
    .rsvp-section {
        flex-direction: column;
        gap: 1rem;
    }
    
    .rsvp-text {
        font-size: 1rem;
        text-align: center;
    }
    
    .rsvp-button {
        padding: 0.65rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .greeting-card {
        width: calc(100% - 1rem);
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
}


