/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #5a5a5a;
    background-color: #fefefe;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-section .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    animation: fadeInUp 1.5s ease-out;
}

.hero-section .couple-names {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    color: white;
}

.hero-section .wedding-date {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-section .hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Hero Carousel Styles */
.hero-section .hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-section .hero-carousel .carousel-container {
    height: 100vh;
    border-radius: 0;
    box-shadow: none;
    background-color: #f8f6f3;
}

.hero-section .hero-carousel .carousel-slides {
    height: 100%;
    width: 700%;
}

.hero-section .hero-carousel .carousel-slide {
    width: 14.285%;
    height: 100%;
}

.hero-section .hero-carousel .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-section .hero-carousel .carousel-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-section .hero-carousel .carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-section .hero-carousel .carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.hero-section .hero-carousel .carousel-dot {
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-section .hero-carousel .carousel-dot:hover,
.hero-section .hero-carousel .carousel-dot.active {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.8);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid #8b7355;
    border-bottom: 2px solid #8b7355;
    transform: rotate(45deg);
    opacity: 0.7;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@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-color: rgba(248, 246, 243, 0.95);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(248, 246, 243, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 0 1rem;
}

.nav-link {
    text-decoration: none;
    color: #8b7355;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    background-color: rgba(139, 115, 85, 0.1);
    color: #6b5b47;
}

/* Main Content */
.main-content {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Welcome Section */
.welcome-section {
    padding: 5rem 0;
    background-color: #fefefe;
    text-align: center;
}

.welcome-content {
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.welcome-content.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.welcome-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #8b7355;
    margin-bottom: 2rem;
    font-weight: 300;
}

.welcome-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #5a5a5a;
}

.rsvp-cta {
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rsvp-cta.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.rsvp-button {
    display: inline-block;
    background: linear-gradient(135deg, #8b7355, #a69080);
    color: white;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 6px 20px rgba(139, 115, 85, 0.3);
    position: relative;
    overflow: hidden;
}

.rsvp-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.rsvp-button:hover::before {
    left: 100%;
}

.rsvp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 115, 85, 0.4);
}

/* Timeline Section */
.timeline-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #faf9f7 0%, #f8f6f3 100%);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: #8b7355;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
}

.timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #d4c4a8, #e8e2d5, #d4c4a8);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    padding-left: 90px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.timeline-item.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    position: absolute;
    left: 18px;
    top: 8px;
    width: 24px;
    height: 24px;
    background-color: #8b7355;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 0 0 6px #fefefe, 0 0 0 8px #d4c4a8;
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-icon-placeholder {
    background-color: #a69080;
    opacity: 0.7;
}

.timeline-item:hover .timeline-icon {
    transform: scale(1.1);
    box-shadow: 0 0 0 6px #fefefe, 0 0 0 10px #d4c4a8;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(139, 115, 85, 0.1);
    border-left: 4px solid #d4c4a8;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 115, 85, 0.15);
}

.timeline-time {
    display: inline-block;
    background: linear-gradient(135deg, #8b7355, #a69080);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.timeline-content h3 {
    color: #8b7355;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.timeline-location {
    color: #a69080;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.timeline-description {
    color: #5a5a5a;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.timeline-placeholder {
    opacity: 0.8;
}

.timeline-placeholder .timeline-content {
    background: linear-gradient(135deg, #f8f6f3, #faf9f7);
    border-left-color: #e8e2d5;
}

.timeline-placeholder h3 {
    color: #a69080;
    font-style: italic;
}

/* Animation classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays */
.animate-on-scroll[data-delay="100"] {
    transition-delay: 0.1s;
}

.animate-on-scroll[data-delay="200"] {
    transition-delay: 0.2s;
}

.animate-on-scroll[data-delay="300"] {
    transition-delay: 0.3s;
}

.animate-on-scroll[data-delay="400"] {
    transition-delay: 0.4s;
}

/* Travel Section */
.travel-section {
    padding: 5rem 0;
    background-color: #fefefe;
}

.travel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.travel-card {
    background: #faf9f7;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid #e8e2d5;
    opacity: 0;
    transform: translateY(30px);
}

.travel-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.travel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(139, 115, 85, 0.15);
    border-color: #d4c4a8;
}

.travel-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #8b7355, #a69080);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    transition: all 0.3s ease;
}

.travel-card:hover .travel-icon {
    transform: scale(1.1) rotate(5deg);
}

.travel-card h3 {
    color: #8b7355;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.travel-card p {
    color: #5a5a5a;
    line-height: 1.8;
    font-size: 1.05rem;
}

.cultural-note {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #f8f6f3, #e8e2d5);
    border-radius: 16px;
    border-left: 4px solid #d4c4a8;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cultural-note.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.cultural-note p {
    color: #6b5b47;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

/* Page sections (for other pages) */
.page-title {
    font-size: 2.5rem;
    color: #8b7355;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 300;
}

.section {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #faf9f7;
    border-radius: 8px;
}

.section h2 {
    color: #8b7355;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.section p {
    margin-bottom: 0.5rem;
}

/* Schedule styles */
.event {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 6px;
    border-left: 4px solid #d4c4a8;
}

.event h3 {
    color: #8b7355;
    margin-bottom: 0.5rem;
}

.event-time {
    font-weight: bold;
    color: #a69080;
    margin-bottom: 0.5rem;
}

/* Form styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #8b7355;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e8e2d5;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4c4a8;
}

.btn {
    background-color: #8b7355;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #6b5b47;
}

/* Map container */
.map-container {
    width: 100%;
    height: 300px;
    background-color: #e8e2d5;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b7355;
    font-style: italic;
}

/* Success message */
.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    display: none;
}

/* Venue Hero Section */
.venue-hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.venue-hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.venue-hero-section .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    animation: fadeInUp 1.5s ease-out;
}

