/* British Countryside Wedding Website - Cute & Charming */

:root {
    --cream: #faf7f2;
    --warm-cream: #f5f0e8;
    --blush: #d4a89e;
    --sage: #a4b5a0;
    --terracotta: #c08370;
    --forest: #6b7f6a;
    --soft-brown: #8d7b68;
    --ivory: #fffcf7;
    --text-dark: #3d3834;
    --text-mid: #6b6460;
    --text-light: #9a938e;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Playfair Display', sans-serif;
    
    --shadow-sm: 0 2px 8px rgba(61, 56, 52, 0.08);
    --shadow-md: 0 4px 16px rgba(61, 56, 52, 0.12);
    --shadow-lg: 0 8px 24px rgba(61, 56, 52, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    min-height: 100dvh;
}

body.home-page {
    background-image: url('images/dried_background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.main-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem;
    min-height: 100vh;
    min-height: 100dvh;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(250, 247, 242, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(164, 181, 160, 0.2);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 0 2rem;
    flex-wrap: wrap;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.3rem 0;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--terracotta);
}

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

.nav-link-cta {
    background-color: var(--terracotta);
    color: var(--ivory);
    padding: 0.6rem 1.8rem;
    border-radius: 25px;
    font-weight: 500;
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    background-color: var(--blush);
    color: var(--ivory);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-link-cta.active {
    background-color: var(--forest);
}

/* Home Page Hero */
.hero-home {
    height: 100vh;
    height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-image: url('images/dried_background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 2rem;
    overflow: hidden;
}

.flower-corner {
    position: absolute;
    z-index: 1;
    opacity: 0.4;
    pointer-events: none;
}

.flower-corner.top-right {
    top: 80px;
    right: -50px;
    width: 350px;
    height: 350px;
}

.flower-corner.bottom-left {
    bottom: -50px;
    left: -50px;
    width: 400px;
    height: 400px;
}

.flower-corner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: rotate(-15deg);
}

.flower-corner.bottom-left img {
    transform: rotate(15deg);
}

.hero-content {
    text-align: center;
    z-index: 2;
}

/* Card Flip Container */
.card-flip-container {
    perspective: 2000px;
    width: 100%;
    max-width: 700px;
    margin: 2rem auto;
}

.card-flipper {
    position: relative;
    width: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
    transform-style: preserve-3d;
}

.card-flipper.flipped {
    transform: rotateY(-180deg);
}

.card-front,
.card-back {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.card-front {
    position: relative;
    z-index: 2;
}

.card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: rotateY(-180deg);
}

.invitation-card {
    background-image: url('images/paper.jpg');
    background-size: cover;
    background-position: center;
    padding: 4rem 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(164, 181, 160, 0.15);
    animation: fadeInUp 0.8s ease-out;
    text-align: center;
}

.leaf-divider {
    display: block;
    margin: 0 auto;
}

.section-divider {
    text-align: center;
}

.upcase {
    text-transform: uppercase;
    letter-spacing: 1px;
}

.decorative-flourish {
    width: 100px;
    height: 20px;
    margin: 0 auto;
    color: var(--sage);
    opacity: 0.6;
}

.card-header {
    margin-bottom: 0.5rem;
}

.card-footer {
    margin-top: 2rem;
}

.together-with {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-mid);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.couple-names {
    font-family: 'Gwendolyn', cursive;
    font-size: clamp(4rem, 10vw, 7rem);
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1;
}

.ampersand {
    font-family: 'Gwendolyn', cursive;
    font-size: 0.8em;
    color: var(--terracotta);
}

.invite-text {
    font-family: var(--font-body), serif;
    font-size: 1rem;
    color: var(--text-mid);
    font-style: italic;
}

.wedding-details-simple {
    text-align: center;
    margin: 2rem 0;
}

.wedding-details-simple .wedding-date {
    font-family: 'Playfair Display SC', serif;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.wedding-details-simple .wedding-time {
    font-family: var(--font-heading), serif;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.wedding-details-simple .wedding-venue {
    font-family: var(--font-body), serif;
    font-size: 1rem;
    color: var(--text-mid);
    font-style: italic;
}

.countdown-box {
    margin-top: 2rem;
    text-align: center;
}

.countdown-label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.countdown {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.home-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.button {
    font-family: 'Playfair Display SC', serif;
    font-size: 0.75rem;
    font-weight: 400;
    padding: 0.9rem 2.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid;
    border-color: inherit;
}

.button::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    border: 1px solid;
    border-color: inherit;
}

.button-primary {
    color: var(--ivory);
    background-color: var(--terracotta);
    border-color: var(--terracotta);
}

.button-primary::before,
.button-primary::after {
    border-color: var(--ivory);
}

.button-primary:hover {
    background-color: var(--blush);
    border-color: var(--blush);
}

.button-secondary {
    color: var(--forest);
    border-color: var(--sage);
}

.button-secondary:hover {
    color: var(--sage);
    border-color: var(--forest);
}

/* Page Container */
.page-container {
    min-height: 100vh;
    padding: 120px 2rem 4rem;
    position: relative;
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-cream) 50%, var(--cream) 100%);
}

.flower-accent {
    position: absolute;
    width: 250px;
    height: 250px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.flower-accent:not(.right) {
    top: 100px;
    left: -30px;
}

.flower-accent.right {
    top: 100px;
    right: -30px;
}

.flower-accent img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 500;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--text-mid);
    text-align: center;
    margin-bottom: 3rem;
    font-style: italic;
}

.mt {
    margin-top: 3rem;
}

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

.info-card {
    background-color: var(--ivory);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(164, 181, 160, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.info-card h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--terracotta);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 500;
}

.info-card p {
    color: var(--text-mid);
    line-height: 1.7;
    text-align: center;
}

.info-card p strong {
    color: var(--text-dark);
}

.venue-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark) !important;
    margin-bottom: 0.5rem;
}

