/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Elegant Minimalist Palette inspired by invitation design */
    --primary-color: #5A4A3A;              /* Deep warm brown for text */
    --secondary-color: #8B7355;            /* Medium brown accent */
    --accent-color: #F5F1E8;               /* Warm cream background */
    --tertiary-color: #A08B73;             /* Light brown */
    --text-dark: #3D332A;                  /* Deep brown for headings */
    --text-light: #6B5D4F;                 /* Medium brown for body text */
    --white: #FFFFFF;
    --cream: #FAF8F4;                      /* Soft cream base */
    --gold: #B8A082;                       /* Muted gold */
    --line-color: #D4C4A8;                 /* Subtle line color */
    
    /* Typography - More elegant and classic */
    --font-heading: 'Playfair Display', serif;
    --font-script: 'Dancing Script', cursive;
    --font-body: 'Crimson Text', serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 40px;
    
    /* Shadows - Much more subtle */
    --card-shadow: 0 8px 25px rgba(93, 74, 58, 0.08);
    --hover-shadow: 0 12px 35px rgba(93, 74, 58, 0.12);
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--cream);
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Enhanced Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(250, 248, 244, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--line-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.couple-initials {
    font-family: var(--font-script);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - Clean and Elegant */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 20px 40px;
    background: var(--cream);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(to bottom, rgba(245, 241, 232, 0.9) 0%, rgba(250, 248, 244, 1) 100%);
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero-text {
    text-align: center;
    padding: 10px;
    flex: 1.3;
    margin-right: 0;
}

/* Enhanced Typography */
.wedding-ornament {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin: 30px 0;
    opacity: 0.8;
    font-family: serif;
    animation: none; /* Remove floating animation for elegance */
}

/* Reduce spacing in hero text elements */
.wedding-tagline {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: normal;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--font-body);
}

.bride-groom-names {
    font-family: var(--font-script);
    font-size: 4rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: none;
}

.bride-name, .groom-name {
    display: block;
    margin: 10px 0;
}

.and {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin: 15px 0;
    font-style: normal;
    font-family: var(--font-body);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.wedding-location {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 400;
    font-family: var(--font-body);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.wedding-date {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 35px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--font-body);
}

.wedding-website {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 30px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: var(--font-body);
}

/* Remove the old hero-text pseudo-elements since we now have ornaments */
.hero-text::before,
.hero-text::after {
    display: none;
}

/* Countdown Timer - Clean Inline Style */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.time-unit {
    text-align: center;
    background: none;
    padding: 0;
    border: none;
    box-shadow: none;
    min-width: auto;
    transition: none;
}

.time-unit:hover {
    transform: none;
    box-shadow: none;
}

.time-value {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--primary-color);
    display: block;
    line-height: 1;
    min-width: 50px;
}

.time-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-body);
    display: block;
    margin-top: 5px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    flex: 0.7;
    margin-left: 0;
}

.hero-image img {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: var(--card-shadow);
    object-fit: cover;
    background: var(--white);
    border: 1px solid var(--line-color);
    padding: 20px;
    transition: none;
    filter: contrast(1.1) brightness(0.95);
}

.hero-image img:hover {
    transform: none;
    box-shadow: var(--card-shadow);
}

/* Section Titles - More Refined */
.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 80px;
    position: relative;
    font-weight: 400;
    letter-spacing: 1px;
}

/* Make "Our Love Story" title cursive */
.story-section .section-title {
    font-family: var(--font-script);
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: 0;
}

/* Make "Wedding Details" title cursive */
.details-section .section-title {
    font-family: var(--font-script);
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: 0;
}

/* Make "RSVP" title cursive */
.rsvp-section .section-title {
    font-family: var(--font-script);
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: 0;
}

.section-title::before {
    content: '';
    display: none; /* Remove ornament for cleaner look */
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: var(--line-color);
}

/* Story Carousel Section */
.story-section {
    padding: var(--section-padding);
    background: var(--white);
    position: relative;
}

.story-carousel {
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    background: var(--white);
    border-radius: 0;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--line-color);
    overflow: hidden;
}

