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

:root {
    --primary-color: #b8a088;
    --secondary-color: #9c8b7a;
    --text-color: #6b6b6b;
    --light-bg: #faf8f5;
    --white: #ffffff;
    --accent-gold: #d4c4a8;
    --beige: #f5ebe0;
    --beige-dark: #ede0d4;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 5px;
    background: rgba(255, 255, 255, 0.95);
    padding: 5px;
    border-radius: 25px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.lang-btn {
    padding: 8px 16px;
    border: none;
    background: transparent;
    color: var(--primary-color);
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: var(--beige);
}

.lang-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

@media (max-width: 480px) {
    .language-switcher {
        top: 10px;
        right: 10px;
        padding: 3px;
    }
    
    .lang-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

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

/* Elegant Hero Section - Beige/Cream Theme */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #f5ebe0 0%, #ede0d4 50%, #e6ccb2 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(139, 109, 76, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(139, 109, 76, 0.06) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a87c' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(139, 109, 76, 0.4);
    border-radius: 50%;
    animation: float-particle 15s infinite;
}

@keyframes float-particle {
    0%, 100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.5s ease-out;
    padding: 40px;
}

.invitation-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: #b8a088;
    margin-bottom: 25px;
    font-weight: 400;
    animation: fadeInDown 1s ease-out 0.3s both;
}

.decorative-line {
    width: 150px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #b8a088, transparent);
    margin: 0 auto;
    position: relative;
}

.decorative-line.top {
    margin-bottom: 30px;
    animation: expandLine 1.2s ease-out 0.5s both;
}

.decorative-line.bottom {
    margin-top: 30px;
    margin-bottom: 25px;
    animation: expandLine 1.2s ease-out 0.7s both;
}

.decorative-line::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background-color: #b8a088;
    background: #b8a088;
    border: none;
    padding: 0;
    margin: 0;
    display: block;
}

@keyframes expandLine {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 150px;
        opacity: 1;
    }
}

.couple-names {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    line-height: 1.3;
}

.name-first, .name-second {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    font-weight: 600;
    color: #9c8b7a;
    letter-spacing: 6px;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 5px 0;
}

.name-first {
    animation: fadeInLeft 1s ease-out 0.8s both;
}

.name-second {
    animation: fadeInRight 1s ease-out 1s both;
}

.name-ampersand {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #b8a088;
    font-style: italic;
    font-weight: 400;
    animation: fadeIn 1s ease-out 0.9s both;
    margin: 8px 0;
    line-height: 1;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.wedding-date {
    font-size: 1.2rem;
    color: #9c8b7a;
    letter-spacing: 3px;
    font-weight: 400;
    animation: fadeIn 1s ease-out 1.2s both;
}

.wedding-location {
    font-size: 1rem;
    color: #b8a088;
    letter-spacing: 3px;
    margin-top: 8px;
    font-weight: 400;
    animation: fadeIn 1s ease-out 1.4s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    animation: fadeIn 1s ease-out 2s both;
    z-index: 2;
}

.scroll-text {
    font-size: 0.75rem;
    color: #b8a088;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-arrow {
    font-size: 1.3rem;
    color: #b8a088;
    animation: bounce 2s infinite;
}

/* Countdown Section */
.countdown-section {
    background: linear-gradient(180deg, #fff 0%, #faf8f5 100%);
    padding: 80px 0;
    text-align: center;
}

.countdown-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #9c8b7a;
    margin-bottom: 50px;
    font-weight: 400;
    letter-spacing: 3px;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 110px;
    padding: 20px 15px;
    background: linear-gradient(135deg, #f5ebe0 0%, #ede0d4 100%);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(139, 109, 76, 0.1);
}

.countdown-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 600;
    color: #9c8b7a;
    line-height: 1.2;
    display: block;
    padding-bottom: 5px;
}

.countdown-label {
    font-size: 0.8rem;
    color: #b8a088;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
    font-weight: 500;
}

.countdown-separator {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #c9a87c;
    font-weight: 300;
    padding-top: 25px;
    display: none;
}

.countdown-date {
    margin-top: 40px;
    font-size: 1rem;
    color: #b8a088;
    letter-spacing: 2px;
}

.countdown-passed {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #9c8b7a;
    animation: pulse 2s infinite;
}

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

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

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

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

/* Invitation Section */
.invitation-section {
    background: linear-gradient(135deg, #faf8f5 0%, #f5ebe0 50%, #ede0d4 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.invitation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(184, 160, 136, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(156, 139, 122, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.invitation-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.invitation-text {
    animation: fadeInLeft 1s ease-out;
}

.invitation-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1.2;
}

.invitation-message {
    font-size: 1.2rem;
    line-height: 2;
    color: #666;
    margin-bottom: 40px;
    text-align: justify;
    font-weight: 300;
}

.invitation-signature {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    text-align: right;
    font-style: italic;
    font-weight: 500;
    letter-spacing: 1px;
    margin-top: 30px;
}

.invitation-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    animation: fadeInRight 1s ease-out;
}

