/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Splash Screen */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url('../img/background.png') repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.splash-content {
    text-align: center;
    animation: fadeInScale 0.8s ease-out;
}

.splash-card {
    max-width: 90%;
    width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 4px #001f3f;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.splash-card:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4), 0 0 0 4px #dc143c;
}

.splash-hint {
    margin-top: 30px;
    color: #001f3f;
    font-size: 16px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    animation: pulse 2s ease-in-out infinite;
}

.splash-hint i {
    color: #dc143c;
    margin-right: 8px;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background: url('../img/background.png') repeat;
    background-attachment: fixed;
    padding: 20px 0;
}

.container {
    width: 424px;
    margin: 0 auto;
    background: #b3d9ff;
    box-shadow: 0 0 0 4px #001f3f, 0 15px 60px rgba(0, 0, 0, 0.4), 0 5px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border-radius: 8px;
    border: 3px solid #001f3f;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: #b3d9ff;
}

.banner-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.85;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(179, 217, 255, 0.1), rgba(179, 217, 255, 0.2), rgba(179, 217, 255, 0.3), rgba(179, 217, 255, 0.8), rgba(179, 217, 255, 0.9), rgba(179, 217, 255, 1));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
}

.hero-decoration-top,
.hero-decoration-bottom {
    display: flex;
    gap: 15px;
    color: #ffe730;
    font-size: 14px;
    margin: 10px 0;
}

.hero-decoration-top i,
.hero-decoration-bottom i {
    animation: twinkle 2s infinite;
}

.hero-decoration-top i:nth-child(2),
.hero-decoration-bottom i:nth-child(2) {
    animation-delay: 0.3s;
}

.hero-decoration-top i:nth-child(3),
.hero-decoration-bottom i:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

.hero-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #dc143c;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 8px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3), 0 0 20px rgba(220, 20, 60, 0.3);
}

.title-underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, transparent, #dc143c, transparent);
    margin: 0 auto 15px;
}

.hero-subtitle {
    font-size: 18px;
    color: #001f3f;
    font-weight: 900;
    line-height: 1.6;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8), -1px -1px 2px rgba(255, 255, 255, 0.6);
}

.hero-time {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.98);
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    gap: 12px;
    border: 2px solid #001f3f;
}

.time-icon {
    font-size: 24px;
    color: #dc143c;
}

.time-text {
    color: #001f3f;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Gallery Section */
.gallery-section {
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid #001f3f;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header.light {
    color: #ffffff;
}

.section-icon {
    font-size: 32px;
    color: #dc143c;
    margin-bottom: 10px;
    display: block;
}

.section-header.light .section-icon {
    color: #dc143c;
}

.section-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #dc143c;
    position: relative;
    display: inline-block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.section-header.light .section-title {
    color: #dc143c;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #dc143c, rgba(220, 20, 60, 0.5));
    margin: 12px auto 0;
    border-radius: 2px;
}

.section-header.light .section-title::after {
    background: linear-gradient(to right, #dc143c, rgba(220, 20, 60, 0.5));
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 0 2px #001f3f, 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: 2px solid #001f3f;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 0 3px #dc143c, 0 10px 25px rgba(220, 20, 60, 0.3);
}

.gallery-item-large {
    grid-column: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.18) rotate(3deg);
}

/* Info Section */
.info-section {
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.2);
}

.info-card {
    display: flex;
    gap: 18px;
    background: rgba(255, 255, 255, 0.8);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 5px solid #dc143c;
    border: 2px solid #001f3f;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card.invitation-card {
    display: block;
    padding: 20px;
}

.card-title-with-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 19px;
    color: #dc143c;
    margin-bottom: 16px;
    font-weight: 700;
    padding-bottom: 12px;
    border-bottom: 1px solid #001f3f;
}

.card-title-with-icon i {
    font-size: 20px;
    color: #dc143c;
}

.info-card:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.2);
    border-color: #001f3f;
}

.info-icon-wrapper {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #dc143c 0%, #b71c1c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(220, 20, 60, 0.4);
    border: 2px solid #001f3f;
}

.info-icon {
    font-size: 24px;
    color: #ffffff;
}

.info-content {
    flex: 1;
}

