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

/* Hide Vue template directives until Vue is ready */
[v-cloak] {
    display: none;
}

:root {
    --lavender: #E6E6FA;
    --soft-lavender: #D8D0F0;
    --white: #FFFFFF;
    --yellow-accent: #FFD93D;
    --yellow-light: #FFF8DC;
    --text-dark: #4A4A4A;
    --text-light: #6B6B6B;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

.background-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('5269679.jpg');
    background-repeat: repeat;
    background-size: 400px;
    opacity: 0.65;
    z-index: -1;
}

#app {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.progress-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--lavender);
    z-index: 1000;
    padding: 15px 0 0 0;
}

.progress-container {
    padding: 0 20px;
    width: 100%;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.wedding-info {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.info-item {
    position: relative;
    cursor: pointer;
}

.info-badge {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 15px;
    background: var(--lavender);
    border-radius: 20px;
    white-space: nowrap;
    display: block;
    transition: all 0.3s ease;
}

.info-item:hover .info-badge {
    background: var(--soft-lavender);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(216, 208, 240, 0.4);
}

.info-item.active .info-badge {
    background: var(--soft-lavender);
    box-shadow: 0 5px 15px rgba(216, 208, 240, 0.4);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 8px;
    z-index: 1000;
    animation: dropdownSlide 0.3s ease-out;
}

.dropdown-content {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--lavender);
    min-width: 200px;
    text-align: center;
}

.dropdown-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.dropdown-content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 5px;
    line-height: 1.4;
}

.dropdown-content p:last-child {
    margin-bottom: 0;
    font-style: italic;
    font-size: 12px;
}

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

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.progress-dots {
    display: flex;
    gap: 12px;
}

.progress-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--lavender);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--soft-lavender);
}

.progress-dot:hover {
    background: var(--soft-lavender);
    transform: scale(1.2);
}

.progress-dot.active {
    background: var(--soft-lavender);
    transform: scale(1.3);
    box-shadow: 0 0 0 3px rgba(216, 208, 240, 0.3);
}

.progress-bar-container {
    position: relative;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    margin-top: 15px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #FFB84D, #FFD700);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.7), 0 0 30px rgba(255, 215, 0, 0.5);
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 20px;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    min-height: 600px;
    position: relative;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Hero Section */
.hero {
    text-align: center;
    padding: 45px 10px;
}

.hero-content {
    background: var(--white);
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--lavender);
    width: 700px;
    margin: 0 auto;
}

.initials {
    font-size: 80px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    color: var(--soft-lavender);
    margin-bottom: 20px;
    letter-spacing: 10px;
}

.names {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.2;
}

.divider {
    width: 100px;
    height: 2px;
    background: var(--yellow-accent);
    margin: 30px auto;
}

.tagline {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    font-weight: 300;
    line-height: 1.6;
}

.scripture-rotator {
    margin-bottom: 40px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scripture-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: var(--text-dark);
    font-style: italic;
    text-align: center;
    line-height: 1.5;
    max-width: 500px;
    font-weight: 400;
}

/* Vue transition styles for scripture rotation */
.fade-enter-active,
.fade-leave-active {
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.fade-enter {
    opacity: 0;
    transform: translateY(10px);
}

.fade-enter-to {
    opacity: 1;
    transform: translateY(0);
}

.fade-leave {
    opacity: 1;
    transform: translateY(0);
}

.fade-leave-to {
    opacity: 0;
    transform: translateY(-10px);
}

@keyframes fadeInOut {

    0%,
    15% {
        opacity: 0;
        transform: translateY(10px);
    }

    20%,
    80% {
        opacity: 1;
        transform: translateY(0);
    }

    85%,
    100% {
        opacity: 0;
        transform: translateY(-10px);
    }
}

.cta-button {
    background: var(--soft-lavender);
    color: white;
    border: none;
    padding: 18px 50px;
    font-size: 16px;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(216, 208, 240, 0.4);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cta-button:hover {
    background: var(--lavender);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(216, 208, 240, 0.6);
}

/* Details Section */
.details {
    padding: 40px 20px;
}

.details-content {
    background: var(--white);
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--lavender);
    width: 700px;
    margin: 0 auto;
}

.details-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
    position: relative;
}

.details-content h2::before,
.details-content h2::after {
    content: '✦';
    color: var(--yellow-accent);
    font-size: 24px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.details-content h2::before {
    left: -60px;
}

.details-content h2::after {
    right: -60px;
}

.detail-card {
    background: var(--lavender);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    text-align: center;
    border: 2px solid var(--soft-lavender);
    transition: transform 0.3s ease;
    position: relative;
}

.detail-card::before {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 8px;
    height: 8px;
    background: var(--yellow-accent);
    border-radius: 50%;
    opacity: 0.7;
}

.detail-card::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: 6px;
    height: 6px;
    background: var(--yellow-accent);
    border-radius: 50%;
    opacity: 0.5;
}

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

.icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.detail-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.date-text,
.time-text,
.location-text {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.location-subtext {
    font-size: 12px;
    color: var(--text-light);
    font-style: italic;
}

/* Countdown Section */
.countdown-section {
    margin: 50px 0;
    text-align: center;
}

.countdown-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--soft-lavender);
    position: relative;
}

.countdown-section h3::before {
    content: '✨';
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--yellow-accent);
}

.countdown-section h3::after {
    content: '✨';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--yellow-accent);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--lavender);
    padding: 20px 30px;
    border-radius: 15px;
    min-width: 100px;
    position: relative;
}

.countdown-item::before {
    content: '●';
    position: absolute;
    top: 8px;
    right: 8px;
    color: var(--yellow-accent);
    font-size: 8px;
    opacity: 0.6;
}

.countdown-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 600;
    color: white;
    line-height: 1;
}

.countdown-label {
    font-size: 14px;
    color: white;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* RSVP Section */
.rsvp {
    padding: 40px 20px;
}

.rsvp-content {
    background: var(--white);
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--lavender);
    width: 700px;
    margin: 0 auto;
}

.rsvp-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.rsvp-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.rsvp-form {
    max-width: 100%;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 400;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--lavender);
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--soft-lavender);
}

.form-group textarea {
    resize: vertical;
}

.guest-note {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 10px;
    font-style: italic;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 15px;
    border: 2px solid var(--lavender);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.radio-label:hover {
    background: var(--yellow-light);
    border-color: var(--yellow-accent);
}

.radio-label input[type="radio"] {
    width: auto;
    margin-right: 10px;
    cursor: pointer;
}

.radio-label span {
    font-size: 16px;
}

/* Thank You Message */
.thank-you-message {
    text-align: center;
    padding: 40px;
}

.thank-you-icon {
    font-size: 80px;
    margin-bottom: 30px;
}

.thank-you-message h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--soft-lavender);
}

.thank-you-message p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Buttons */
.button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.nav-button {
    background: white;
    color: var(--text-dark);
    border: 2px solid var(--lavender);
    padding: 15px 40px;
    font-size: 16px;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-button:hover {
    background: var(--lavender);
    color: white;
    transform: translateY(-2px);
}

.nav-button.primary {
    background: var(--soft-lavender);
    color: white;
    border-color: var(--soft-lavender);
}

.nav-button.primary:hover {
    background: var(--lavender);
    border-color: var(--lavender);
}

.nav-button:disabled,
.nav-button.primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    pointer-events: none;
}

.nav-button:disabled:hover,
.nav-button.primary:disabled:hover {
    background: inherit;
    color: inherit;
    transform: none;
}

/* Navigation Dots - Hidden since we now have progress banner */
.nav-dots {
    display: none;
}