.invitation-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(139, 109, 76, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
    padding: 10px;
    height: 400px;
}

.invitation-image-wrapper:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 50px rgba(139, 109, 76, 0.3);
}

.invitation-image-wrapper:nth-child(1) {
    animation-delay: 0.2s;
}

.invitation-image-wrapper:nth-child(2) {
    animation-delay: 0.4s;
}

.invitation-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    transition: transform 0.4s ease;
}

.invitation-image-wrapper:hover .invitation-image {
    transform: scale(1.05);
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Venue Section */
.venue-section {
    background: var(--white);
}

.venue-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

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

.venue-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.address {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.venue-description {
    margin-bottom: 20px;
    line-height: 1.8;
}

.map-link a {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.map-link a:hover {
    background: var(--secondary-color);
}

/* Program Section */
.program-section {
    background: linear-gradient(180deg, var(--light-bg) 0%, #f5f3f0 100%);
    position: relative;
    overflow: hidden;
}

.program-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 10% 20%, rgba(184, 160, 136, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 80%, rgba(156, 139, 122, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.program-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 40px 0;
}

.program-timeline::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, 
        transparent 0%,
        #b8a088 5%,
        #b8a088 95%,
        transparent 100%);
    opacity: 0.3;
    z-index: 0;
}

.program-item {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 50px;
    padding: 25px 30px;
    background: linear-gradient(135deg, var(--white) 0%, #faf8f5 100%);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(139, 109, 76, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    border-left: 4px solid transparent;
    opacity: 0;
    animation: fadeInSlide 0.6s ease-out forwards;
}

.program-item:nth-child(1) { animation-delay: 0.1s; }
.program-item:nth-child(2) { animation-delay: 0.2s; }
.program-item:nth-child(3) { animation-delay: 0.3s; }
.program-item:nth-child(4) { animation-delay: 0.4s; }
.program-item:nth-child(5) { animation-delay: 0.5s; }
.program-item:nth-child(6) { animation-delay: 0.6s; }
.program-item:nth-child(7) { animation-delay: 0.7s; }
.program-item:nth-child(8) { animation-delay: 0.8s; }

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.program-item:hover {
    transform: translateX(15px) translateY(-5px);
    box-shadow: 0 8px 30px rgba(139, 109, 76, 0.2);
    border-left-color: var(--primary-color);
    background: linear-gradient(135deg, var(--white) 0%, #f5ebe0 100%);
}

.program-icon {
    font-size: 2.5rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5ebe0 0%, #ede0d4 100%);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(184, 160, 136, 0.2);
    flex-shrink: 0;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.program-item:hover .program-icon {
    transform: scale(1.15) rotate(5deg);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    box-shadow: 0 6px 20px rgba(184, 160, 136, 0.4);
}

.program-time {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--primary-color);
    font-weight: 600;
    width: 130px;
    min-width: 130px;
    text-align: center;
    padding: 8px 15px;
    background: linear-gradient(135deg, rgba(184, 160, 136, 0.1) 0%, rgba(156, 139, 122, 0.1) 100%);
    border-radius: 10px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    flex-shrink: 0;
    white-space: nowrap;
}

.program-item:hover .program-time {
    background: linear-gradient(135deg, rgba(184, 160, 136, 0.2) 0%, rgba(156, 139, 122, 0.2) 100%);
    transform: scale(1.05);
}

.program-content {
    flex: 1;
}

.program-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.program-item:hover .program-content h3 {
    color: var(--primary-color);
}

.program-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
    background: var(--white);
}

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

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* Accommodation Section */
.accommodation-section {
    background: var(--light-bg);
}

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

.accommodation-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.accommodation-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.accommodation-info {
    padding: 25px;
}

.accommodation-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.accommodation-distance {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 8px;
}

.accommodation-price {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.accommodation-description {
    margin-bottom: 15px;
    color: #666;
}

.accommodation-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

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

.accommodation-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #666;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.booking-search {
    text-align: center;
    margin: 40px 0;
}

.booking-btn {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, #9c8b7a, #b8a088);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 20px rgba(92, 73, 52, 0.3);
}

.booking-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(92, 73, 52, 0.4);
    background: linear-gradient(135deg, #8a7a6a, #a89878);
}

.accommodation-note {
    text-align: center;
    font-size: 1rem;
    color: #888;
    font-style: italic;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Taxi Section */
.taxi-section {
    background: var(--white);
}

.taxi-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #666;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.taxi-card {
    background: var(--light-bg);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.taxi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.taxi-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.taxi-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.taxi-phone {
    margin-bottom: 10px;
}

.taxi-phone a {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.taxi-phone a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.taxi-desc {
    font-size: 0.95rem;
    color: #666;
}

/* Gift Section */
.gift-section {
    background: linear-gradient(135deg, #f5ebe0, #ede0d4);
    padding: 80px 0;
}

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

.gift-icon {
    font-size: 4rem;
    margin-bottom: 25px;
}

.gift-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #9c8b7a;
}

/* RSVP Section */
.rsvp-section {
    background: var(--white);
}

.rsvp-subtitle {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 15px;
    color: #666;
}

.rsvp-deadline {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #9c8b7a;
    padding: 15px 25px;
    background: linear-gradient(135deg, #f5ebe0, #ede0d4);
    border-radius: 10px;
    display: inline-block;
    margin-left: 50%;
    transform: translateX(-50%);
}

.rsvp-deadline strong {
    color: #b8a088;
}

.rsvp-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: var(--secondary-color);
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

/* Admin Panel Modal */
.admin-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.admin-modal-content {
    background: #fff;
    border-radius: 15px;
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
    position: relative;
}

.admin-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #888;
    transition: color 0.3s;
}

.admin-close-btn:hover {
    color: #333;
}

.admin-modal-content h2 {
    font-family: 'Playfair Display', serif;
    color: #9c8b7a;
    margin-bottom: 25px;
    text-align: center;
}

.admin-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.admin-stat {
    text-align: center;
    padding: 20px 30px;
    background: linear-gradient(135deg, #f5ebe0, #ede0d4);
    border-radius: 10px;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #9c8b7a;
}

.stat-label {
    font-size: 0.9rem;
    color: #b8a088;
}

.admin-table-wrapper {
    overflow-x: auto;
    margin-bottom: 25px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.admin-table th,
.admin-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.admin-table th {
    background: #9c8b7a;
    color: #fff;
    font-weight: 600;
}

.admin-table tr.attending {
    background: #f0fdf4;
}

.admin-table tr.not-attending {
    background: #fef2f2;
}

.admin-table tr:hover {
    background: #f5ebe0;
}

.admin-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.admin-buttons button {
    padding: 12px 25px;
    background: #9c8b7a;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background 0.3s;
}

.admin-buttons button:hover {
    background: #b8a088;
}

.admin-buttons button:last-child {
    background: #dc3545;
}

.admin-buttons button:last-child:hover {
    background: #c82333;
}

/* Parking Section */
.parking-section {
    background: linear-gradient(135deg, #f5ebe0, #ede0d4);
}

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

.parking-icon {
    font-size: 4rem;
    margin-bottom: 25px;
}

.parking-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #9c8b7a;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #9c8b7a, #8a7a6a);
    color: var(--white);
    text-align: center;
    padding: 50px 0;
}

.footer p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.85);
}

.footer-names {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin: 15px 0;
    color: #fff;
    letter-spacing: 2px;
}

.footer-contact a {
    color: #c9a87c;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        padding: 30px 20px;
    }

    .name-first, .name-second {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .name-ampersand {
        font-size: 1.8rem;
        margin: 5px 0;
    }

    .invitation-label {
        letter-spacing: 4px;
        font-size: 0.8rem;
    }

    .decorative-line {
        width: 100px;
    }

    .decorative-line.top {
        margin-bottom: 20px;
    }

    .decorative-line.bottom {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    @keyframes expandLine {
        to { width: 100px; }
    }

    .wedding-date {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .countdown-section {
        padding: 60px 0;
    }

    .countdown-title {
        font-size: 1.8rem;
        margin-bottom: 35px;
    }

    .countdown {
        gap: 12px;
    }

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

    .countdown-number {
        font-size: 2.2rem;
    }

    .countdown-label {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

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

    .invitation-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .invitation-heading {
        font-size: 2.2rem;
        text-align: center;
    }

    .invitation-message {
        font-size: 1.1rem;
        text-align: left;
    }

    .invitation-signature {
        text-align: center;
        font-size: 1.5rem;
    }

    .invitation-images {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .venue-content {
        grid-template-columns: 1fr;
    }

    .program-timeline::before {
        left: 30px;
        width: 2px;
    }

    .program-item {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
        padding: 20px;
        margin-bottom: 35px;
    }

    .program-icon {
        width: 55px;
        height: 55px;
        font-size: 2rem;
        order: 1;
    }

    .program-time {
        width: 120px;
        min-width: 120px;
        font-size: 1.3rem;
        order: 2;
        flex-shrink: 0;
        white-space: nowrap;
    }

    .program-content {
        order: 3;
        width: 100%;
    }

    .program-content h3 {
        font-size: 1.2rem;
    }

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

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

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

    .booking-btn {
        padding: 15px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 20px 15px;
    }

    .name-first, .name-second {
        font-size: 1.9rem;
        letter-spacing: 3px;
    }

    .name-ampersand {
        font-size: 1.4rem;
    }

    .invitation-label {
        letter-spacing: 3px;
        font-size: 0.7rem;
        margin-bottom: 15px;
    }

    .decorative-line.top,
    .decorative-line.bottom {
        margin-top: 15px;
        margin-bottom: 15px;
    }

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

    .wedding-location {
        font-size: 0.85rem;
    }

    .countdown {
        gap: 8px;
    }

    .countdown-item {
        min-width: 70px;
        padding: 12px 8px;
    }

    .countdown-number {
        font-size: 1.8rem;
    }

    .countdown-label {
        font-size: 0.65rem;
        margin-top: 5px;
    }

    .countdown-date {
        font-size: 0.9rem;
        margin-top: 30px;
    }

    .program-timeline::before {
        left: 25px;
        width: 2px;
    }

    .program-item {
        padding: 18px 15px;
        margin-bottom: 30px;
        gap: 12px;
    }

    .program-icon {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }

    .program-time {
        width: 110px;
        min-width: 110px;
        font-size: 1.2rem;
        padding: 6px 12px;
        flex-shrink: 0;
        white-space: nowrap;
    }

    .program-content h3 {
        font-size: 1.1rem;
    }

    .invitation-section {
        padding: 60px 0;
    }

    .invitation-heading {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .invitation-message {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 30px;
    }

    .invitation-signature {
        font-size: 1.3rem;
    }

    .invitation-images {
        gap: 20px;
    }

    .invitation-image-wrapper {
        height: 300px;
    }
}