.carousel-slides {
    position: relative;
    width: 100%;
    min-height: 600px;
    max-height: 880px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    opacity: 1;
}

.story-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 0;
}

/* Navigation arrows */
.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(93, 74, 58, 0.7);
    color: var(--white);
    border: none;
    padding: 15px 20px;
    font-size: 24px;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 10;
}

.carousel-prev {
    left: 15px;
}

.carousel-next {
    right: 15px;
}

.carousel-prev:hover, .carousel-next:hover {
    background: rgba(93, 74, 58, 0.9);
}

/* Dots indicator */
.carousel-dots {
    text-align: center;
    padding: 20px;
    background: var(--white);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    max-width: 100%;
}

.dot {
    height: 8px;
    width: 8px;
    margin: 0;
    background-color: var(--line-color);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.3);
}

.dot:hover {
    background-color: var(--secondary-color);
    transform: scale(1.2);
}

/* Image fallback for missing photos */
.story-image {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--cream) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.story-image::before {
    content: 'Love Story Photo Coming Soon';
    position: absolute;
    text-align: center;
    z-index: 1;
}

/* Clean Section Backgrounds */
.story-section {
    padding: var(--section-padding);
    background: var(--white);
    position: relative;
}

.story-section::before {
    display: none; /* Remove background patterns */
}

.story-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--line-color);
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 50px;
    position: relative;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

/* Refined Cards */
.detail-card,
.timeline-content,
.rsvp-form {
    position: relative;
    overflow: visible;
    background: var(--white);
    border: 1px solid var(--line-color);
    box-shadow: var(--card-shadow);
}

.detail-card::before,
.timeline-content::before,
.rsvp-form::before {
    display: none; /* Remove texture overlays */
}

.detail-card {
    padding: 50px 40px;
    border-radius: 0;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
    border-color: var(--secondary-color);
}

.detail-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.detail-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 1px;
}

/* Apply elegant styling to all detail card text */
.detail-date,
.detail-time,
.detail-venue,
.detail-address,
.detail-itinerary,
.detail-dresscode,
.detail-dresscode-note {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-style: italic;
    margin-top: 10px;
    font-weight: 400;
}

/* Slightly larger venue names */
.detail-venue {
    font-size: 1rem;
    margin-top: 5px;
}

/* Dress code main text slightly larger */
.detail-dresscode {
    font-size: 1rem;
    margin-top: 5px;
}

/* Address with a bit more spacing */
.detail-address {
    margin-bottom: 10px;
}

.map-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    font-family: var(--font-body);
    letter-spacing: 0.5px;
}

.map-link:hover {
    color: var(--primary-color);
}

/* Itinerary Section */
.itinerary-section {
    width: 100%;
    margin-bottom: 60px;
}

.itinerary-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.itinerary-day {
    background: var(--white);
    border: 1px solid var(--line-color);
    box-shadow: var(--card-shadow);
    padding: 40px 30px;
    border-radius: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.itinerary-day:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
    border-color: var(--secondary-color);
}

.itinerary-day-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.5px;
}

.itinerary-day-subtitle {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 20px;
    font-style: italic;
    font-weight: 400;
}

.itinerary-dresscode {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line-color);
}