.what3words-box {
    margin-top: 1rem;
    padding: 1rem;
    background-color: var(--warm-cream);
    border-radius: 8px;
    border-left: 3px solid var(--sage);
}

/* Timeline Modern */
.timeline-modern {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-event {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.timeline-time {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--terracotta);
    min-width: 100px;
    font-weight: 500;
    padding-top: 1rem;
}

.timeline-card {
    flex: 1;
    background-color: var(--ivory);
    padding: 1.8rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--sage);
    transition: all 0.3s ease;
}

.timeline-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.timeline-card.highlight {
    border-left-color: var(--terracotta);
    background-color: #fff9f5;
}

.timeline-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.timeline-card p {
    color: var(--text-mid);
    line-height: 1.7;
}

/* Menu Section */
.menu-section {
    margin: 3rem 0;
}

.menu-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--text-dark);
    text-align: center;
    margin: 3rem 0 1rem;
    font-weight: 500;
}

.menu-intro {
    text-align: center;
    color: var(--text-mid);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

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

.menu-card {
    background-color: var(--ivory);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(164, 181, 160, 0.1);
}

.menu-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--terracotta);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 500;
}

.menu-list-pretty {
    list-style: none;
    padding: 0;
}

.menu-list-pretty li {
    padding: 0.8rem 0;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(164, 181, 160, 0.15);
    position: relative;
    padding-left: 1.5rem;
}

.menu-list-pretty li:last-child {
    border-bottom: none;
}

.menu-list-pretty li::before {
    content: '🌿';
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

.kids-menu-box {
    background-color: #fff9f5;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin: 2rem auto;
    max-width: 500px;
    border: 2px dashed var(--blush);
}

.kids-menu-box h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--terracotta);
    margin-bottom: 0.8rem;
}

.kids-menu-box p {
    color: var(--text-mid);
}

.dietary-info {
    background-color: var(--ivory);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    margin: 2rem 0;
    text-align: center;
}

.dietary-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.dietary-info p {
    color: var(--text-mid);
    margin-bottom: 1.5rem;
}

.dietary-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.tag {
    background-color: var(--sage);
    color: var(--ivory);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Drinks Section */
.drinks-section {
    margin: 3rem 0;
}

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

.drink-card {
    background-color: var(--ivory);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid rgba(164, 181, 160, 0.1);
}

.drink-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--terracotta);
    margin-bottom: 1rem;
}

.drink-card p {
    color: var(--text-mid);
}

/* Accommodation */
.accommodation-intro {
    background-color: var(--ivory);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    text-align: center;
}

