* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.hero {
    text-align: center;
    padding: 80px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    margin: 50px 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.main-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 30px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.celebration-date {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-block;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gallery-preview {
    margin: 50px 0;
    text-align: center;
}

.gallery-link {
    text-decoration: none;
    color: inherit;
}

.preview-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(15px);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.preview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.preview-card h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.preview-card p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.button {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(238, 90, 36, 0.4);
}

.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(238, 90, 36, 0.6);
}

footer {
    text-align: center;
    padding: 30px;
    opacity: 0.7;
}
