/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brandbook Color Palette */
    --azul-marino: #2d2d8c;
    --celeste: #acbec7;
    --verde: #5d8a64;
    --verde-limon: #95a75b;
    --amarillo: #ffde59;
    --naranja: #ff914d;
    
    /* Legacy colors for compatibility - mapped to new palette */
    --deep-blue: #2d2d8c;
    --light-blue: #acbec7;
    --dark-green: #5d8a64;
    --olive-green: #95a75b;
    --bright-yellow: #ffde59;
    --warm-orange: #ff914d;
    
    /* Legacy colors for compatibility */
    --wedding-gold: #ffde59;
    --wedding-sand: #f5e6d3;
    --wedding-palm: #5d8a64;
    --wedding-cream: #fff8f0;
    
    /* Grays */
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--wedding-cream);
    color: var(--azul-marino);
    line-height: 1.6;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--deep-blue);
}

/* Script font for names */
.script-font {
    font-family: 'Dancing Script', cursive;
    font-weight: 600;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navbar-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.navbar-menu a {
    color: var(--azul-marino);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-menu a:hover {
    color: var(--azul-marino);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: var(--gray-700);
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 248, 240, 0.5) 0%, rgba(245, 230, 211, 0.3) 100%),
                radial-gradient(circle at 20% 50%, rgba(255, 140, 66, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(26, 58, 92, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
    padding: 6rem 1rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    animation: fadeIn 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.hero-title.script-font {
    font-family: 'Dancing Script', cursive;
    font-size: 4.5rem;
}

.hero-title-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    margin: 0 auto 1rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.hero-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--warm-orange), var(--bright-yellow));
    margin: 0 auto 1.5rem;
}

.hero-date {
    font-size: 2rem;
    color: var(--azul-marino);
    margin-bottom: 0.5rem;
}

.hero-location {
    font-size: 1.5rem;
    color: var(--azul-marino);
    margin-bottom: 3rem;
}

.countdown {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.countdown-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--azul-marino);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.scroll-down {
    display: inline-block;
    margin-top: 3rem;
    color: var(--deep-blue);
    animation: bounce 2s infinite;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--warm-orange), var(--bright-yellow));
    color: var(--azul-marino);
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--bright-yellow), var(--warm-orange));
    transform: scale(1.05);
}

.btn-secondary {
    background-color: transparent;
    color: var(--deep-blue);
    border: 2px solid var(--deep-blue);
}

.btn-secondary:hover {
    background-color: var(--deep-blue);
    color: var(--azul-marino);
}

.btn-full {
    width: 100%;
}

/* ===== SECTIONS ===== */
.section {
    padding: 4rem 1rem;
}

.section.bg-white {
    background-color: white;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--azul-marino);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--azul-marino);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

/* ===== SCHEDULE ===== */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.schedule-card {
    background: rgba(255, 248, 240, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 0;
    border: 2px solid rgba(255, 140, 66, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.schedule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 140, 66, 0.4);
    background: rgba(255, 248, 240, 0.8);
}

.schedule-header {
    border-bottom: 2px solid var(--warm-orange);
    padding: 1.5rem 2rem;
    margin-bottom: 0;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.15), rgba(255, 215, 0, 0.15));
    border-radius: 14px 14px 0 0;
    text-align: center;
}

.schedule-header h3 {
    font-size: 2rem;
    color: var(--azul-marino);
    margin-bottom: 0.5rem;
}

.schedule-date {
    color: var(--deep-blue);
    font-weight: 500;
}

.schedule-events {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    flex: 1;
}

.event-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    border-left: 4px solid var(--warm-orange);
    transition: all 0.3s ease;
}

.event-item:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.event-content {
    width: 100%;
}

.event-header {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(255, 140, 66, 0.2);
}

.event-content h4 {
    font-size: 1.4rem;
    margin: 0;
    color: var(--azul-marino);
    font-weight: 600;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.event-details p {
    color: var(--azul-marino);
    line-height: 1.7;
    margin: 0;
}

.event-when,
.event-where,
.event-dresscode {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.event-dresscode {
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 140, 66, 0.2);
}

.pinterest-link {
    margin-top: 0.5rem;
    font-size: 0.95rem;
}

/* ===== HOTEL INFO ===== */
.hotel-info-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.hotel-discount {
    background: rgba(255, 222, 89, 0.15);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--amarillo);
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hotel-discount h4 {
    color: var(--azul-marino);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.hotel-discount p {
    color: var(--azul-marino);
    margin-bottom: 1rem;
}

/* ===== MAP ===== */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    margin: 2rem 0;
    background: transparent;
}

.map-container-small {
    border-radius: 12px;
    overflow: hidden;
    background: transparent;
    height: 400px;
    display: flex;
    align-items: stretch;
}

.map-container-small iframe {
    height: 100%;
}

.link-gold {
    color: var(--deep-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.link-gold:hover {
    color: var(--azul-marino);
    text-decoration: underline;
}

/* ===== PLACES TO VISIT (Qué Visitar) ===== */
.places-to-visit-section {
    margin-bottom: 4rem;
}

.places-section-title {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--deep-blue);
}

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

.place-card {
    background: white;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.place-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--warm-orange), var(--bright-yellow));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.place-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--warm-orange);
}

