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

:root {
    --primary-teal: #006C6D;
    --light-gray: #D1D3D0;
    --blue-gray: #98B5BF;
    --sage-green: #A0AC9E;
    --warm-gray: #827C79;
    --cream: #f8f6f0;
    --light-text: #827C79;
    --dark-text: #006C6D;
    --gold: #006C6D;
    --shadow: rgba(0, 0, 0, 0.1);
    --text-color: #006C6D;
    --background: #D1D3D0;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: white;
    background: var(--background);
    overflow-x: hidden;
    width: 100%;
    min-width: 100%;
    position: relative;
}

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

/* Language Modal */
.language-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.language-modal-content {
    background: white;
    padding: 50px 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    max-width: 500px;
    width: 90%;
    border: 1px solid rgba(221, 229, 222, 0.3);
}

.modal-header {
    margin-bottom: 40px;
}

.modal-header h2 {
    font-family: 'Great Vibes', cursive;
    font-size: 3rem;
    color: var(--primary-teal);
    margin-bottom: 15px;
    font-weight: 400;
}

.modal-header p {
    color: var(--light-text);
    font-size: 1rem;
    margin: 0;
    font-weight: 300;
}

.language-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

.language-btn.modern {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    border: 2px solid rgba(221, 229, 222, 0.5);
    background: white;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    width: 100%;
}

.language-btn.modern:hover {
    background: rgba(221, 229, 222, 0.1);
    border-color: var(--primary-teal);
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.flag-container {
    flex-shrink: 0;
    width: 48px;
    height: 32px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.flag-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.language-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.language-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark-text);
}

.language-sub {
    font-size: 0.9rem;
    color: var(--light-text);
    font-weight: 300;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--primary-teal);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 108, 109, 0.1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

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

.nav-left {
    display: flex;
    align-items: center;
    gap: 60px;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    white-space: nowrap;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 8px 0;
    white-space: nowrap;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: white;
    transition: width 0.3s ease;
}

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