.arrow-container {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .progress-info {
        display: none;
    }

    .arrow-container {
        display: flex !important;
        justify-content: space-between;
        padding: 0px 25px !important;
    }

    .arrow-container i {
        font-size: 30px;
        color: rgb(135, 112, 210);
    }

    .arrow.right {
        margin-right: 10px !important;
    }

    * {
        transition: all 0.3s ease;
    }


    .progress-dots {
        display: none;
    }

    .progress-container {
        padding: 0 0px;
    }

    .wedding-info {
        gap: 7px;
        justify-content: center;
    }

    .wedding-info span {
        font-size: 13px;
        padding: 6px 12px;
    }

    .dropdown {
        left: 50%;
        transform: translateX(-50%);
    }

    .dropdown-content {
        min-width: 180px;
    }

    .container {
        padding: 120px 10px 20px;
    }

    .hero-content,
    .details-content,
    .rsvp-content {
        width: 90%;
        max-width: 700px;
        padding: 45px 25px !important;
    }

    .initials {
        font-size: 60px;
    }

    .names {
        font-size: 48px;
    }

    .tagline {
        font-size: 16px;
    }

    .details-content,
    .rsvp-content {
        padding: 40px 25px;
    }

    .details-content h2,
    .rsvp-content h2 {
        font-size: 36px;
    }

    .detail-card {
        padding: 30px 20px;
    }

    .countdown {
        gap: 10px;
    }

    .countdown-item {
        padding: 15px 20px;
        min-width: 80px;
    }

    .countdown-number {
        font-size: 36px;
    }

    .button-group {
        flex-direction: column;
        gap: 15px;
    }

    .nav-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .initials {
        font-size: 48px;
    }

    .rsvp {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .details-content {
        padding-left: 20px !important;
        padding-right: 20px !important;

    }

    .details {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .names {
        font-size: 36px;
    }

    .hero {
        padding: 0px !important;
    }

    .container {
        padding-top: 80px !important;
    }

    .hero-content,
    .details-content,
    .rsvp-content {
        width: 95%;
        max-width: 700px;
        padding: 40px 20px !important;
    }

    .countdown-item {
        padding: 10px 15px;
        min-width: 70px;
    }

    .countdown-number {
        font-size: 28px;
    }
}

/* Meal Selection Table Styles */
.meal-selection-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.meal-selection-table thead {
    background: var(--lavender);
}

.meal-selection-table th {
    padding: 15px;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    border-bottom: 2px solid var(--soft-lavender);
}

.meal-selection-table td {
    padding: 20px;
    text-align: center;
    vertical-align: top;
    border-right: 1px solid var(--lavender);
}

.meal-selection-table td:last-child {
    border-right: none;
}

.meal-select {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--lavender);
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    background: white;
    color: var(--text-dark);
    margin-bottom: 15px;
    cursor: pointer;
    transition: border-color 0.3s ease;
    /* Ensure text wraps in dropdown options */
    white-space: normal;
    line-height: 1.4;
    min-height: 45px;
}

.meal-select option {
    /* Allow long text to wrap in dropdown options */
    white-space: normal;
    padding: 8px;
    line-height: 1.4;
}

.meal-select:focus {
    outline: none;
    border-color: var(--soft-lavender);
}

.meal-select:disabled {
    background: #f5f5f5;
    cursor: not-allowed;
}

.meal-image-container {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--yellow-light);
    border-radius: 8px;
    overflow: hidden;
}

.meal-image {
    max-width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.meal-image-placeholder {
    color: #999;
    font-style: italic;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
}

/* Responsive meal table */
@media (max-width: 768px) {
    .meal-selection-table {
        display: block;
        overflow-x: auto;
    }

    .meal-selection-table thead,
    .meal-selection-table tbody,
    .meal-selection-table tr,
    .meal-selection-table td,
    .meal-selection-table th {
        display: block;
    }

    .meal-selection-table thead {
        display: none;
    }

    .meal-selection-table tr {
        margin-bottom: 20px;
        border: 2px solid var(--lavender);
        border-radius: 10px;
        padding: 15px;
        background: white;
    }

    .meal-selection-table td {
        border-right: none;
        border-bottom: 1px solid var(--lavender);
        padding: 15px 0;
    }

    .meal-selection-table td:last-child {
        border-bottom: none;
    }

    .meal-selection-table td::before {
        content: attr(data-label);
        font-weight: 600;
        display: block;
        margin-bottom: 10px;
        font-family: 'Cormorant Garamond', serif;
        font-size: 18px;
        color: var(--text-dark);
    }

    /* Mobile: Smaller font for long dropdown text */
    .meal-select {
        font-size: 13px;
        padding: 10px;
    }

    .meal-select option {
        font-size: 13px;
    }
}

/* Responsive styling for Save The Date header with RSVP button */
@media (max-width: 768px) {
    .details-content>div:first-child {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 15px;
    }

    .details-content>div:first-child h2 {
        width: 100%;
    }

    .details-content>div:first-child .nav-button {
        width: 100%;
    }
}

/* Loading Screen Styles */
/* Password Gate */
#password-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #f5f3ff 0%, #e6e6fa 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.5s ease-out;
}

.password-gate-content {
    background: white;
    border-radius: 20px;
    padding: 60px 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--lavender);
    max-width: 500px;
    width: 90%;
    text-align: center;
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.password-initials {
    font-size: 80px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    color: var(--soft-lavender);
    margin-bottom: 20px;
    letter-spacing: 10px;
}

.password-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.password-divider {
    width: 80px;
    height: 2px;
    background: var(--yellow-accent);
    margin: 20px auto;
}

.password-subtitle {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.password-form {
    margin-bottom: 20px;
}

.password-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.password-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid var(--lavender);
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
    text-align: center;
}

.password-input:focus {
    outline: none;
    border-color: var(--soft-lavender);
    box-shadow: 0 0 0 3px rgba(216, 208, 240, 0.2);
}

.password-submit {
    background: var(--soft-lavender);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(216, 208, 240, 0.4);
}

