* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

@media (min-width: 769px) {
    .container {
        max-width: 95vw;
        padding: 0 10px;
    }
}

/* Navigation Menu */
.nav-toggle {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: none;
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.nav-toggle .hamburger {
    width: 20px;
    height: 2px;
    background: #333;
    margin: 6px auto;
    transition: all 0.3s ease;
}

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

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

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

.nav-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, #fdf2f8 0%, #f0f9ff 100%);
    z-index: 999;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    padding: 80px 0 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

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

.nav-menu ul {
    list-style: none;
    padding: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    display: block;
    padding: 15px 30px;
    color: #333;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.nav-menu a:hover {
    background: rgba(14, 165, 233, 0.1);
    border-left-color: #0ea5e9;
    color: #0ea5e9;
}

.nav-menu a.active {
    background: rgba(14, 165, 233, 0.2);
    border-left-color: #0ea5e9;
    color: #0ea5e9;
}

.nav-menu a[href="game.html"] {
    background: rgba(14, 165, 233, 0.1);
    border-left: 3px solid #0ea5e9;
}

.nav-menu a[href="game.html"]:hover {
    background: rgba(14, 165, 233, 0.2);
}

.menu-image {
    max-width: 60%;
    height: auto;
    display: block;
    margin: 0 auto;
    text-align: center;
    margin-top: auto;
    margin-bottom: 20vh;
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Desktop Navigation */
.desktop-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    transition: all 0.3s ease;
    min-height: 60px;
}

.desktop-nav .couple-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.desktop-nav .couple-name a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.desktop-nav .couple-name a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.desktop-nav .nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.desktop-nav {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.desktop-nav.visible {
    opacity: 1;
}

/* White background bar when scrolled */
.desktop-nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.desktop-nav.scrolled .couple-name {
    color: #1f2937;
    text-shadow: none;
    font-weight: 600;
}

.desktop-nav a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    font-family: 'Playfair Display', serif;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    padding: 8px 16px;
    position: relative;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 6px;
    left: 50%;
    background-color: white;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.desktop-nav a:hover::after {
    width: 80%;
}

.desktop-nav a.active::after {
    width: 80%;
}

.desktop-nav a[href="game.html"] {
    color: #0ea5e9;
}

.desktop-nav a[href="game.html"]::after {
    background-color: #0ea5e9;
}

/* Menu styles for non-hero pages */
.desktop-nav.scrolled a {
    color: #1f2937;
    text-shadow: none;
}

.desktop-nav.scrolled a::after {
    background-color: #0ea5e9;
}

.desktop-nav.scrolled a[href="game.html"] {
    color: #0ea5e9;
}

.desktop-nav.scrolled a[href="game.html"]::after {
    background-color: #0ea5e9;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 25vh;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(14, 165, 233, 0.4), rgba(2, 132, 199, 0.4));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero h1 {
    font-size: 5.5rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-weight: normal;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero p {
    font-size: 1.5rem;
    color: #6b7280;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero .date {
    font-size: 1.75rem;
    color: #000000;
    margin-bottom: 3rem;
}

.btn {
    display: inline-block;
    background: #0ea5e9;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    transition: background-color 0.3s;
}

.btn:hover {
    background: #0284c7;
}

/* Scroll Down Arrow */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
    text-align: center;
}

.scroll-down-text {
    color: white;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.scroll-down-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    margin: 0 auto;
}

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

/* Countdown Section */
.countdown {
    padding: 5rem 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
    margin-top: 1rem;
    font-family: 'Playfair Display', serif;
}

.section-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 1.125rem;
    margin-bottom: 4rem;
}

.countdown-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
}

