/* Home Page Styles */

/* Hero Sections */
.hero {
    background: linear-gradient(135deg, #f3f0ea 0%, #dcc3a5 100%);
    padding: 4rem 0;
    text-align: center;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    color: #23435c;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #6e7d88;
    margin-bottom: 1rem;
}

.hero-date {
    font-size: 1.25rem;
    font-weight: 600;
    color: #c6793d;
    margin-bottom: 0.5rem;
}

.hero-location {
    font-size: 1.1rem;
    color: #6e7d88;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-image {
    margin-top: 2rem;
}

.image-placeholder {
    background: #dcc3a5;
    border: 2px dashed #a89a97;
    padding: 3rem;
    border-radius: 8px;
    color: #6e7d88;
}

/* Welcome Section */
.welcome {
    padding: 4rem 0;
    background: #f3f0ea;
    text-align: center;
}

.welcome h2 {
    color: #23435c;
    margin-bottom: 1rem;
}

.welcome p {
    max-width: 600px;
    margin: 0 auto;
    color: #6e7d88;
}

/* Responsive Design for Home */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
}
