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

:root {
    --primary-color: #a8d8f0;
    --secondary-color: #e8f4f8;
    --accent-color: #7cc7e8;
    --text-dark: #2c3e50;
    --text-light: #5a6c7d;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --shadow: rgba(168, 216, 240, 0.3);
    --shadow-dark: rgba(0, 0, 0, 0.1);
    --gradient: linear-gradient(135deg, #ffffff 0%, #e8f4f8 100%);
    --font-script: 'Cookie', cursive;
    --font-main: 'Poppins', sans-serif;
    
    /* Nuevas tonalidades florales */
    --floral-pastel: #b8d4e8;
    --floral-light-blue: #9bc4e2;
    --floral-medium-blue: #7bb3d9;
    --floral-deep-blue: #5a9fd1;
    --floral-accent: #4a8bc2;
    --floral-shadow: rgba(123, 179, 217, 0.2);
    --floral-light-shadow: rgba(184, 212, 232, 0.15);
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--gradient);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="floral-background" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="8" fill="%23a8d8f0" opacity="0.05"/><path d="M35,35 Q50,25 65,35 Q50,45 35,35" fill="%23e8f4f8" opacity="0.08"/><path d="M40,40 Q50,30 60,40 Q50,50 40,40" fill="%237cc7e8" opacity="0.06"/><circle cx="25" cy="25" r="4" fill="%23a8d8f0" opacity="0.04"/><circle cx="75" cy="75" r="6" fill="%23e8f4f8" opacity="0.05"/><path d="M20,20 Q25,15 30,20 Q25,25 20,20" fill="%237cc7e8" opacity="0.03"/><path d="M70,70 Q75,65 80,70 Q75,75 70,70" fill="%23a8d8f0" opacity="0.04"/></pattern></defs><rect width="200" height="200" fill="url(%23floral-background)"/></svg>');
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(232, 244, 248, 0.8)), url('assets/images/imagen_cata_y_danilo_cascada_de_fondo_vertical.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    animation: fadeInUp 1.2s ease-out;
}

.couple-names {
    font-family: var(--font-script);
    font-size: clamp(3.5rem, 9vw, 7rem);
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px var(--shadow);
    letter-spacing: 1px;
}

.couple-names span {
    color: var(--accent-color);
    font-size: 0.8em;
    margin: 0 0.5rem;
}

.wedding-date {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 300;
}

.invitation-text {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-style: italic;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 6rem;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    background: var(--white);
    padding: 1.5rem 1rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
    min-width: 100px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow);
}

.countdown-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent-color);
    line-height: 1;
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/* Floating Flowers Animation */
.floating-flowers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.flower-petal {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50% 0;
    opacity: 0.6;
    animation: petalFloat 8s infinite ease-in-out;
    transform-origin: center;
}

.flower-petal:nth-child(1) { 
    left: 10%; 
    top: 20%;
    animation-delay: 0s; 
    background: var(--primary-color);
    transform: rotate(45deg);
}
.flower-petal:nth-child(2) { 
    left: 20%; 
    top: 60%;
    animation-delay: 1.5s; 
    background: var(--accent-color);
    transform: rotate(90deg);
}
.flower-petal:nth-child(3) { 
    left: 80%; 
    top: 30%;
    animation-delay: 3s; 
    background: var(--secondary-color);
    transform: rotate(135deg);
}
.flower-petal:nth-child(4) { 
    left: 90%; 
    top: 70%;
    animation-delay: 4.5s; 
    background: var(--primary-color);
    transform: rotate(180deg);
}
.flower-petal:nth-child(5) { 
    left: 50%; 
    top: 10%;
    animation-delay: 2s; 
    background: var(--accent-color);
    transform: rotate(225deg);
}
.flower-petal:nth-child(6) { 
    left: 70%; 
    top: 80%;
    animation-delay: 5s; 
    background: var(--secondary-color);
    transform: rotate(270deg);
}

/* Hero Decorations */
.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="floral-bg" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="3" fill="%23a8d8f0" opacity="0.1"/><path d="M20,20 Q25,15 30,20 Q25,25 20,20" fill="%23e8f4f8" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23floral-bg)"/></svg>');
    opacity: 0.3;
}

.leaf {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50% 0;
    opacity: 0.6;
    animation: leafFloat 8s infinite ease-in-out;
}