.flip-card {
    position: relative;
    width: 120px;
    height: 80px;
    margin: 0 auto 1rem;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card.flip .flip-card-inner {
    transform: rotateX(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.flip-card-front {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    transform: rotateX(0deg);
}

.flip-card-back {
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    transform: rotateX(180deg);
}

.flip-card-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    border-radius: 8px 8px 0 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.flip-card-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    border-radius: 0 0 8px 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.flip-card-number {
    position: relative;
    z-index: 10;
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-label {
    color: #6b7280;
    font-weight: 500;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.flip-card-shadow {
    position: absolute;
    bottom: -8px;
    left: 5%;
    right: 5%;
    height: 8px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    filter: blur(4px);
}

/* Details Section */
.details {
    padding: 5rem 0;
    background: white;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 90%;
    margin: 0 auto;
}

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

.detail-card {
    border: 2px solid #dbeafe;
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: border-color 0.3s;
}

.detail-card:hover {
    border-color: #7dd3fc;
}

.detail-card.blue {
    border-color: #dbeafe;
}

.detail-card.blue:hover {
    border-color: #7dd3fc;
}

.detail-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.detail-header.blue {
    color: #0ea5e9;
}

.detail-header.pink {
    color: #ec4899;
}

.map-container {
    margin-top: 1rem;
}

.map-container iframe {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.google-form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 1rem;
}

.google-form-container iframe {
    width: 100%;
    min-height: 700px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    background: white;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    margin: 0.25rem;
}

.badge.blue {
    background: #dbeafe;
    color: #0ea5e9;
}

.badge.blue {
    background: #dbeafe;
    color: #0ea5e9;
}

.badge.green {
    background: #dcfce7;
    color: #16a34a;
}

.badge.purple {
    background: #f3e8ff;
    color: #9333ea;
}

/* RSVP Section */
.rsvp {
    padding: 5rem 0;
    background: linear-gradient(90deg, #fdf2f8 0%, #f0f9ff 100%);
}

.rsvp-form {
    max-width: 500px;
    margin: 0 auto;
    border: 2px solid #7dd3fc;
    border-radius: 0.5rem;
    padding: 1.5rem;
}

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

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 1rem;
}

.form-input:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.form-help {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #6b7280;
    font-style: italic;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Gift Catalog Section */
.gifts {
    padding: 5rem 0;
    background: white;
}

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

.gift-card {
    border: 2px solid #dbeafe;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gift-card:hover {
    border-color: #7dd3fc;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.gift-card.completed {
    opacity: 0.6;
    background: #f8fafc;
}

.gift-card.completed::after {
    content: '✓ Completato';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #10b981;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.gift-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

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

.gift-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    flex: 1;
}

.gift-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.gift-progress {
    margin-bottom: 1.5rem;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #0ea5e9, #38bdf8);
    border-radius: 6px;
    transition: width 0.5s ease;
}

.progress-fill.completed {
    background: linear-gradient(90deg, #10b981, #34d399);
}

.progress-text {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #6b7280;
}

.gift-button {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: #0ea5e9;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gift-button:hover:not(:disabled) {
    background: #0284c7;
    transform: translateY(-2px);
}

.gift-button:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
}

/* Gift Modal */
.gift-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

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

.gift-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: #9ca3af;
    transition: color 0.3s ease;
}

.gift-modal-close:hover {
    color: #374151;
}

.gift-modal-info {
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 0.5rem;
}

.gift-modal-progress {
    text-align: center;
}

.gift-selection-form {
    margin-top: 1rem;
}

.gift-submit-btn {
    width: 100%;
    margin-top: 1rem;
}

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

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #0ea5e9;
}

.form-input[type="number"] {
    -moz-appearance: textfield;
}

.form-input[type="number"]::-webkit-outer-spin-button,
.form-input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-method {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method:hover {
    border-color: #0ea5e9;
    background: #f0f9ff;
}

.payment-method input[type="radio"] {
    margin-right: 1rem;
}

.payment-method-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

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

.payment-method input[type="radio"]:checked + .payment-method-content {
    color: #0ea5e9;
}

.payment-method input[type="radio"]:checked + .payment-method-content .payment-icon {
    transform: scale(1.1);
}

/* Bank Transfer Modal */
.bank-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.bank-modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 1rem;
    width: 90%;
    max-width: 600px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.bank-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: #9ca3af;
    transition: color 0.3s ease;
}

.bank-modal-close:hover {
    color: #374151;
}

.bank-details {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

.bank-detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

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

.bank-label {
    font-weight: 600;
    color: #374151;
    min-width: 100px;
}

.bank-value {
    font-family: monospace;
    font-size: 1.1rem;
    color: #0ea5e9;
    flex: 1;
}

.copy-btn {
    background: #0ea5e9;
    color: white;
    border: none;
    border-radius: 0.25rem;
    padding: 0.5rem;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.copy-btn:hover {
    background: #0284c7;
}

.bank-instructions {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #fef3c7;
    border-radius: 0.5rem;
    border-left: 4px solid #f59e0b;
}

.bank-instructions h4 {
    color: #92400e;
    margin-bottom: 0.5rem;
}

.bank-instructions ol {
    color: #78350f;
    padding-left: 1.5rem;
}

.bank-instructions li {
    margin-bottom: 0.5rem;
}

.bank-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.btn-secondary {
    background: #6b7280;
}

.btn-secondary:hover {
    background: #4b5563;
}

/* Stripe Payment Modal */
.stripe-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

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

.stripe-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: #9ca3af;
    transition: color 0.3s ease;
}

.stripe-modal-close:hover {
    color: #374151;
}

.stripe-card-element {
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    background: white;
}

.stripe-errors {
    color: #dc2626;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    min-height: 1.5rem;
}

.payment-summary {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 0.5rem;
    margin: 1rem 0;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

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

.stripe-submit-btn {
    width: 100%;
    position: relative;
}

.stripe-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

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

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

.footer h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: white;
}

.footer .date {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.footer-hearts {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 1.25rem;
}

.footer-hearts .pink {
    color: #f472b6;
}

.footer-hearts .blue {
    color: #38bdf8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }

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

    .hero p {
        font-size: 1.25rem;
    }

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

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

    .nav-menu {
        width: 100%;
        left: -100%;
    }

    .nav-toggle {
        display: block;
    }

    .desktop-nav {
        display: none;
    }

    .gifts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gift-modal-content {
        margin: 10% auto;
        padding: 1.5rem;
        width: 95%;
    }
}

@media (min-width: 769px) {
    .nav-toggle {
        display: none;
    }

    .desktop-nav {
        display: flex;
    }
}

/* Ensure navigation is always visible on non-hero sections */
.desktop-nav.visible {
    opacity: 1;
}

/* Responsive adjustments for desktop navigation */
@media (max-width: 1024px) {
    .desktop-nav {
        padding: 15px 20px;
    }
    
    .desktop-nav .couple-name {
        font-size: 1.3rem;
    }
    
    .desktop-nav .nav-links {
        gap: 20px;
    }
    
    .desktop-nav a {
        font-size: 1rem;
        padding: 6px 12px;
    }
}

/* Navigation Links */
.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-family: 'Playfair Display', serif;
    transition: all 0.3s ease;
    padding: 10px 15px;
    border-radius: 5px;
    position: relative;
}

/* Section Titles */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}