.itinerary-events {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.itinerary-event {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.itinerary-time {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.itinerary-description {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    padding-left: 0;
}

/* Responsive itinerary */
@media (max-width: 968px) {
    .itinerary-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* Shuttle Schedule Section */
.shuttles-section {
    padding: 0;
    background: #4a1020;
}

.shuttle-schedule-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.shuttle-schedule-image {
    width: 100%;
    max-width: 612px;
    height: auto;
    display: block;
}

/* RSVP Section - Elegant */
.rsvp-section {
    padding: var(--section-padding);
    background: var(--primary-color);
    color: var(--white);
    position: relative;
}

.rsvp-section::before {
    display: none;
}

.rsvp-section .section-title {
    color: var(--white);
}

.rsvp-subtitle {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.rsvp-subtitle a,
.rsvp-link {
    color: #FFFFFF !important;
    text-decoration: underline;
    text-decoration-color: var(--gold);
    text-underline-offset: 4px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.rsvp-subtitle a:visited,
.rsvp-link:visited {
    color: #FFFFFF !important;
}

.rsvp-subtitle a:hover,
.rsvp-link:hover {
    color: var(--gold) !important;
    text-decoration-color: var(--white);
}

.rsvp-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: 0;
    color: var(--text-dark);
}

.rsvp-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(139, 90, 60, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(107, 124, 93, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.rsvp-form > * {
    position: relative;
    z-index: 2;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 400;
    color: var(--text-dark);
    font-family: var(--font-body);
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid var(--line-color);
    border-radius: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--cream);
}

/* Enhanced Form Validation Styling */
/* Required field indicator - only for direct labels with required inputs */
.form-group > label:has(+ input[required])::after,
.form-group > label:has(+ select[required])::after {
    content: " *";
    color: var(--primary-color);
    font-weight: 600;
}

/* Validation styling - only show after submission attempt */
.form-group input.error,
.form-group select.error,
.radio-group.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-group input.success,
.form-group select.success {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* Radio group error styling */
.radio-group.error {
    border: 2px solid #dc3545;
    border-radius: 8px;
    padding: 10px;
    background: rgba(220, 53, 69, 0.05);
}

/* Enhanced message styling */
.success-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
    display: none;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.error-message {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
    display: none;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Form field focus states */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(90, 74, 58, 0.1);
}

/* Radio button styling */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 400;
}

.radio-label input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
    transition: border-color 0.3s ease;
}

.radio-label input[type="radio"]:checked + .radio-custom {
    border-color: var(--primary-color);
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
}

.rsvp-submit-btn {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    padding: 18px;
    border: none;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--card-shadow);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: var(--font-body);
}

.rsvp-submit-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--hover-shadow);
}

/* Enhanced Footer */
.footer {
    background: var(--text-dark);
    color: var(--cream);
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid var(--line-color);
}

.footer-content {
    text-align: center;
    color: var(--white);
}

.footer-content p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Success Message Styles */
.success-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
    display: none;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.error-message {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
    display: none;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Meal Selection Note Styling */
.meal-selection-note {
    background: var(--accent-color);
    border: 1px solid var(--line-color);
    padding: 20px;
    margin: 25px 0;
    border-radius: 0;
    text-align: center;
}

.meal-selection-note p {
    margin: 0;
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.6;
}

.meal-selection-note strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Phone number note styling */
.phone-note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 5px;
    line-height: 1.4;
}

/* Guest section styling */
.guest-section {
    background: var(--accent-color);
    border: 1px solid var(--line-color);
    padding: 25px;
    margin: 20px 0;
    border-radius: 0;
}

.guest-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 1px;
}

/* Regret section styling */
.regret-section {
    background: var(--accent-color);
    border: 1px solid var(--line-color);
    padding: 30px;
    margin: 20px 0;
    border-radius: 0;
    text-align: center;
}

.regret-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 500;
    letter-spacing: 1px;
}

.regret-message {
    margin-top: 20px;
    padding: 15px;
    background: rgba(139, 115, 85, 0.1);
    border-left: 3px solid var(--secondary-color);
}

.regret-message p {
    margin: 0;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.6;
}

/* Remove all floating animations for cleaner feel */
.wedding-ornament {
    animation: none;
    font-size: 1.2rem;
    margin: 20px 0;
}

/* FAQ Section Styling */
.faq-section {
    padding: var(--section-padding);
    background: var(--white);
}

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

.faq-item {
    background: var(--white);
    border: 1px solid var(--line-color);
    margin-bottom: 20px;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--card-shadow);
}

.faq-question {
    background: var(--accent-color);
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--line-color);
}

.faq-question:hover {
    background: var(--cream);
}

.faq-question h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.5px;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--white);
}

.faq-item.active .faq-answer {
    padding: 25px 30px;
    max-height: 1000px;
}

.faq-answer p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
    font-family: var(--font-body);
}

.faq-link {
    color: var(--primary-color);
    text-decoration: underline;
    text-decoration-color: var(--secondary-color);
    text-underline-offset: 3px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.faq-link:hover {
    color: var(--secondary-color);
    text-decoration-color: var(--primary-color);
} 