.leaf-1 { top: 20%; left: 5%; animation-delay: 0s; }
.leaf-2 { top: 60%; right: 10%; animation-delay: 2s; }
.leaf-3 { bottom: 30%; left: 8%; animation-delay: 4s; }
.leaf-4 { top: 40%; right: 5%; animation-delay: 6s; }

/* Additional floral elements */
.hero-decoration::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 15%;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.1;
    animation: pulse 3s infinite;
}

.hero-decoration::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 20%;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.1;
    animation: pulse 4s infinite;
}

/* Floating decorative elements */
.hero-decoration .floating-element {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 8s infinite ease-in-out;
}

.hero-decoration .floating-element:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.hero-decoration .floating-element:nth-child(2) {
    top: 70%;
    right: 20%;
    animation-delay: 2s;
}

.hero-decoration .floating-element:nth-child(3) {
    bottom: 40%;
    left: 15%;
    animation-delay: 4s;
}

/* Ramos de flores decorativos */
.flower-bouquet {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.bouquet-1 {
    top: 15%;
    left: 8%;
    transform: rotate(-15deg);
    animation: bouquetSway 6s ease-in-out infinite;
}

.bouquet-2 {
    top: 25%;
    right: 12%;
    transform: rotate(20deg);
    animation: bouquetSway 8s ease-in-out infinite;
    animation-delay: 2s;
}

.bouquet-3 {
    bottom: 20%;
    left: 12%;
    transform: rotate(-10deg);
    animation: bouquetSway 7s ease-in-out infinite;
    animation-delay: 4s;
}

.flower {
    position: absolute;
    border-radius: 50%;
    opacity: 0.8;
}

.flower-1 {
    width: 12px;
    height: 12px;
    background: var(--floral-pastel);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 2px 8px var(--floral-light-shadow);
}

.flower-2 {
    width: 10px;
    height: 10px;
    background: var(--floral-light-blue);
    top: 8px;
    left: 30%;
    transform: rotate(45deg);
    box-shadow: 0 2px 6px var(--floral-light-shadow);
}

.flower-3 {
    width: 10px;
    height: 10px;
    background: var(--floral-medium-blue);
    top: 8px;
    right: 30%;
    transform: rotate(-45deg);
    box-shadow: 0 2px 6px var(--floral-light-shadow);
}

.flower-4 {
    width: 8px;
    height: 8px;
    background: var(--floral-deep-blue);
    top: 15px;
    left: 40%;
    transform: rotate(90deg);
    box-shadow: 0 2px 4px var(--floral-light-shadow);
}

.flower-5 {
    width: 8px;
    height: 8px;
    background: var(--floral-accent);
    top: 15px;
    right: 40%;
    transform: rotate(-90deg);
    box-shadow: 0 2px 4px var(--floral-light-shadow);
}

.stem {
    position: absolute;
    width: 3px;
    height: 25px;
    background: linear-gradient(180deg, var(--floral-medium-blue), var(--floral-deep-blue));
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    opacity: 0.7;
}

.stem::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 8px;
    background: var(--floral-light-blue);
    left: -3px;
    top: 5px;
    border-radius: 1px;
    transform: rotate(-30deg);
}

.stem::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 8px;
    background: var(--floral-light-blue);
    right: -3px;
    top: 8px;
    border-radius: 1px;
    transform: rotate(30deg);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 0rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--accent-color);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    transform: translateY(-100%);
}

.navbar.scrolled {
    transform: translateY(0);
    box-shadow: 0 2px 20px var(--shadow);
}

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

.nav-logo {
    font-family: var(--font-script);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--accent-color);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

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

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

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

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

/* Sections */
section {
    padding: 60px 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 400;
    font-family: var(--font-script);
}

.section-subtitle {
    text-align: center;
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: var(--font-script);
}

.section-icon {
    text-align: center;
    margin-bottom: 2rem;
}

.section-icon i {
    font-size: 3rem;
    color: var(--accent-color);
    animation: pulse 2s infinite;
}

/* Event Section */
.event-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

