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

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
    color: white;
    text-align: center;
}

.hero-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-video img,
.hero-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Aggressive mobile video support */
.hero-video {
    /* Force video to work on all devices */
    -webkit-playsinline: true;
    -moz-playsinline: true;
    -ms-playsinline: true;
    -o-playsinline: true;
}

/* Remove mobile restrictions */
@media (max-width: 768px) {
    .hero-video {
        /* Keep video visible on mobile */
        display: block !important;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    z-index: 2;
    max-width: 600px;
}

.save-date-text {
    margin-bottom: 2rem;
}

.save-date-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    margin: 0.2rem 0;
}

.save-date-text .the {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 2.5rem;
    font-weight: 400;
    display: block;
    margin: -0.5rem 0;
}

.names {
    margin: 3rem 0;
}

.names h1 {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.wedding-date {
    border-top: 2px solid white;
    padding-top: 1.5rem;
    margin-top: 2rem;
}

.wedding-date p {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    margin: 0.5rem 0;
}

/* Countdown Styles */
.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.3);
}

.countdown-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.countdown-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2C3E50;
    background: rgba(255,255,255,0.9);
    padding: 0.3rem 0.6rem;
    border-radius: 8px;
    display: inline-block;
    min-width: 70px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 2px solid #e5c56b;
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.9;
    font-weight: 300;
}

/* Navigation */
.navigation {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navigation ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 1rem 0;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.navigation li {
    margin: 0 1.5rem;
}

.navigation a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.navigation a:hover {
    color: #e5c56b;
    border-bottom-color: #e5c56b;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2C3E50;
}

/* Destination Section */
.destination {
    background: #f8f9fa;
}

.destination-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.destination-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.destination-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Weather Widget */
.weather-widget {
    background: linear-gradient(135deg, #e5c56b, #d4b559);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 2rem;
    color: white;
    text-align: center;
}

.weather-widget h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.weather-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.weather-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.weather-icon {
    font-size: 1.5rem;
}

.weather-value {
    font-size: 1.1rem;
    font-weight: 600;
}

.weather-label {
    font-size: 0.8rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Holbox Map */
.holbox-map {
    margin-top: 3rem;
    text-align: center;
}

.holbox-map h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2C3E50;
}

.map-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(229, 197, 107, 0.95);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    pointer-events: none;
    backdrop-filter: blur(5px);
}

/* Gallery Section */
.gallery {
    background: white;
    padding: 5rem 0;
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

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

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.05);
}