.password-submit:hover {
    background: var(--lavender);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(216, 208, 240, 0.6);
}

.password-submit i {
    font-size: 18px;
}

.password-error {
    color: #d32f2f;
    font-size: 14px;
    margin-top: 10px;
    padding: 10px;
    background: #ffebee;
    border-radius: 8px;
    border: 1px solid #ffcdd2;
}

.password-hint {
    font-size: 13px;
    color: var(--text-light);
    font-style: italic;
    opacity: 0.7;
}

/* Mobile responsive styles for password gate */
@media (max-width: 768px) {
    .password-gate-content {
        padding: 40px 30px;
        width: 95%;
    }

    .password-initials {
        font-size: 60px;
        margin-bottom: 15px;
    }

    .password-title {
        font-size: 36px;
    }

    .password-input-group {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .password-input {
        width: 100%;
        padding: 12px 20px;
        font-size: 16px;
    }

    .password-submit {
        width: 100%;
        max-width: 200px;
        height: 45px;
        border-radius: 50px;
    }

    .password-submit i {
        font-size: 16px;
    }
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, var(--lavender) 0%, var(--soft-lavender) 50%, var(--white) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
    overflow: hidden;
}

.loading-content {
    text-align: center;
    animation: fadeIn 0.8s ease-in;
}

.loading-initials {
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 40px;
    letter-spacing: 8px;
    animation: pulse 2s ease-in-out infinite;
}

.loading-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
}

.loading-spinner.small {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top-color: var(--soft-lavender);
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}

.spinner-ring:nth-child(2) {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    border-top-color: var(--lavender);
    animation-duration: 1.2s;
    animation-direction: reverse;
}

.spinner-ring:nth-child(3) {
    width: 50%;
    height: 50%;
    top: 25%;
    left: 25%;
    border-top-color: var(--yellow-accent);
    animation-duration: 1s;
}

.loading-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 300;
    letter-spacing: 2px;
    animation: fadeInOut 2s ease-in-out infinite;
    margin-bottom: 20px;
}

.loading-progress-container {
    width: 300px;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto 10px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.loading-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--soft-lavender) 0%, var(--lavender) 50%, var(--yellow-accent) 100%);
    border-radius: 10px;
    transition: width 0.3s ease;
    box-shadow: 0 2px 8px rgba(104, 56, 153, 0.4);
    animation: shimmer 2s ease-in-out infinite;
}

.loading-percentage {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 400;
    letter-spacing: 1px;
    margin: 0;
    opacity: 0.8;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInOut {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

@keyframes shimmer {
    0% {
        background-position: -300px 0;
    }

    100% {
        background-position: 300px 0;
    }
}

/* Hide app content while loading */
#app[v-show="false"] {
    display: none !important;
}

/* Registry Specific Styles */
.registry-container {
    padding: 100px 20px 60px;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.registry-header {
    text-align: center;
    margin-bottom: 50px;
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--lavender);
}

.registry-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.registry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.gift-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 2px solid var(--lavender);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.gift-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--soft-lavender);
}

.gift-card.taken {
    opacity: 0.7;
    background: #f9f9f9;
}

.gift-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.gift-card p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 25px;
    flex-grow: 1;
    line-height: 1.6;
}

.gift-status {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.status-available {
    background: #e8f5e9;
    color: #2e7d32;
}

.status-taken {
    background: #f5f5f5;
    color: #757575;
}

.gift-link {
    display: block;
    color: var(--soft-lavender);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 500;
}

.gift-link:hover {
    text-decoration: underline;
}

.gift-actions {
    margin-top: auto;
}

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

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 3px solid var(--lavender);
    position: relative;
    animation: modalScale 0.3s ease-out;
}

@keyframes modalScale {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.modal-content p {
    margin-bottom: 25px;
    line-height: 1.6;
}

/* External Link Reminder */
.reminder-banner {
    background: var(--yellow-light);
    border: 2px solid var(--yellow-accent);
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    animation: fadeIn 0.5s ease-out;
}

.reminder-banner i {
    font-size: 24px;
    color: #d4a017;
}

.reminder-text {
    font-size: 14px;
    color: #856404;
    line-height: 1.4;
}

.reminder-text strong {
    color: #533f03;
}

/* Loading state */
.registry-loading {
    text-align: center;
    padding: 100px 0;
}

.registry-error {
    text-align: center;
    padding: 60px;
    background: #fff0f0;
    border: 2px solid #ffcdd2;
    border-radius: 20px;
    color: #d32f2f;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .registry-header {
        padding: 40px 20px;
    }

    .registry-header h2 {
        font-size: 36px;
    }

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