/* Decoración floral de esquinas */
.corner-floral {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.corner-top-left {
    top: 20px;
    left: 20px;
    transform: rotate(-45deg);
}

.corner-top-right {
    top: 20px;
    right: 20px;
    transform: rotate(45deg);
}

.corner-flower {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-bottom: 5px;
    opacity: 0.7;
    animation: cornerFlowerBloom 4s ease-in-out infinite;
}

.corner-flower:nth-child(1) {
    background: var(--floral-pastel);
    animation-delay: 0s;
}

.corner-flower:nth-child(2) {
    background: var(--floral-light-blue);
    animation-delay: 0.5s;
}

.corner-flower:nth-child(3) {
    background: var(--floral-medium-blue);
    animation-delay: 1s;
}

/* Decoración floral lateral */
.side-floral {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 1;
}

.side-left {
    left: 30px;
}

.side-right {
    right: 30px;
}

.side-flower {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-bottom: 8px;
    opacity: 0.6;
    animation: sideFlowerFloat 5s ease-in-out infinite;
}

.side-flower:nth-child(1) {
    background: var(--floral-pastel);
    animation-delay: 0s;
}

.side-flower:nth-child(2) {
    background: var(--floral-light-blue);
    animation-delay: 1s;
}

.side-flower:nth-child(3) {
    background: var(--floral-medium-blue);
    animation-delay: 2s;
}

.event-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="floral-pattern" x="0" y="0" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23a8d8f0" opacity="0.1"/><path d="M10,10 Q15,5 20,10 Q15,15 10,10" fill="%23e8f4f8" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23floral-pattern)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.event-section .container {
    position: relative;
    z-index: 1;
}

.calendar-container {
    text-align: center;
    margin-bottom: 4rem;
}

.calendar-month {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.calendar-grid {
    display: inline-grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
}

.calendar-day {
    padding: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.calendar-date {
    padding: 1rem;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.calendar-date.main-date {
    background: var(--accent-color);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 5px 20px var(--shadow);
    position: relative;
}

.calendar-date.main-date::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 3px solid var(--accent-color);
    border-radius: 15px;
    opacity: 0.5;
    animation: pulse 2s infinite;
}

/* Event Location Info */
.event-location-info {
    margin: 4rem 0;
    display: flex;
    justify-content: center;
}

/* Dress Code Section */
.dress-code-section {
    margin: 4rem 0;
    display: flex;
    justify-content: center;
}

.dress-code-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 25px;
    box-shadow: 0 15px 50px var(--shadow);
    text-align: center;
    max-width: 500px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dress-code-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

.dress-code-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px var(--shadow);
}

.dress-code-icon {
    margin-bottom: 1.5rem;
}

.dress-code-icon i {
    font-size: 3rem;
    color: var(--accent-color);
    animation: pulse 2s infinite;
}

.dress-code-card h3 {
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 400;
}

.dress-code-description {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.dress-code-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.dress-code-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
}

.dress-code-item:hover {
    background: var(--secondary-color);
    transform: translateX(5px);
}

.dress-code-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    min-width: 30px;
}

.dress-code-item span {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
}

.location-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 25px;
    box-shadow: 0 15px 50px var(--shadow);
    text-align: center;
    max-width: 500px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px var(--shadow);
}

.location-icon {
    margin-bottom: 1.5rem;
}

.location-icon i {
    font-size: 3rem;
    color: var(--accent-color);
    animation: pulse 2s infinite;
}

.location-card h3 {
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 400;
}

.location-description {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Timeline Section */
.timeline-section {
    margin-top: 4rem;
}

.timeline-title {
    text-align: center;
    font-family: var(--font-script);
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-weight: 400;
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color), var(--primary-color));
    transform: translateX(-50%);
    border-radius: 2px;
}

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

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

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

.timeline-time {
    background: var(--accent-color);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    min-width: 120px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
    margin: 0 2rem;
    flex: 1;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px var(--shadow);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 15px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -30px;
    border-left-color: var(--white);
    transform: translateY(-50%);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -30px;
    border-right-color: var(--white);
    transform: translateY(-50%);
}

.timeline-icon {
    margin-bottom: 1rem;
}

.timeline-icon i {
    font-size: 2rem;
    color: var(--accent-color);
}

.timeline-content h4 {
    font-family: var(--font-script);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.6;
}

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

.event-item {
    text-align: center;
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.event-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.event-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px var(--shadow);
}

.event-icon {
    margin-bottom: 1.5rem;
}

.event-icon i {
    font-size: 2.5rem;
    color: var(--accent-color);
}

.event-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.event-time {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.event-location {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.location-btn {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px var(--shadow);
}

.location-btn::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;
}

.location-btn:hover::before {
    left: 100%;
}

.location-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px var(--shadow);
}