.page-title-hero {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    color: white;
}

.venue-hero-section .hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Hero Carousel Styles */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-carousel .carousel-container {
    height: 100vh;
    border-radius: 0;
    box-shadow: none;
}

.hero-carousel .carousel-slides {
    height: 100%;
}

.hero-carousel .carousel-slide {
    height: 100%;
}

.hero-carousel .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-carousel .carousel-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-carousel .carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-carousel .carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.hero-carousel .carousel-dot {
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-carousel .carousel-dot:hover,
.hero-carousel .carousel-dot.active {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.8);
}

/* Image Carousel */
.image-carousel {
    max-width: 100%;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(139, 115, 85, 0.2);
    background-color: #f8f6f3;
}

.carousel-slides {
    display: flex;
    width: 600%;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide {
    width: 16.666%;
    height: 100%;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(139, 115, 85, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: rgba(139, 115, 85, 0.95);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #e8e2d5;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot:hover,
.carousel-dot.active {
    background: #8b7355;
    transform: scale(1.2);
}

/* Mobile carousel adjustments */
@media (max-width: 768px) {
    .carousel-container {
        height: 300px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
    
    .carousel-dots {
        gap: 8px;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        height: 250px;
        border-radius: 8px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
    }
}
@media (max-width: 768px) {
    .nav-container {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .timeline {
        max-width: 100%;
        padding: 1rem 0;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 70px;
        margin-bottom: 3rem;
    }
    
    .timeline-icon {
        left: 8px;
        width: 20px;
        height: 20px;
        box-shadow: 0 0 0 4px #fefefe, 0 0 0 6px #d4c4a8;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .timeline-content h3 {
        font-size: 1.2rem;
    }
    
    .timeline-time {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }
    
    .travel-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .travel-card {
        padding: 2rem;
    }
    
    .travel-icon {
        width: 60px;
        height: 60px;
    }
    
    .welcome-section {
        padding: 3rem 0;
    }
    
    .timeline-section,
    .travel-section {
        padding: 4rem 0;
    }
    
    .cultural-note {
        padding: 2rem;
        margin: 0 1rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        gap: 0.5rem;
    }
    
    .nav-link {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .timeline-item {
        padding-left: 60px;
        margin-bottom: 2.5rem;
    }
    
    .timeline-icon {
        left: 6px;
        width: 16px;
        height: 16px;
        box-shadow: 0 0 0 3px #fefefe, 0 0 0 5px #d4c4a8;
    }
    
    .timeline-content {
        padding: 1.2rem;
    }
    
    .timeline-content h3 {
        font-size: 1.1rem;
    }
    
    .timeline-time {
        font-size: 0.75rem;
        padding: 0.25rem 0.6rem;
    }
    
    .travel-card {
        padding: 1.5rem;
    }
    
    .travel-icon {
        width: 50px;
        height: 50px;
    }
    
    .travel-card h3 {
        font-size: 1.2rem;
    }
    
    .rsvp-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .cultural-note {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .section-title {
        margin-bottom: 2.5rem;
    }
}


/* ========================================
   EDITORIAL DESIGN OVERRIDES
   Black, White & Grey Color Scheme
   ======================================== */

/* Editorial Typography */
body {
    font-family: 'Cormorant Garamond', serif;
    color: #2a2a2a;
    background-color: #fafafa;
}

/* Black & White Image Filter */
.bw-filter {
    filter: grayscale(100%) contrast(1.1);
    transition: filter 8s ease;
}

/* Editorial Hero Section */
.editorial-hero .hero-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
}

.editorial-content {
    padding: 0 2rem;
}

.couple-names-script {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(5rem, 12vw, 10rem);
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 4px 12px rgba(0,0,0,0.4);
    line-height: 1.2;
}

.wedding-date-caps {
    font-family: 'Playfair Display', serif;
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Slower carousel transitions */
.editorial-hero .carousel-slides {
    transition: transform 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.editorial-hero .carousel-slide {
    transition: opacity 2s ease;
}

/* Editorial Navigation */
.editorial-nav {
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #e0e0e0;
}

.editorial-nav .nav-link {
    color: #2a2a2a;
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.editorial-nav .nav-link:hover,
.editorial-nav .nav-link.active {
    background-color: #f5f5f5;
    color: #000;
}

/* Editorial Sections */
.editorial-section {
    background-color: white;
    padding: 6rem 0;
}

.editorial-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 2.5rem;
    text-align: center;
}

.editorial-section p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    line-height: 1.9;
    color: #3a3a3a;
}

/* Editorial Button */
.editorial-button {
    background: #1a1a1a;
    color: white;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 0.95rem;
    padding: 1.2rem 3rem;
    border: 2px solid #1a1a1a;
    transition: all 0.4s ease;
}

.editorial-button:hover {
    background: white;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* Editorial Timeline */
.editorial-timeline {
    background: linear-gradient(to bottom, #fafafa, white);
    padding: 6rem 0;
}

.editorial-timeline .section-title {
    font-family: 'Playfair Display', serif;
    color: #1a1a1a;
    font-weight: 400;
}

.editorial-timeline-list {
    max-width: 800px;
}

.editorial-timeline-list::before {
    background: linear-gradient(to bottom, #d0d0d0, #e8e8e8);
}

.editorial-timeline-item {
    padding-left: 0;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

.editorial-time {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #1a1a1a;
    text-align: right;
    padding-top: 0.5rem;
    letter-spacing: 0.05em;
}

.editorial-timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 0;
    border-left: 3px solid #1a1a1a;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.editorial-timeline-content h3 {
    font-family: 'Playfair Display', serif;
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.editorial-timeline-content p {
    font-family: 'Cormorant Garamond', serif;
    color: #4a4a4a;
    font-size: 1.1rem;
    line-height: 1.7;
}

.timeline-location {
    color: #2a2a2a;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

/* Editorial Travel Section */
.editorial-travel {
    background-color: white;
    padding: 6rem 0;
}

.editorial-travel .travel-card {
    background: #fafafa;
    border: 1px solid #e8e8e8;
    border-radius: 0;
}

.editorial-travel .travel-card:hover {
    background: white;
    border-color: #d0d0d0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.editorial-travel .travel-icon {
    background: #1a1a1a;
}

.editorial-travel h3 {
    font-family: 'Playfair Display', serif;
    color: #1a1a1a;
    font-weight: 500;
}

.editorial-travel p {
    font-family: 'Cormorant Garamond', serif;
    color: #3a3a3a;
    font-size: 1.05rem;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .couple-names-script {
        font-size: clamp(3.5rem, 10vw, 6rem);
    }
    
    .wedding-date-caps {
        font-size: 0.85rem;
        letter-spacing: 0.2em;
    }
    
    .editorial-timeline-item {
        grid-template-columns: 80px 1fr;
        gap: 1.5rem;
    }
    
    .editorial-time {
        font-size: 0.95rem;
    }
    
    .editorial-section {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .couple-names-script {
        font-size: 3rem;
    }
    
    .editorial-timeline-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .editorial-time {
        text-align: left;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid #e0e0e0;
    }
}