.accommodation-intro p {
    color: var(--text-mid);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.accommodation-intro p:last-child {
    margin-bottom: 0;
}

.accommodation-list {
    display: grid;
    gap: 1.5rem;
}

.accommodation-item {
    background-color: var(--ivory);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.accommodation-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.accommodation-item.closest {
    border-color: var(--sage);
}

.accommodation-item.chain {
    background-color: var(--warm-cream);
}

.location-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--sage);
    color: var(--ivory);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.location-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.distance {
    color: var(--terracotta);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.description {
    color: var(--text-mid);
    font-style: italic;
}

.accommodation-tips {
    background-color: var(--ivory);
    padding: 2.5rem;
    border-radius: 15px;
    margin: 3rem 0;
    box-shadow: var(--shadow-md);
}

.accommodation-tips h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--terracotta);
    margin-bottom: 1.5rem;
}

.accommodation-tips ul {
    list-style: none;
    padding: 0;
}

.accommodation-tips li {
    padding: 0.8rem 0;
    color: var(--text-mid);
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.7;
}

.accommodation-tips li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--sage);
    font-weight: bold;
}

/* RSVP Page */
.rsvp-page {
    background: linear-gradient(135deg, #fff9f5 0%, var(--warm-cream) 50%, #fff9f5 100%);
}

.rsvp-deadline-box {
    background-color: var(--ivory);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 2rem auto 3rem;
    max-width: 400px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--blush);
}

.rsvp-deadline-box h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-mid);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.deadline-date {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--terracotta);
    font-weight: 600;
}

.rsvp-form-container {
    background-color: var(--ivory);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    margin: 2rem 0;
}

.rsvp-form {
    border: none;
    border-radius: 10px;
}

.rsvp-instructions {
    background-color: var(--warm-cream);
    padding: 2.5rem;
    border-radius: 15px;
    margin: 3rem 0;
    border-left: 4px solid var(--terracotta);
}

.rsvp-instructions h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.rsvp-instructions p {
    color: var(--text-mid);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.rsvp-instructions ol {
    color: var(--text-mid);
    padding-left: 1.5rem;
    line-height: 1.8;
}

.rsvp-instructions li {
    margin: 0.5rem 0;
}

/* Helpful Tips */
.helpful-tip {
    background: linear-gradient(135deg, #fff9f5, var(--ivory));
    padding: 2.5rem;
    border-radius: 15px;
    margin: 3rem 0;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--warm-cream);
    text-align: center;
}

.helpful-tip h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--terracotta);
    margin-bottom: 1rem;
}

.helpful-tip p,
.helpful-tip ul {
    color: var(--text-mid);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Map Section */
.map-section {
    background-color: var(--warm-cream);
}

.map-content {
    text-align: center;
}

.map-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.map-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-mid);
    margin-bottom: 2rem;
    font-style: italic;
}

#map {
    height: 450px;
    width: 100%;
}

/* Info Page */
.info-page {
    min-height: 100vh;
    background-image: url('images/dried_background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 2rem;
}

.info-section {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.info-card-full {
    background-image: url('images/paper.jpg');
    background-size: cover;
    background-position: center;
    padding: 3rem 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(164, 181, 160, 0.15);
    position: relative;
}

.back-arrow {
    position: sticky;
    top: 0;
    left: 0;
    font-size: 1.5rem;
    color: var(--forest);
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    z-index: 10;
    display: block;
    margin-bottom: -1.5rem;
}

.back-arrow:hover {
    opacity: 1;
}

/* RSVP Page */
.rsvp-deadline {
    text-align: center;
    margin: 1rem 0;
}

.rsvp-form-wrapper {
    margin: 1.5rem 0;
    border-radius: 10px;
    overflow: hidden;
}

.rsvp-form-embed {
    width: 100%;
    min-height: 600px;
    border: none;
    background: transparent;
}

.info-section-title {
    font-family: 'Gwendolyn', cursive;
    font-size: 3rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 1.5rem;
}

.info-subtitle {
    font-family: 'Playfair Display SC', serif;
    font-size: 1rem;
    color: var(--terracotta);
    text-align: center;
    margin: 2rem 0 1rem;
    font-weight: 400;
}

.info-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-mid);
    text-align: center;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.info-note {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-mid);
    text-align: center;
    font-style: italic;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(164, 181, 160, 0.2);
}

.venue-name-large {
    font-family: 'Playfair Display SC', serif;
    font-size: 1.1rem;
    color: var(--text-dark);
    text-align: center;
    font-weight: 400;
    margin-bottom: 0.3rem;
}

.what3words {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--forest);
    text-align: center;
    margin: 1rem 0 0.5rem;
    padding: 0.5rem;
    background-color: rgba(164, 181, 160, 0.1);
    border-radius: 5px;
}