/* Bible Verse Section */
.bible-verse-section {
    background: var(--white);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.bible-verse-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="bible-pattern" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="3" fill="%23a8d8f0" opacity="0.08"/><path d="M15,15 Q20,10 25,15 Q20,20 15,15" fill="%23e8f4f8" opacity="0.12"/></pattern></defs><rect width="100" height="100" fill="url(%23bible-pattern)"/></svg>');
    opacity: 0.4;
    z-index: 0;
}

.bible-verse-section .container {
    position: relative;
    z-index: 1;
}

.verse-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
    position: relative;
    overflow: hidden;
}

.verse-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="floral" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="%23a8d8f0" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23floral)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.verse-text {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.verse-reference {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* Gifts Section */
.gifts-section {
    background: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.gifts-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="gifts-pattern" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="4" fill="%23a8d8f0" opacity="0.06"/><path d="M20,20 Q25,15 30,20 Q25,25 20,20" fill="%23e8f4f8" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23gifts-pattern)"/></svg>');
    opacity: 0.5;
    z-index: 0;
}

.gifts-section .container {
    position: relative;
    z-index: 1;
}

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

.gift-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 25px;
    box-shadow: 0 15px 50px var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.gift-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color), var(--primary-color));
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gift-card:hover::after {
    opacity: 1;
}

.gift-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.gift-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px var(--shadow);
}

.gift-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.bank-details {
    text-align: left;
}

.bank-details p {
    margin-bottom: 0.8rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.bank-details strong {
    color: var(--text-dark);
    font-weight: 600;
}

.gift-btn {
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.gift-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow);
}

.gift-divider {
    margin: 2rem 0;
    position: relative;
}

.gift-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--primary-color);
}

.gift-divider span {
    background: var(--white);
    padding: 0 1rem;
    color: var(--text-light);
    position: relative;
}

.gift-website {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 1rem 0;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid transparent;
    border-radius: 50px;
    font-size: 1rem;
    font-family: var(--font-main);
    background: var(--white);
    transition: all 0.3s ease;
    outline: none;
}

.form-group textarea {
    border-radius: 20px;
    resize: vertical;
    min-height: 120px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(168, 216, 240, 0.2);
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: var(--white);
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px var(--shadow);
}

.submit-btn::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;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px var(--shadow);
}

/* Photos Section */
.photos-section {
    background: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.photos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="photos-pattern" x="0" y="0" width="35" height="35" patternUnits="userSpaceOnUse"><circle cx="17.5" cy="17.5" r="2.5" fill="%23a8d8f0" opacity="0.08"/><path d="M12,12 Q17.5,7 23,12 Q17.5,17 12,12" fill="%23e8f4f8" opacity="0.12"/></pattern></defs><rect width="100" height="100" fill="url(%23photos-pattern)"/></svg>');
    opacity: 0.4;
    z-index: 0;
}

.photos-section .container {
    position: relative;
    z-index: 1;
}

.photos-content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.photo-btn {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: var(--white);
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
}

.photo-btn::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;
}

.photo-btn:hover::before {
    left: 100%;
}

.photo-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--shadow);
}

.photo-instructions {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.photo-code {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
}

.photo-code p:first-child {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.code-text {
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent-color);
    letter-spacing: 3px;
    font-family: 'Courier New', monospace;
}

/* RSVP Section */
.rsvp-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.rsvp-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="rsvp-pattern" x="0" y="0" width="45" height="45" patternUnits="userSpaceOnUse"><circle cx="22.5" cy="22.5" r="3" fill="%23a8d8f0" opacity="0.07"/><path d="M17,17 Q22.5,12 28,17 Q22.5,22 17,17" fill="%23e8f4f8" opacity="0.11"/></pattern></defs><rect width="100" height="100" fill="url(%23rsvp-pattern)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.rsvp-section .container {
    position: relative;
    z-index: 1;
}

.deadline {
    text-align: center;
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 3rem;
}

