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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f9f7fe 0%, #e8e6f8 100%);
    min-height: 100vh;
}

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

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 20px;
    position: relative;
    background: url('images/background.jpg') center/cover no-repeat;
    border-radius: 20px;
    margin-bottom: 40px;
    color: white;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero .title,
.hero .subtitle {
    position: relative;
    z-index: 2;
}

.title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
}

/* About Section */
.about {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.photo-frame {
    flex: 1;
    min-width: 300px;
    border: 10px solid white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.photo {
    width: 100%;
    height: auto;
    display: block;
}

.text-content {
    flex: 1;
    min-width: 300px;
}

.text-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #5d4037;
}

.text-content p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.8;
}

/* Details Section */
.details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.detail-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.detail-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #5d4037;
}

.detail-card p {
    font-size: 1.1rem;
}

/* Dress Code */
.dress-code {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-radius: 20px;
}

.dress-code h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #5d4037;
}

.dress-code p {
    font-size: 1.3rem;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-bottom: 60px;
    padding: 60px 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #5d4037;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 20px 50px;
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    color: white;
    background: linear-gradient(45deg, #e91e63, #ff4081);
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.5);
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 20px;
    background: #5d4037;
    color: white;
    border-radius: 20px;
}

.footer p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .about {
        flex-direction: column;
        text-align: center;
    }
    
    .text-content h2 {
        font-size: 2rem;
    }
    
    .details {
        grid-template-columns: 1fr;
    }
    
    .dress-code h2,
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 15px 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    
    .hero {
        padding: 40px 15px;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .photo-frame {
        min-width: 250px;
    }
    
    .text-content,
    .detail-card,
    .cta-section {
        padding: 20px;
    }
}