.place-card:hover::before {
    transform: scaleX(1);
}

.place-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
    margin-bottom: 0;
    filter: sepia(40%) contrast(1.1);
    transition: all 0.3s ease;
}

.place-card:hover .place-image {
    transform: scale(1.02);
    filter: sepia(30%) contrast(1.15);
}

.place-card h4,
.place-card p {
    padding: 0 2rem;
}

.place-card h4 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.place-card p {
    padding-bottom: 2rem;
}

.place-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.place-card p {
    color: var(--azul-marino);
    line-height: 1.8;
    font-size: 1rem;
}

/* ===== RECOMMENDATIONS ===== */
.recommendations-grid {
    display: grid;
    gap: 2rem;
}

.recommendation-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.recommendation-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 2px solid var(--warm-orange);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.recommendation-icon {
    display: none;
}

.recommendation-header h3 {
    font-size: 1.8rem;
    color: var(--azul-marino);
}

.recommendation-content {
    display: grid;
    gap: 1.5rem;
}

.recommendation-item h4 {
    color: var(--deep-blue);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.recommendation-item p {
    color: var(--azul-marino);
    line-height: 1.7;
}

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
}

.gallery-item:hover::after {
    background: rgba(0, 0, 0, 0.2);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--azul-marino);
    font-size: 2.5rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    line-height: 1;
}

/* ===== STORY ===== */
.story-container {
    max-width: 900px;
    margin: 0 auto;
}

.story-card {
    background: rgba(245, 230, 211, 0.3);
    border: 2px dashed rgba(212, 175, 55, 0.5);
    border-radius: 12px;
    padding: 3rem;
}

.story-placeholder {
    text-align: center;
}

.placeholder-badge {
    display: inline-block;
    background: rgba(255, 140, 66, 0.1);
    color: var(--azul-marino);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.story-placeholder h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--azul-marino);
}

.story-text {
    color: var(--azul-marino);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.story-divider {
    width: 100px;
    height: 2px;
    background: rgba(212, 175, 55, 0.3);
    margin: 2rem auto;
}

.story-note {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1rem;
    border-radius: 4px;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--azul-marino);
}

/* ===== FAQ ===== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--azul-marino);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 140, 66, 0.05);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--azul-marino);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--azul-marino);
    line-height: 1.8;
}

/* ===== MESA DE REGALOS ===== */
.gift-registry-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
}

.gift-registry-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gift-registry-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 2px solid var(--warm-orange);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.gift-icon {
    font-size: 2rem;
}

.gift-registry-header h3 {
    font-size: 1.8rem;
    color: var(--azul-marino);
}