.rsvp-form-container {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.rsvp-form {
    background: var(--light-gray);
    padding: 3rem 2rem;
    border-radius: 25px;
    box-shadow: 0 15px 50px var(--shadow);
    position: relative;
    overflow: hidden;
}

.rsvp-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

.whatsapp-option {
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.whatsapp-option p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.whatsapp-btn {
    background: #25D366;
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

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

.footer-names {
    font-family: var(--font-script);
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.footer-date {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.footer-flowers {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.footer-flower {
    width: 15px;
    height: 15px;
    background: var(--accent-color);
    border-radius: 50% 0;
    opacity: 0.8;
    animation: flowerPulse 2s ease-in-out infinite;
    transform-origin: center;
}

.footer-flower:nth-child(1) { 
    background: var(--primary-color);
    animation-delay: 0s;
    transform: rotate(45deg);
}
.footer-flower:nth-child(2) { 
    background: var(--accent-color);
    animation-delay: 0.5s;
    transform: rotate(90deg);
}
.footer-flower:nth-child(3) { 
    background: var(--secondary-color);
    animation-delay: 1s;
    transform: rotate(135deg);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    animation: slideInUp 0.3s ease-out;
}

.modal-icon {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.modal-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.modal-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.modal-btn {
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-btn:hover {
    background: var(--primary-color);
}

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

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

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes leafFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

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

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes petalFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(var(--rotation, 0deg)) scale(1); 
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-25px) rotate(calc(var(--rotation, 0deg) + 180deg)) scale(1.1); 
        opacity: 0.8;
    }
}

@keyframes flowerPulse {
    0%, 100% { 
        transform: scale(1) rotate(var(--rotation, 0deg)); 
        opacity: 0.8;
    }
    50% { 
        transform: scale(1.2) rotate(calc(var(--rotation, 0deg) + 45deg)); 
        opacity: 1;
    }
}

@keyframes bouquetSway {
    0%, 100% { 
        transform: rotate(var(--initial-rotation, 0deg)) translateY(0px); 
    }
    25% { 
        transform: rotate(calc(var(--initial-rotation, 0deg) + 5deg)) translateY(-3px); 
    }
    50% { 
        transform: rotate(var(--initial-rotation, 0deg)) translateY(-5px); 
    }
    75% { 
        transform: rotate(calc(var(--initial-rotation, 0deg) - 5deg)) translateY(-3px); 
    }
}

@keyframes cornerFlowerBloom {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.7;
    }
    50% { 
        transform: scale(1.3); 
        opacity: 1;
    }
}

@keyframes sideFlowerFloat {
    0%, 100% { 
        transform: translateY(0px); 
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-8px); 
        opacity: 0.9;
    }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        background-position: center top;
        background-size: cover;
        min-height: 100vh;
    }
    
    .scroll-indicator {
        bottom: 0rem;
    }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .countdown {
        gap: 1rem;
        margin-bottom: 4rem;
    }

    .countdown-item {
        padding: 1rem 0.5rem;
        min-width: 80px;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .event-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .timeline-container::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
        margin-left: 4rem;
    }

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

    .timeline-content::before {
        left: -30px !important;
        right: auto !important;
        border-right-color: var(--white) !important;
        border-left-color: transparent !important;
    }

    .timeline-time {
        min-width: 100px;
        font-size: 1rem;
        padding: 0.8rem 1rem;
    }

    .timeline-content {
        margin: 0 0 0 1rem;
    }

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

    .location-card h3 {
        font-size: 1.5rem;
    }

    .dress-code-card {
        padding: 2rem 1.5rem;
    }

    .dress-code-card h3 {
        font-size: 1.5rem;
    }

    .dress-code-details {
        gap: 0.8rem;
    }

    .dress-code-item {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    /* Responsive floral elements */
    .flower-bouquet {
        transform: scale(0.8);
    }
    
    .corner-floral {
        transform: scale(0.7);
    }
    
    .side-floral {
        display: none;
    }
    
    .flower {
        transform: scale(0.9);
    }

    .event-item {
        padding: 2rem 1.5rem;
    }

    .calendar-grid {
        padding: 1.5rem;
    }

    .calendar-date {
        padding: 0.8rem;
        font-size: 2rem;
    }

    section {
        padding: 60px 0;
    }

    .rsvp-form {
        padding: 2rem 1.5rem;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .couple-names {
        font-size: 3rem;
    }

    .wedding-date {
        font-size: 1.2rem;
    }

    .countdown-number {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2.8rem;
    }

    .section-subtitle {
        font-size: 1.8rem;
    }

    .event-item {
        padding: 1.5rem 1rem;
    }

    .event-time {
        font-size: 1.3rem;
    }

    .event-item h3 {
        font-size: 1.5rem;
    }

    .modal-content {
        padding: 2rem 1.5rem;
        margin: 0 10px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .scroll-indicator,
    .floating-hearts,
    .hero-decoration {
        display: none;
    }
    
    body {
        background: white;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #0066cc;
        --accent-color: #0066cc;
        --text-dark: #000000;
        --text-light: #333333;
    }
}