.directions-link {
    display: block;
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--forest);
    text-decoration: none;
    text-align: center;
    margin-bottom: 1rem;
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.directions-link:hover {
    color: var(--blush);
    text-decoration: underline;
}

.venue-details {
    margin-top: 1.5rem;
    text-align: center;
}

.venue-details p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-mid);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.venue-details a {
    color: var(--text-dark);
    text-decoration: underline;
}

.section-divider {
    margin: 2.5rem 0;
    text-align: center;
}

.leaf-divider {
    width: 120px;
    height: auto;
    opacity: 0.7;
}

/* Timeline Simple */
.timeline-simple {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(164, 181, 160, 0.15);
}

.timeline-item.highlight {
    background-color: rgba(192, 131, 112, 0.1);
    margin: 0 -1rem;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    border-bottom: none;
}

.timeline-item .time {
    font-family: 'Playfair Display SC', serif;
    font-size: 0.9rem;
    color: var(--terracotta);
    font-weight: 400;
    min-width: 80px;
}

.timeline-item .event {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    text-align: right;
}

/* Menu Columns */
.menu-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 1rem 0;
}

.menu-column h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-align: center;
}

.menu-column ul {
    list-style: none;
    padding: 0;
}

.menu-column li {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-mid);
    padding: 0.3rem 0;
    text-align: center;
}

/* Places List */
.places-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 2rem;
    margin: 1.5rem 0;
}

.place-item {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(164, 181, 160, 0.1);
}

.place-name {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-dark);
}

.place-distance {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-light);
}

.back-home {
    text-align: center;
    padding: 2rem 0;
}

/* Accommodation List (card-back) */
.accomm-list {
    margin: 0.5rem 0 1rem;
}

.accomm-entry {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(164, 181, 160, 0.15);
    text-align: left;
}

.accomm-entry:last-child {
    border-bottom: none;
}

.accomm-name {
    display: block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
}

.accomm-detail {
    display: block;
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--text-mid);
    margin-top: 0.1rem;
}

.accomm-link {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--sage);
    text-decoration: none;
    margin-top: 0.1rem;
}

.accomm-link:hover {
    color: var(--terracotta);
    text-decoration: underline;
}

/* Accommodation Accordion */
.accomm-accordion {
    margin: 0.5rem 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.accomm-section {
    border-bottom: 1px solid rgba(164, 181, 160, 0.3);
}

.accomm-section:last-child {
    border-bottom: none;
}

.accomm-summary {
    font-family: 'Playfair Display SC', serif;
    font-size: 0.9rem;
    color: var(--terracotta);
    font-weight: 400;
    padding: 0.75rem 0;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.accomm-summary::-webkit-details-marker {
    display: none;
}

.accomm-summary::after {
    content: '+';
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--sage);
    transition: transform 0.2s ease;
}

.accomm-section[open] .accomm-summary::after {
    content: '−';
}

.accomm-section .accomm-list {
    margin: 0 0 0.75rem;
}

/* Taxi List */
.taxi-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 1.5rem;
    margin: 1rem 0;
}

.taxi-item {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.taxi-name {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--text-dark);
}

.taxi-number {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--forest);
    text-decoration: none;
}

.taxi-number:hover {
    color: var(--terracotta);
    text-decoration: underline;
}

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

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        gap: 1rem;
        font-size: 0.85rem;
    }
    
    .nav-link-cta {
        padding: 0.5rem 1.3rem;
    }
    
    .wedding-details {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .flower-corner {
        width: 200px;
        height: 200px;
    }
    
    .timeline-event {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .timeline-time {
        min-width: auto;
    }
    
    .page-container {
        padding: 100px 1.5rem 3rem;
    }
    
    .flower-accent {
        width: 150px;
        height: 150px;
        opacity: 0.2;
    }
    
    .accommodation-item {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .couple-names {
        font-size: 2.5rem;
    }

    .home-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .button {
        width: 100%;
    }

    .main-content {
        padding: 1rem;
    }

    .card-flip-container {
        margin: 1rem auto;
    }

    .invitation-card {
        padding: 2rem 1.5rem;
    }

    .info-page {
        padding: 1rem;
    }

    .info-card-full {
        padding: 2rem 1.5rem;
    }

    .info-section-title {
        font-size: 2.5rem;
    }

    .menu-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .places-list {
        grid-template-columns: 1fr;
    }

    .taxi-list {
        grid-template-columns: 1fr;
    }
}