.info-content h3 {
    font-size: 19px;
    color: #dc143c;
    margin-bottom: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.quote-icon {
    font-size: 14px;
    color: #001f3f;
}

.invitation-text {
    padding: 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    border: 2px solid #001f3f;
    margin-top: 0;
    font-style: italic;
    color: #001f3f;
    font-size: 15px;
    line-height: 1.9;
    text-align: center;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.timeline-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.timeline-dot {
    font-size: 8px;
    color: #dc143c;
    margin-top: 6px;
}

.timeline-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.timeline-time {
    font-weight: 700;
    color: #dc143c;
    font-size: 14px;
}

.timeline-desc {
    color: #001f3f;
    font-size: 14px;
    line-height: 1.6;
}

.location-text {
    color: #001f3f;
    line-height: 1.9;
    margin-bottom: 18px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
}

.location-text strong {
    color: #dc143c;
    font-size: 16px;
    display: block;
    margin-bottom: 6px;
    font-weight: 700;
}

.location-text span {
    display: block;
    color: #001f3f;
}

.direction-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #dc143c 0%, #b71c1c 100%);
    color: #ffffff;
    padding: 13px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.4);
    border: 2px solid #001f3f;
}

.direction-btn:hover {
    background: linear-gradient(135deg, #ff1744 0%, #dc143c 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(220, 20, 60, 0.6);
}

.direction-btn i {
    font-size: 18px;
}

/* Countdown Section */
.countdown-section {
    padding: 40px 20px;
    background: linear-gradient(135deg, #66b3ff 0%, #99ccff 50%, #66b3ff 100%);
    color: #001f3f;
    position: relative;
    overflow: hidden;
    border-top: 2px solid #001f3f;
    border-bottom: 2px solid #001f3f;
}

.countdown-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.6; }
}

.countdown-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 18px 10px;
    border-radius: 12px;
    min-width: 75px;
    backdrop-filter: blur(10px);
    border: 2px solid #001f3f;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
    border-color: #dc143c;
}

.countdown-icon {
    font-size: 20px;
    color: #dc143c;
    margin-bottom: 8px;
}

.countdown-value {
    font-size: 36px;
    font-weight: 800;
    color: #dc143c;
    line-height: 1;
    margin-bottom: 6px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.countdown-label {
    font-size: 12px;
    color: #001f3f;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.countdown-separator {
    font-size: 32px;
    font-weight: 700;
    color: #dc143c;
    margin: 0;
    opacity: 0.8;
}

.countdown-separator i {
    font-size: 20px;
}

/* Form Section */
.form-section {
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.2);
}

.confirmation-form {
    max-width: 360px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #dc143c;
    margin-bottom: 10px;
    font-size: 14px;
}

.form-group label i {
    color: #001f3f;
    font-size: 16px;
}

.required {
    color: #dc143c;
    font-weight: 700;
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #001f3f;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    color: #001f3f;
}

.compact-input {
    width: 100%;
    padding: 14px;
    border: 2px solid #001f3f;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    color: #001f3f;
}

.compact-input::placeholder {
    color: rgba(0, 31, 63, 0.6);
    font-style: italic;
}

.compact-input:focus {
    outline: none;
    border-color: #dc143c;
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.2);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc143c;
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.compact-select {
    width: 100%;
    padding: 14px;
    border: 2px solid #001f3f;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    color: rgba(0, 31, 63, 0.6);
    font-style: italic;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23dc143c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
}

.compact-select:focus {
    outline: none;
    border-color: #dc143c;
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.2);
    color: #dc143c;
    font-style: normal;
}

.compact-select option {
    background: #b3d9ff;
    color: #001f3f;
    padding: 10px;
    font-style: normal;
}

.compact-select option:disabled {
    color: rgba(0, 31, 63, 0.5);
    font-style: italic;
}

