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

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.nav-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #8B4B8C;
}

/* Language Toggle */
.language-toggle {
    display: flex;
    align-items: center;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(139, 75, 140, 0.1);
    border: 2px solid #8B4B8C;
    border-radius: 25px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
    color: #8B4B8C;
}

.lang-btn:hover {
    background: #8B4B8C;
    color: white;
    transform: translateY(-2px);
}

.flag {
    font-size: 1.2rem;
}

#langText {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* Main Content */
.main-content {
    padding-top: 80px;
}

/* Hero Section */
.hero {
    height: 70vh;
    background: linear-gradient(135deg, #ffeef8 0%, #f0e6ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hearts" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><text x="10" y="15" text-anchor="middle" font-size="12" fill="%23ffffff" opacity="0.1">♥</text></pattern></defs><rect width="100" height="100" fill="url(%23hearts)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 300;
    color: #8B4B8C;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 300;
}

.wedding-date {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #8B4B8C;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.wedding-location {
    font-size: 1.3rem;
    color: #888;
    font-style: italic;
    margin-bottom: 2rem;
}

.coming-soon {
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: rgba(139, 75, 140, 0.1);
    border-radius: 25px;
    display: inline-block;
}

.coming-soon p {
    color: #8B4B8C;
    font-style: italic;
    font-size: 1.1rem;
}

/* Details Container */
.details-container {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
}

.detail-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1s ease-out;
}

.detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.card-image {
    height: 280px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.detail-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 2.5rem;
}

.card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #8B4B8C;
    margin-bottom: 0.5rem;
}

.card-content h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.location-subtitle {
    font-style: italic;
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.detail-info p {
    margin-bottom: 1.5rem;
    color: #555;
    font-size: 1.1rem;
}

.maps-link {
    display: inline-block;
    color: #8B4B8C;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
    border: 2px solid #8B4B8C;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.maps-link:hover {
    background: #8B4B8C;
    color: white;
    transform: translateY(-2px);
}

/* Info Section */
.info-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffeef8 100%);
    padding: 5rem 2rem;
    text-align: center;
}

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

.info-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #8B4B8C;
    margin-bottom: 2rem;
}

.info-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-info {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.contact-info p {
    color: #8B4B8C;
    font-weight: 500;
    margin-bottom: 0;
}

/* Footer */
.footer {
    background: #8B4B8C;
    color: white;
    text-align: center;
    padding: 3rem 2rem;
}

.footer-content p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-content p:last-child {
    font-style: italic;
    opacity: 0.7;
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
        letter-spacing: 1px;
    }
    
    .wedding-date {
        font-size: 2rem;
    }
    
    .details-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin: 3rem auto;
    }
    
    .info-content h2 {
        font-size: 2.5rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-brand {
        font-size: 1.5rem;
    }
    
    .lang-btn {
        padding: 0.4rem 0.8rem;
        gap: 0.3rem;
    }
    
    .flag {
        font-size: 1rem;
    }
    
    #langText {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .wedding-date {
        font-size: 1.8rem;
    }
    
    .card-content {
        padding: 2rem;
    }
    
    .info-section {
        padding: 3rem 1rem;
    }
    
    .info-content h2 {
        font-size: 2rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .coming-soon {
        margin: 1.5rem 1rem 0;
        padding: 1rem 1.5rem;
    }
}