.language-toggle {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.language-toggle:hover {
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.flag-icon {
    width: 20px;
    height: 12px;
    border-radius: 2px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    z-index: 1;
}

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

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(221, 229, 222, 0.8) 0%,
        rgba(139, 157, 131, 0.6) 20%,
        rgba(45, 80, 22, 0.4) 80%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1000px;
    width: 100%;
    padding: 0 40px;
}

.couple-image-container {
    flex-shrink: 0;
}

.couple-image-frame {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
}

.couple-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-text {
    text-align: left;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content h1 {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 400;
    color: var(--primary-teal);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    line-height: 1.1;
}

.names {
    display: block;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    margin-bottom: 20px;
    line-height: 1.2;
}

.wedding-date {
    font-size: 1.4rem;
    margin: 20px 0;
    color: white;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.location {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    letter-spacing: 1px;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(3rem, 6vw, 4.5rem);
    color: white;
    margin-bottom: 1rem;
    font-weight: 400;
}

.details-section .section-header h2 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.details-section .story-text p {
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}


.section-divider {
    width: 80px;
    height: 3px;
    background: white;
    margin: 0 auto;
}

/* Story Section */
.story-section {
    background: var(--sage-green);
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.airbnb-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: white;
    line-height: 1.8;
    font-weight: 400;
}

/* Details Section */
.details-section {
    position: relative;
    min-height: 100vh;
}

.details-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.details-section .container {
    position: relative;
    z-index: 2;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.detail-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.calendar-card {
    cursor: pointer;
    position: relative;
}

.calendar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.calendar-hint {
    margin-top: 15px;
    opacity: 0.7;
    font-size: 0.85rem;
    color: var(--warm-gray);
    font-style: italic;
    transition: opacity 0.3s ease;
}

.calendar-card:hover .calendar-hint {
    opacity: 1;
}

.navigation-card {
    cursor: pointer;
    position: relative;
}

.navigation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.navigation-hint {
    margin-top: 15px;
    opacity: 0.7;
    font-size: 0.85rem;
    color: var(--warm-gray);
    font-style: italic;
    transition: opacity 0.3s ease;
}

.navigation-card:hover .navigation-hint {
    opacity: 1;
}

.accommodation-card {
    cursor: pointer;
    position: relative;
}

.accommodation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.accommodation-hint {
    margin-top: 15px;
    opacity: 0.7;
    font-size: 0.85rem;
    color: var(--warm-gray);
    font-style: italic;
    transition: opacity 0.3s ease;
}

.accommodation-card:hover .accommodation-hint {
    opacity: 1;
}

/* Calendar Modal */
.calendar-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.calendar-modal-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.calendar-modal-content h3 {
    font-family: 'Great Vibes', cursive;
    font-size: 2rem;
    color: var(--primary-teal);
    margin-bottom: 30px;
}

.calendar-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.calendar-option-btn {
    background: var(--sage-green);
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-option-btn:hover {
    background: var(--primary-teal);
    transform: translateY(-2px);
}

.calendar-close-btn {
    background: transparent;
    color: var(--warm-gray);
    border: 1px solid var(--warm-gray);
    padding: 10px 30px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-close-btn:hover {
    background: var(--warm-gray);
    color: white;
}

/* Navigation Modal */
.navigation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.navigation-modal-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.navigation-modal-content h3 {
    font-family: 'Great Vibes', cursive;
    font-size: 2rem;
    color: var(--primary-teal);
    margin-bottom: 20px;
}

.address-display {
    background: var(--light-gray);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 30px;
    font-weight: 500;
    color: var(--warm-gray);
}

.navigation-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.navigation-option-btn {
    background: var(--sage-green);
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.navigation-option-btn:hover {
    background: var(--primary-teal);
    transform: translateY(-2px);
}

.navigation-close-btn {
    background: transparent;
    color: var(--warm-gray);
    border: 1px solid var(--warm-gray);
    padding: 10px 30px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.navigation-close-btn:hover {
    background: var(--warm-gray);
    color: white;
}

.copy-success {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--sage-green);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 500;
    z-index: 1001;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.detail-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--sage-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-icon svg {
    width: 30px;
    height: 30px;
    color: var(--primary-teal);
}

.detail-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-teal);
    margin-bottom: 15px;
}

.detail-card p {
    color: var(--warm-gray);
    margin-bottom: 5px;
}

.detail-sub {
    font-size: 0.9rem;
    color: var(--warm-gray);
    font-style: italic;
}

/* Airbnb Gallery Styles */
.airbnb-gallery {
    margin: 40px 0;
}

.airbnb-gallery-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.airbnb-card-slider {
    overflow: visible;
    border-radius: 20px;
    padding: 0;
}

.airbnb-card-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 40px 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.airbnb-photo-card {
    flex: 0 0 auto;
    width: 300px;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: white;
}

.airbnb-photo-card.center {
    transform: scale(1.1);
    z-index: 3;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.airbnb-photo-card.side {
    transform: scale(0.9);
    opacity: 0.7;
    z-index: 1;
}

.airbnb-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.airbnb-photo-card:hover img {
    transform: scale(1.05);
}

.airbnb-carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% + 120px);
    left: -60px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 4;
}

.airbnb-carousel-btn {
    pointer-events: all;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.airbnb-carousel-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.airbnb-carousel-btn svg {
    width: 20px;
    height: 20px;
    color: var(--primary-teal);
}

@media (max-width: 768px) {
    .airbnb-gallery-container {
        padding: 0 15px;
    }
    
    .airbnb-carousel-controls {
        width: calc(100% + 80px);
        left: -40px;
    }
    
    .airbnb-card-track {
        gap: 20px;
        padding: 30px 15px;
    }
    
    .airbnb-photo-card {
        width: 250px;
        height: 180px;
    }
    
    .airbnb-carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .airbnb-carousel-btn svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .airbnb-card-track {
        gap: 15px;
        padding: 20px 10px;
    }
    
    .airbnb-photo-card {
        width: 200px;
        height: 150px;
    }
}

/* Gallery Section */
.gallery-section {
    background: var(--sage-green);
    padding: 100px 0;
}

/* Music Section */
.music-section {
    background: var(--primary-teal);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.music-section .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.music-section .hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
}

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

.music-section .container {
    position: relative;
    z-index: 2;
}

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

.spotify-container {
    margin-bottom: 60px;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    line-height: 0;
}

.spotify-container iframe {
    width: 100%;
    height: 152px;
    border: none;
}

.dance-question {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 800px;
    margin: 0 auto;
}

.dance-question h3 {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 400;
}

.dance-question p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 30px;
}

.song-input-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.name-input-wrapper {
    width: 100%;
}

.name-input {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.name-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.name-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.autocomplete-wrapper {
    width: 100%;
    position: relative;
}

.song-input {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.song-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.song-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
}

.song-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    margin-top: 4px;
}

.song-suggestions.show {
    display: block;
}

.song-suggestion {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.song-suggestion:last-child {
    border-bottom: none;
}

.song-suggestion:hover,
.song-suggestion.highlighted {
    background-color: #f8f8f8;
}

.song-suggestion .song-name {
    font-weight: 600;
    color: #333;
}

.song-suggestion .artist-name {
    font-size: 14px;
    color: #666;
    margin-top: 2px;
}

.song-submit-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    color: var(--primary-teal);
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    margin-top: 10px;
}

.song-submit-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.95));
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.3);
    scale: 1.02;
}

/* Music Message Styling */
.music-message {
    margin-top: 20px;
    padding: 20px 24px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition: all 0.4s ease;
    transform: translateY(-10px);
    opacity: 0;
    animation: slideInMessage 0.4s ease forwards;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.music-message.success {
    background: linear-gradient(135deg, rgba(72, 187, 120, 0.15), rgba(56, 178, 172, 0.15));
    color: rgba(255, 255, 255, 0.95);
    border-color: rgba(72, 187, 120, 0.3);
    box-shadow: 0 8px 32px rgba(72, 187, 120, 0.1);
}

.music-message.error {
    background: linear-gradient(135deg, rgba(245, 101, 101, 0.15), rgba(229, 62, 62, 0.15));
    color: rgba(255, 255, 255, 0.95);
    border-color: rgba(245, 101, 101, 0.3);
    box-shadow: 0 8px 32px rgba(245, 101, 101, 0.1);
}

.message-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.message-text {
    font-size: 1.1rem;
    line-height: 1.4;
}

@keyframes slideInMessage {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Airbnb Section */
.accommodation-section {
    background: var(--sage-green);
    padding: 100px 0 50px 0;
}

.airbnb-info {
    margin-bottom: 80px;
    overflow: visible;
}

.airbnb-section {
    margin-bottom: 20px;
    background: transparent;
    backdrop-filter: none;
    border: none;
    border-radius: 0;
    padding: 0;
}

.airbnb-section.collapsible .subsection-header {
cursor: pointer;
display: flex;
flex-direction: column;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(15px);
border-radius: 15px;
padding: 15px 20px;
transition: all 0.3s ease;
border: 1px solid rgba(255, 255, 255, 0.15);
}

.subsection-header-top {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
}

.airbnb-section.collapsible .subsection-header:hover {
background: rgba(255, 255, 255, 0.15);
border: 1px solid rgba(255, 255, 255, 0.25);
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.toggle-icon {
    width: 24px;
    height: 24px;
    color: white;
    transition: transform 0.3s ease;
}

.toggle-icon svg {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.section-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    padding-top: 0;
    margin-top: 20px;
}

.airbnb-section.collapsible .section-content.expanded {
    max-height: none;
    padding-top: 25px;
    padding-bottom: 30px;
    margin-bottom: 20px;
    overflow: visible;
}


.rules-title {
font-size: 1.3rem;
font-weight: 600;
color: #ffffff;
margin: 0 0 20px 0;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    color: #ffffff;
    margin: 0 0 20px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Form Validation Tooltip */
.form-tooltip {
    position: absolute !important;
    z-index: 10000 !important;
    bottom: calc(100% + 10px) !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    pointer-events: none !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.form-tooltip .tooltip-content {
    background-color: #ffffff;
    color: #333;
    text-align: left;
    border-radius: 8px;
    padding: 12px 16px;
    width: 240px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid #e0e0e0;
    font-size: 0.9rem;
    line-height: 1.4;
    position: relative;
    opacity: 1;
    visibility: visible;
}

/* Removed duplicate warning icon from CSS - now handled in JS */

.form-tooltip .tooltip-content::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -8px;
    border-width: 8px;
    border-style: solid;
    border-color: #ffffff transparent transparent transparent;
}

.form-tooltip.show {
    animation: tooltipFadeIn 0.3s ease-in-out;
}

@keyframes tooltipFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.form-field-error,
input.form-field-error,
select.form-field-error,
textarea.form-field-error,
.rsvp-form input.form-field-error,
.rsvp-form select.form-field-error,
.rsvp-form textarea.form-field-error {
    border: 2px solid #ff6b35 !important;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1) !important;
    background-color: rgba(255, 107, 53, 0.05) !important;
}

.section-emoji-title {
    font-size: 2rem;
    color: white;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-emoji-title span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: white;
    margin-bottom: 20px;
}

.section-highlight {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    margin-top: 20px;
    font-style: italic;
}

.sleeping-options {
    margin-top: 25px;
}

.sleeping-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.sleeping-list li {
    color: white;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.sleeping-list {
    list-style-type: disc;
    padding-left: 20px;
}

.sleeping-list li {
    color: white;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 0;
    position: static;
}

.sleeping-list li:before {
    display: none;
}

.onsite-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 25px;
}

.onsite-category {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
}

.category-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

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

.amenity-list li {
    color: white;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.amenity-list {
    list-style-type: disc;
    padding-left: 20px;
}

.amenity-list li {
    color: white;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
    padding-left: 0;
    position: static;
}

.amenity-list li:before {
    display: none;
}

.nearby-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.nearby-list li {
    color: white;
    font-size: 1rem;
    line-height: 1.6;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    position: relative;
    padding-left: 45px;
}

.nearby-list {
    list-style-type: disc;
    padding-left: 20px;
    margin: 20px 0;
    display: block;
}

.nearby-list li {
    color: white;
    font-size: 1rem;
    line-height: 1.6;
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 10px;
    padding-left: 15px;
    position: static;
}

.nearby-list li:before {
    display: none;
}

.airbnb-rules {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    margin-top: 60px;
}

.airbnb-rules h3 {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem;
    color: white;
    text-align: center;
    margin-bottom: 30px;
}

.rules-content {
    max-width: 800px;
    margin: 0 auto;
}

.rules-intro {
    font-size: 1.2rem;
    color: white;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.7;
    font-weight: 400;
}

.rules-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.rule-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.rule-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.rule-number {
    background: rgba(255, 255, 255, 0.9);
    color: var(--sage-green);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.rule-text p {
    color: white;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    aspect-ratio: 16/9;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
    color: var(--primary-teal);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 108, 109, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-teal);
    transform: scale(1.2);
}

/* Gallery Section - Card Slider */
.gallery-section {
    padding: 80px 0;
    background: #a0ac9e;
}

.card-slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.card-slider-wrapper {
    overflow: visible;
    border-radius: 20px;
    padding: 0;
}

.card-slider-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: transform 0.5s ease;
    padding: 0 20px;
}

.photo-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0.7;
    transform: scale(0.8);
    height: 350px;
}

.photo-card.center {
    flex: 0 0 500px;
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    z-index: 2;
    height: 400px;
}

.photo-card.side {
    flex: 0 0 300px;
    opacity: 0.7;
    transform: scale(0.8);
    height: 250px;
}

.photo-card:hover {
    opacity: 1;
}

.photo-card.center:hover {
    transform: scale(1.02);
}

.photo-card.side:hover {
    transform: scale(0.85);
}

.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


.slider-controls {
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0;
    z-index: 100;
    pointer-events: none;
    height: 0;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 101;
    position: relative;
}

.slider-btn:hover {
    background: rgba(0, 108, 109, 1);
    border: 2px solid rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.slider-btn svg {
    width: 24px;
    height: 24px;
    color: rgba(255, 255, 255, 0.9);
    stroke-width: 2;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.slide-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 108, 109, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slide-indicator.active {
    background: var(--primary-teal);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .photo-card.center {
        flex: 0 0 350px;
    }
    
    .photo-card.side {
        flex: 0 0 200px;
    }
    
    .photo-card.center {
        height: 300px;
    }
    
    .photo-card.side {
        height: 180px;
    }
    
    .card-slider-track {
        gap: 20px;
    }
    
    .slider-controls {
        left: 10px;
        right: 10px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .slider-btn svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .photo-card.center {
        flex: 0 0 280px;
    }
    
    .photo-card.side {
        flex: 0 0 150px;
    }
    
    .photo-card.center {
        height: 250px;
    }
    
    .photo-card.side {
        height: 150px;
    }
    
    .card-slider-track {
        gap: 15px;
        padding: 0 15px;
    }
    
    .slider-controls {
        left: 5px;
        right: 5px;
    }
}

/* Fun RSVP Section */
.fun-rsvp-section {
    position: relative;
    overflow: hidden;
}

/* RSVP Form Styles */
.rsvp-form-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 600px;
    margin: 40px auto 0;
    animation: fadeInUp 0.6s ease;
    position: relative;
}

.rsvp-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 24px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.rsvp-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.rsvp-form-container h3 {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem;
    color: white;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 400;
}

.rsvp-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: white;
    font-weight: 500;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--primary-teal);
    color: white;
}


.rsvp-submit-btn {
    background: linear-gradient(135deg, var(--primary-teal), rgba(152, 181, 191, 0.9));
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 8px 32px rgba(0, 108, 109, 0.3);
    font-family: 'Montserrat', sans-serif;
}

.rsvp-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 108, 109, 0.4);
    background: linear-gradient(135deg, rgba(0, 108, 109, 0.9), rgba(152, 181, 191, 1));
}

.rsvp-submit-btn:active {
    transform: translateY(-1px);
}

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

/* Admin Panel Styles */
.admin-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    overflow-y: auto;
}

.admin-container {
    max-width: 1200px;
    margin: 20px auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: var(--primary-teal);
    color: white;
    border-radius: 10px 10px 0 0;
}

.admin-header h2 {
    margin: 0;
    font-family: 'Great Vibes', cursive;
    font-size: 2rem;
}

.admin-close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.admin-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.admin-content {
    padding: 30px;
}

.admin-section {
    margin-bottom: 40px;
}

.admin-section h3 {
    color: var(--primary-teal);
    margin-bottom: 20px;
    font-size: 1.5rem;
    border-bottom: 2px solid var(--light-gray);
    padding-bottom: 10px;
}

.admin-list {
    max-height: 400px;
    overflow-y: auto;
}

.admin-item {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    transition: box-shadow 0.3s;
}

.admin-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.admin-item strong {
    color: var(--primary-teal);
    font-size: 1.1rem;
}

.admin-item em {
    color: #666;
}

.admin-item small {
    color: #999;
    font-size: 0.9rem;
}

.backup-downloads {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.download-btn {
    background: var(--primary-teal);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.download-btn:hover {
    background: #2c5f5f;
    color: #ffffff;
}

.nav-logo {
    cursor: pointer;
    transition: transform 0.2s;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.fun-rsvp-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.fun-rsvp-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

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

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

.fun-rsvp-section .section-header h2 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.fun-intro {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 50px;
    line-height: 1.8;
    font-weight: 400;
}

.fun-checkboxes-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: flex-start;
    align-items: center;
    margin: 2rem 0;
    position: relative;
    min-height: 250px;
    padding-top: 20px;
}

.checkbox-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.checkbox-option:not(.moving-option) {
    position: static;
    width: max-content;
    margin: 0 auto;
}

.moving-option {
    position: absolute;
    transition: all 0.2s ease;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    white-space: nowrap;
}

.custom-checkbox {
    display: none;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 500;
    color: white;
    transition: all 0.3s ease;
    padding: 15px 25px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.yes-label {
    background: linear-gradient(135deg, rgba(0, 108, 109, 0.8), rgba(152, 181, 191, 0.8));
    color: white;
    box-shadow: 0 8px 32px rgba(0, 108, 109, 0.3);
}

.yes-label:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 108, 109, 0.4);
    background: linear-gradient(135deg, rgba(0, 108, 109, 0.9), rgba(152, 181, 191, 0.9));
}

.no-label {
    background: linear-gradient(135deg, rgba(130, 124, 121, 0.8), rgba(160, 172, 158, 0.8));
    color: white;
    box-shadow: 0 8px 32px rgba(130, 124, 121, 0.3);
}

.no-label:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(130, 124, 121, 0.4);
    background: linear-gradient(135deg, rgba(130, 124, 121, 0.9), rgba(160, 172, 158, 0.9));
}

.checkmark {
    width: 28px;
    height: 28px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.custom-checkbox:checked + .checkbox-label .checkmark {
    background: rgba(255, 255, 255, 0.9);
    transition: 0.3s;
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.custom-checkbox:checked + .checkbox-label .checkmark::after {
    content: '';
    position: absolute;
    left: 9px;
    top: 4px;
    width: 6px;
    height: 12px;
    border: solid var(--primary-teal);
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.custom-checkbox:checked + .yes-label .checkmark::after {
    border-color: white;
}

.custom-checkbox:checked + .no-label .checkmark::after {
    border-color: white;
}

.fun-buttons-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
    min-height: 80px;
}

.yes-btn {
    background: var(--primary-teal);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 108, 109, 0.3);
}

.yes-btn:hover {
    background: var(--primary-teal);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 108, 109, 0.4);
}

.no-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

.no-btn:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
}