.gallery-video::after {
    content: "▶️";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    background: rgba(229, 197, 107, 0.9);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gallery-video:hover::after {
    opacity: 1;
}

/* Travel Dates */
.travel-dates {
    background: linear-gradient(135deg, #8B7D7B 0%, #6D5D5B 100%);
    color: white;
}

.travel-dates h2 {
    color: white;
}

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

.date-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.date-card:hover {
    transform: translateY(-5px);
}

.date-card.highlight {
    background: linear-gradient(135deg, #e5c56b, #d4b559);
    border: 3px solid #f5e6a8;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(229, 197, 107, 0.4);
}

.date-card.highlight h3,
.date-card.highlight .date,
.date-card.highlight .day,
.date-card.highlight .description {
    color: white;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.date-card.highlight .date {
    font-size: 2.2rem;
    font-weight: 700;
}

.date-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.date-card .date {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.date-card .day {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.date-card .description {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Standesamt Section */
.standesamt {
    background: linear-gradient(135deg, #f8f6f4 0%, #f0ede8 100%);
    color: #4a4a4a;
    position: relative;
}

.standesamt h2 {
    color: #8B7D7B;
    text-align: center;
    margin-bottom: 3rem;
}

.standesamt-content {
    max-width: 1000px;
    margin: 0 auto;
}

.standesamt-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.standesamt-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.standesamt-header {
    padding: 2.5rem 3rem 1rem 3rem;
    border-bottom: 1px solid #f0f0f0;
}

.standesamt-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #8B7D7B;
}

.standesamt-date {
    font-size: 1.4rem;
    font-weight: 600;
    color: #e5c56b;
    margin-bottom: 0.5rem;
}

.standesamt-location {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
}

.standesamt-text {
    padding: 1rem 3rem 2.5rem 3rem;
}

.standesamt-text p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.standesamt-text em {
    color: #888;
    font-size: 0.95rem;
}

.standesamt-image {
    position: relative;
    overflow: hidden;
}

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

.standesamt-card:hover .standesamt-image img {
    transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .standesamt-card {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }
    
    .standesamt-image {
        height: 250px;
        order: -1;
    }
    
    .standesamt-header,
    .standesamt-text {
        padding: 2rem;
    }
    
    .standesamt-header {
        padding-bottom: 1rem;
    }
}

/* Accommodation Section */
.accommodation {
    background: white;
}

.accommodation-intro {
    text-align: center;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    color: #666;
}

.hotel-single {
    max-width: 800px;
    margin: 0 auto;
}

.hotel-card-single {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 400px;
}

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

.hotel-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hotel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.hotel-card.premium {
    border: 2px solid #FFD700;
}

.hotel-card.premium::before {
    content: "PREMIUM";
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #FFD700;
    color: #333;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.hotel-card {
    position: relative;
}

.hotel-image {
    height: 250px;
    overflow: hidden;
}

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

.hotel-card:hover .hotel-image img {
    transform: scale(1.05);
}

.hotel-info {
    padding: 1.5rem;
}

.hotel-card-single .hotel-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hotel-card-single .hotel-image {
    height: 100%;
}

.hotel-card-single .hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-contact {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1.5rem;
    text-align: center;
}

.hotel-contact p {
    margin: 0.5rem 0;
    color: #666;
}

.hotel-contact strong {
    color: #2C3E50;
}

/* Guest Information */
.guest-info {
    background: #f8f9fa;
    border-left: 4px solid #e5c56b;
    padding: 2rem;
    border-radius: 0 10px 10px 0;
    margin-top: 2rem;
}

.guest-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #2C3E50;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.guest-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guest-checklist li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    line-height: 1.5;
}

.guest-checklist li:last-child {
    border-bottom: none;
}

.guest-checklist li::before {
    content: "✓";
    color: #e5c56b;
    font-weight: bold;
    font-size: 1.1rem;
    min-width: 20px;
    margin-top: 0.1rem;
}

.guest-checklist li strong {
    color: #2C3E50;
    font-weight: 600;
}

.hotel-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2C3E50;
}

.price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #e5c56b;
    margin-bottom: 1rem;
}

.hotel-info p {
    margin-bottom: 1rem;
    color: #666;
}

.amenities {
    list-style: none;
    margin-bottom: 1.5rem;
}

.amenities li {
    padding: 0.3rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.amenities li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e5c56b;
    font-weight: bold;
}

.book-btn {
    display: inline-block;
    background: linear-gradient(135deg, #e5c56b, #d4b559);
    color: white;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.book-btn:hover {
    background: linear-gradient(135deg, #d4b559, #e5c56b);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(229, 197, 107, 0.3);
}

.group-code {
    background: #f8f9fa;
    padding: 0.8rem;
    border-radius: 8px;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 1rem;
}

/* Travel Section */
.travel {
    background: #f8f9fa;
}

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

.travel-step {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}

.step-number {
    background: linear-gradient(135deg, #e5c56b, #d4b559);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem auto;
}

.travel-step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2C3E50;
}

.travel-tips {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.travel-tips h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2C3E50;
    text-align: center;
}

.travel-tips ul {
    list-style: none;
}

.travel-tips li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 1.5rem;
}

.travel-tips li:last-child {
    border-bottom: none;
}

.travel-tips li::before {
    content: "ℹ️";
    position: absolute;
    left: 0;
}

/* Activities Section - Simple Style */
.activities {
    background: #f8f9fa;
}

.activities-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.activity-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.2s ease;
}

.activity-item:hover {
    transform: translateY(-2px);
}

.activity-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2C3E50;
}

.activity-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Save the Date Section */
.save-the-date-section {
    background: linear-gradient(135deg, #8B7D7B, #6D5D5B);
    color: white;
    text-align: center;
}

.save-the-date-section h2 {
    color: white;
}

.save-date-image-container {
    max-width: 500px;
    margin: 2rem auto 3rem auto;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.save-date-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.contact-simple {
    max-width: 600px;
    margin: 0 auto;
}

.rsvp {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.rsvp h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #F5DEB3;
}

.rsvp p {
    margin: 1rem 0;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: #1A1A1A;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content .save-date-text h2 {
        font-size: 2.5rem;
    }
    
    .hero-content .save-date-text .the {
        font-size: 1.8rem;
    }
    
    .hero-content .names h1 {
        font-size: 2.5rem;
    }
    
    .destination-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .dates-grid {
        grid-template-columns: 1fr;
    }
    
    .hotels-grid {
        grid-template-columns: 1fr;
    }
    
    .hotel-card-single {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .hotel-card-single .hotel-image {
        height: 250px;
    }
    
    .travel-content {
        grid-template-columns: 1fr;
    }
    
    .activities-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .navigation ul {
        justify-content: space-around;
        padding: 1rem;
    }
    
    .navigation li {
        margin: 0.5rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .countdown {
        gap: 1rem;
    }
    
    .countdown-number {
        font-size: 1.8rem;
        min-width: 60px;
        padding: 0.2rem 0.4rem;
    }
    
    .weather-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .weather-item {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
    
    .map-container {
        height: 250px;
    }
    
    .guest-info {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .guest-info h4 {
        font-size: 1.1rem;
    }
    
    .guest-checklist li {
        padding: 0.6rem 0;
        flex-direction: column;
        gap: 0.3rem;
        align-items: flex-start;
    }
    
    .guest-checklist li::before {
        margin-top: 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-item {
        aspect-ratio: 16/10;
    }
    
    .save-date-loader {
        width: 280px;
        height: 360px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content .save-date-text h2 {
        font-size: 2rem;
    }
    
    .hero-content .names h1 {
        font-size: 2rem;
    }
    
    .navigation a {
        font-size: 0.9rem;
    }
    
    .hotel-info {
        padding: 1rem;
    }
    
    .travel-step,
    .travel-tips {
        padding: 1.5rem;
    }
}

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

/* Loading Animation */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8B7D7B, #6D5D5B);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    color: white;
}

.loader-rings {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem auto;
}

.loader-rings div {
    position: absolute;
    border: 4px solid transparent;
    border-top: 4px solid #e5c56b;
    border-radius: 50%;
    animation: loader-spin 1.2s linear infinite;
}

.loader-rings div:nth-child(1) {
    width: 60px;
    height: 60px;
    top: 10px;
    left: 10px;
}

.loader-rings div:nth-child(2) {
    width: 40px;
    height: 40px;
    top: 20px;
    left: 20px;
    animation-delay: -0.3s;
}

.loader-rings div:nth-child(3) {
    width: 20px;
    height: 20px;
    top: 30px;
    left: 30px;
    animation-delay: -0.6s;
}

@keyframes loader-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    margin-top: 1rem;
}

/* Save the Date Loading Animation */
.save-date-loader {
    position: relative;
    width: 350px;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.save-date-loading-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-overlay .loader-rings {
    width: 60px;
    height: 60px;
}

.loading-overlay .loader-rings div {
    border-color: transparent;
    border-top-color: #e5c56b;
}

/* Enhanced Mobile Touch */
@media (hover: none) and (pointer: coarse) {
    .book-btn, 
    .date-card, 
    .hotel-card-single,
    .activity-item {
        transform: none;
        transition: background-color 0.2s ease, box-shadow 0.2s ease;
    }
    
    .book-btn:active {
        background: linear-gradient(135deg, #d4b559, #c9a948);
        transform: scale(0.98);
    }
    
    .date-card:active,
    .activity-item:active {
        transform: scale(0.98);
        box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    }
    
    /* Larger touch targets */
    .navigation a {
        padding: 1rem 0.5rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .book-btn {
        min-height: 48px;
        padding: 1rem 2rem;
    }
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}