.compact-select:valid {
    color: #dc143c;
    font-style: normal;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-label {
    display: flex;
    align-items: center;
    padding: 14px;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid #001f3f;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.radio-label:hover {
    border-color: #dc143c;
    background: rgba(255, 255, 255, 0.95);
    transform: translateX(3px);
}

.radio-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-custom {
    width: 22px;
    height: 22px;
    border: 2px solid #001f3f;
    border-radius: 50%;
    margin-right: 12px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.radio-label input[type="radio"]:checked + .radio-custom {
    border-color: #dc143c;
    background: #dc143c;
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffffff;
}

.radio-text {
    flex: 1;
    color: #001f3f;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.radio-label input[type="radio"]:checked ~ .radio-text {
    color: #dc143c;
}

.radio-text i {
    font-size: 16px;
}

.number-input-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.number-input-wrapper input[type="number"] {
    flex: 1;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    color: #dc143c;
}

.number-btn {
    width: 45px;
    height: 45px;
    border: 2px solid #001f3f;
    background: rgba(255, 255, 255, 0.8);
    color: #dc143c;
    border-radius: 10px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.number-btn:hover {
    background: #dc143c;
    color: #ffffff;
    transform: scale(1.05);
}

.number-btn:active {
    transform: scale(0.95);
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #dc143c 0%, #b71c1c 100%);
    color: #ffffff;
    border: 2px solid #001f3f;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

.submit-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #ff1744 0%, #dc143c 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.6);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-text,
.btn-loader {
    position: relative;
    z-index: 1;
}

.btn-text i,
.btn-loader i {
    margin-right: 8px;
}

.form-message {
    padding: 14px;
    border-radius: 10px;
    margin-bottom: 18px;
    font-size: 14px;
    text-align: center;
    display: none;
    font-weight: 600;
}

.form-message i {
    margin-right: 8px;
}

.form-message.success {
    background: linear-gradient(135deg, #dcfce7, #d1fae5);
    color: #166534;
    border: 2px solid #86efac;
    display: block;
}

.form-message.error {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    color: #991b1b;
    border: 2px solid #fca5a5;
    display: block;
}

/* Footer */
.footer {
    padding: 35px 20px;
    background: linear-gradient(135deg, #66b3ff 0%, #4da6ff 100%);
    color: #001f3f;
    text-align: center;
    position: relative;
    border-top: 2px solid #001f3f;
}

.footer-decoration {
    display: flex;
    justify-content: center;
    gap: 15px;
    color: #dc143c;
    font-size: 16px;
    margin-bottom: 15px;
}

.footer-decoration i {
    animation: twinkle 2s infinite;
}

.footer-decoration i:nth-child(2) {
    animation-delay: 0.3s;
}

.footer-decoration i:nth-child(3) {
    animation-delay: 0.6s;
}

.footer p {
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer p i {
    color: #dc143c;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    10%, 30% { transform: scale(1.2); }
    20%, 40% { transform: scale(1); }
}

.footer-small {
    font-size: 13px;
    color: #001f3f;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, transparent, #001f3f, transparent);
    margin: 20px auto;
    opacity: 0.3;
}

.footer-credit {
    margin-top: 15px;
    padding-top: 15px;
}

.credit-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 11px;
    color: rgba(0, 31, 63, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 8px;
}

.credit-title i {
    font-size: 12px;
}

.credit-name {
    margin-bottom: 10px;
}

.credit-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #001f3f;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 5px 12px;
    border-radius: 6px;
}

.credit-link:hover {
    color: #dc143c;
    background: rgba(220, 20, 60, 0.1);
}

.credit-link i {
    font-size: 16px;
}

.credit-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 12px;
    margin-top: 8px;
}

.contact-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: rgba(0, 31, 63, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 4px 8px;
    border-radius: 4px;
}

.contact-item:hover {
    color: #dc143c;
    background: rgba(220, 20, 60, 0.08);
}

.contact-item i {
    font-size: 11px;
}

.contact-divider {
    color: rgba(0, 31, 63, 0.3);
    font-size: 10px;
}

/* Responsive adjustments */
@media (max-width: 450px) {
    body {
        padding: 0;
    }
    
    .container {
        width: 100%;
        box-shadow: none;
        border-radius: 0;
    }
    
    .hero-title {
        font-size: 28px;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 14px 8px;
    }
    
    .countdown-value {
        font-size: 28px;
    }
    
    .countdown-label {
        font-size: 10px;
    }
    
    .countdown-icon {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .info-card {
        padding: 18px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.gallery-item,
.info-card {
    animation: fadeIn 0.6s ease-out;
}

.confirmation-form {
    animation: slideInLeft 0.6s ease-out;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }

.info-card:nth-child(1) { animation-delay: 0.1s; }
.info-card:nth-child(2) { animation-delay: 0.2s; }
.info-card:nth-child(3) { animation-delay: 0.3s; }

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #b3d9ff;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #dc143c, #b71c1c);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ff1744, #dc143c);
}

/* Selection styling */
::selection {
    background: #dc143c;
    color: #ffffff;
}

::-moz-selection {
    background: #dc143c;
    color: #ffffff;
}