.fun-message {
    min-height: 60px;
    font-size: 1.1rem;
    color: white;
    font-weight: 500;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    margin-top: 30px;
    text-align: center;
}

.contact-info h3 {
    font-family: 'Great Vibes', cursive;
    color: var(--primary-teal);
    margin-bottom: 25px;
    font-size: 2rem;
    font-weight: 400;
}

.contact-details p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: white;
}

.fun-note {
    font-style: italic;
    color: white;
    margin-top: 20px;
}

/* Footer */
.footer {
    background: var(--primary-teal);
    color: white;
    text-align: center;
    padding: 2px 0;
    position: relative;
    z-index: 10;
}

.footer p {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.footer-sub {
    font-family: 'Great Vibes', cursive;
    font-size: 1.4rem;
    color: var(--light-gray);
    font-weight: 400;
}

/* Mobile Responsiveness */
@media (max-width: 1200px) {
    .hamburger {
        display: flex;
        position: absolute;
        left: 20px;
        z-index: 2;
    }

    .nav-container {
        padding: 0 20px;
        position: relative;
        justify-content: center;
    }

    .nav-left {
        position: static;
        gap: 20px;
    }

    .nav-brand {
        position: static;
        transform: none;
    }

    .nav-logo {
        height: 50px;
    }

    .language-toggle {
        position: absolute;
        right: 20px;
        z-index: 2;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--primary-teal);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        z-index: 1000;
    }

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

    .nav-link {
        padding: 15px 0;
        font-size: 1.2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 80%;
        text-align: center;
    }
}

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

    .nav-left {
        gap: 15px;
    }

    .nav-logo {
        height: 45px;
    }

    .language-toggle {
        padding: 6px;
    }

    .flag-icon {
        width: 18px;
        height: 11px;
    }

    .hamburger {
        padding: 4px;
    }

    .hamburger span {
        width: 22px;
        height: 2.5px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .couple-image-frame {
        width: 250px;
        height: 250px;
    }

    .hero-text {
        text-align: center;
    }

    .nav-menu {
        position: fixed;
        top: 50px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 50px);
        background: rgba(0, 108, 109, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        z-index: 999;
        box-shadow: 0 5px 20px var(--shadow);
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

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

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .language-modal-content {
        padding: 40px 30px;
        max-width: 400px;
    }

    .modal-header h2 {
        font-size: 1.8rem;
    }

    .language-options {
        gap: 12px;
    }

    .language-btn.modern {
        padding: 16px 20px;
        gap: 16px;
    }

    .flag-container {
        width: 40px;
        height: 28px;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .fun-checkboxes-container {
        gap: 1.5rem;
        min-height: 150px;
    }
    
    .checkbox-label {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        font-size: 1.1rem;
        padding: 10px;
    }

    .checkmark {
        min-width: 30px !important;
        min-height: 30px !important;
        width: 30px !important;
        height: 30px !important;
        flex-shrink: 0;
    }

    .fun-buttons-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .yes-btn, .no-btn {
        width: 100%;
        max-width: 300px;
        position: relative;
        min-height: 50px;
        font-size: 1.1rem;
    }

    .contact-info {
        padding: 30px 20px;
    }

    section {
        padding: 60px 0;
    }
}

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

    .language-modal-content {
        padding: 30px 20px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .couple-image-frame {
        width: 200px;
        height: 200px;
    }

    .names {
        font-size: 2rem;
    }

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

    .location {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .nav-menu {
        gap: 20px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

/* Prevent horizontal scrolling and color bands */
html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

* {
    max-width: 100%;
}

/* Gift Section */
.gift-section {
    padding: 80px 0;
    background: var(--sage-green);
    position: relative;
}

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

.gift-section .section-header h2 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.gift-intro {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.6;
}

.gift-text {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 25px;
    line-height: 1.7;
}

.gift-text.suggestions {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-top: 10px;
}

.gift-highlight {
    font-size: 1.4rem;
    color: white;
    font-weight: 600;
    margin: 40px 0;
    font-style: italic;
    position: relative;
}

.gift-highlight::before,
.gift-highlight::after {
    content: '✨';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
}

.gift-highlight::before {
    left: -40px;
}

.gift-highlight::after {
    right: -40px;
}

.gift-suggestions {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.suggestions-intro {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 500;
}

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

.suggestions-list li {
    font-size: 1.1rem;
    color: white;
    margin: 15px 0;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border-left: 4px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.suggestions-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gift-footer {
    font-size: 1rem;
    color: white;
    margin-top: 30px;
    font-style: italic;
}

@media (max-width: 768px) {
    .gift-content {
        padding: 0 20px;
    }
    
    .gift-intro {
        font-size: 1.1rem;
    }
    
    .gift-text {
        font-size: 1rem;
    }
    
    .gift-highlight {
        font-size: 1.2rem;
        margin: 30px 0;
    }
    
    .gift-highlight::before,
    .gift-highlight::after {
        display: none;
    }
    
    .gift-suggestions {
        padding: 25px 20px;
        margin: 30px 0;
    }
    
    .suggestions-list li {
        font-size: 1rem;
        padding: 12px 15px;
    }
}

/* Hidden class for language modal */
.hidden {
    display: none !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