.gift-description {
    color: var(--azul-marino);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.gift-stores {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.gift-store-item {
    padding: 1.5rem;
    background: var(--wedding-cream);
    border-radius: 8px;
    border-left: 4px solid var(--warm-orange);
}

.gift-store-item h4 {
    color: var(--deep-blue);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.gift-store-item p {
    color: var(--azul-marino);
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.btn-small {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    margin-top: 0.75rem;
}

.gift-account {
    background: var(--wedding-cream);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--warm-orange);
    margin-top: 1rem;
}

.gift-account p {
    color: var(--azul-marino);
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.gift-note {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1.5rem;
}

.gift-note p {
    color: var(--azul-marino);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== MAQUILLISTAS ===== */
.makeup-artists-container {
    max-width: 900px;
    margin: 0 auto;
}

.makeup-artist-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.makeup-artist-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 2px solid var(--warm-orange);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.makeup-icon {
    display: none;
}

.makeup-artist-header h3 {
    font-size: 1.8rem;
    color: var(--azul-marino);
}

.makeup-description {
    color: var(--azul-marino);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.makeup-artists-list {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.makeup-artist-item {
    padding: 1.5rem;
    background: var(--wedding-cream);
    border-radius: 8px;
    border-left: 4px solid var(--warm-orange);
}

.makeup-artist-item h4 {
    color: var(--deep-blue);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.makeup-contact {
    color: var(--azul-marino);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.makeup-contact a {
    color: var(--deep-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.makeup-contact a:hover {
    color: var(--wedding-palm);
    text-decoration: underline;
}

.makeup-tips {
    background: rgba(212, 175, 55, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.makeup-tips h4 {
    color: var(--azul-marino);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.makeup-tips-list {
    list-style: none;
    padding-left: 0;
}

.makeup-tips-list li {
    color: var(--azul-marino);
    line-height: 1.8;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.makeup-tips-list li::before {
    content: "•";
    color: var(--azul-marino);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.makeup-note {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1.5rem;
}

.makeup-note p {
    color: var(--azul-marino);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== RSVP ===== */
.rsvp-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    position: relative;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-200);
}

.modal-header h3 {
    font-size: 1.8rem;
    color: var(--azul-marino);
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--azul-marino);
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    line-height: 1;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--azul-marino);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--azul-marino);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--warm-orange);
    box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--wedding-cream);
    color: var(--azul-marino);
    padding: 3rem 1rem 1.5rem;
}

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

.footer-column h3 {
    color: var(--azul-marino);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-column p {
    color: var(--azul-marino);
    line-height: 1.8;
}

.footer-column a {
    color: var(--azul-marino);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--naranja);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    font-size: 1.5rem;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--azul-marino);
}

/* ===== UTILITIES ===== */
.text-center {
    text-align: center;
}

.text-sm {
    font-size: 0.875rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}


/* ===== FLYING MACAW ===== */
.flying-macaw {
    position: fixed;
    z-index: 9999;
    pointer-events: none;
    width: 150px;
    height: 150px;
    animation: flyAcross 25s infinite ease-in-out;
    opacity: 0.85;
    will-change: transform;
    background: transparent;
}

/* Macaw image */
.macaw-extracted {
    width: 150px;
    height: 150px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.25));
    animation: wingFlap 0.5s ease-in-out infinite;
    background: transparent;
}

@keyframes wingFlap {
    0%, 100% {
        transform: scaleY(1);
    }
    50% {
        transform: scaleY(0.95);
    }
}

@keyframes flyAcross {
    0% {
        left: -200px;
        top: 15%;
        transform: rotate(-10deg) scale(0.8);
    }
    5% {
        top: 10%;
        transform: rotate(-5deg) scale(0.9);
    }
    10% {
        top: 20%;
        transform: rotate(5deg) scale(1);
    }
    15% {
        top: 12%;
        transform: rotate(-3deg) scale(0.95);
    }
    20% {
        top: 25%;
        transform: rotate(8deg) scale(1.05);
    }
    25% {
        top: 18%;
        transform: rotate(-2deg) scale(1);
    }
    30% {
        top: 30%;
        transform: rotate(10deg) scale(1.1);
    }
    35% {
        top: 22%;
        transform: rotate(-5deg) scale(1);
    }
    40% {
        top: 15%;
        transform: rotate(3deg) scale(0.95);
    }
    45% {
        top: 28%;
        transform: rotate(-8deg) scale(1.05);
    }
    50% {
        left: 50%;
        top: 20%;
        transform: rotate(0deg) scale(1);
    }
    55% {
        top: 15%;
        transform: rotate(-5deg) scale(0.95);
    }
    60% {
        top: 25%;
        transform: rotate(8deg) scale(1.05);
    }
    65% {
        top: 18%;
        transform: rotate(-3deg) scale(1);
    }
    70% {
        top: 30%;
        transform: rotate(10deg) scale(1.1);
    }
    75% {
        top: 22%;
        transform: rotate(-5deg) scale(1);
    }
    80% {
        top: 15%;
        transform: rotate(3deg) scale(0.95);
    }
    85% {
        top: 28%;
        transform: rotate(-8deg) scale(1.05);
    }
    90% {
        top: 20%;
        transform: rotate(5deg) scale(1);
    }
    95% {
        top: 25%;
        transform: rotate(-3deg) scale(0.9);
    }
    100% {
        left: calc(100% + 200px);
        top: 20%;
        transform: rotate(10deg) scale(0.8);
    }
}


/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .flying-macaw {
        width: 80px;
        height: 80px;
    }

    .macaw-extracted {
        width: 80px;
        height: 80px;
    }

    .navbar-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 2rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
    }

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

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-title.script-font {
        font-size: 3rem;
    }

    .hero-title-image {
        max-width: 90%;
        max-width: 400px;
    }

    .hero-date {
        font-size: 1.5rem;
    }

    .hero-location {
        font-size: 1.2rem;
    }

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

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

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

    .event-item {
        flex-direction: column;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .recommendation-content {
        grid-template-columns: 1fr;
    }

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

    .place-card {
        padding: 2rem;
    }

    .place-icon {
        font-size: 3rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .gift-registry-container {
        grid-template-columns: 1fr;
    }

    .hotel-info-container {
        grid-template-columns: 1fr;
    }

    .hotel-discount {
        height: auto;
        min-height: 300px;
    }

    .map-container-small {
        height: 300px;
    }

    .gift-store-item,
    .makeup-artist-item {
        padding: 1rem;
    }

    .makeup-tips-list li {
        padding-left: 1rem;
    }

    .hotel-info-container {
        grid-template-columns: 1fr;
    }

    .hotel-discount {
        height: auto;
        min-height: 300px;
    }

    .map-container-small {
        height: 300px;
    }
}

@media (min-width: 769px) {
    .recommendation-content {
        grid-template-columns: repeat(2, 1fr);
    }
}
