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

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    scroll-behavior: smooth;
}

/* Reset */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    color: #555;
}

a:hover {
    color: #ff6f61;
}

/* Hero Section */
.hero-section {
    background-image: url('https://github.com/user-attachments/assets/c82cadee-e3af-4c33-980b-996d2f339025');
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 0 20px;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    width: 100%;
}

.hero-section h1 {
    font-size: 2.5rem;
}

.hero-section p {
    font-size: 1.2rem;
}

.btn-scroll {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #ff6f61;
    color: white;
    border-radius: 5px;
    font-size: 1rem;
}

.btn-scroll:hover {
    background-color: #ff4a3a;
}

/* About Section */
.about-section {
    padding: 40px 20px;
    text-align: center;
}

.about-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ff6f61;
}

.about-section p {
    font-size: 1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Gallery Section */
.gallery-section {
    padding: 40px 20px;
    background-color: #fff;
}

.gallery-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
    color: #ff6f61;
}

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

.gallery-item {
    text-align: center;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.gallery-item p {
    margin-top: 10px;
    font-size: 1rem;
}

/* Contact Section */
.contact-section {
    padding: 40px 20px;
    text-align: center;
    background-color: #f0f0f0;
}

.contact-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ff6f61;
}

.contact-section p {
    margin-bottom: 20px;
    font-size: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    padding: 10px 15px;
    background-color: #ff6f61;
    color: white;
    border-radius: 5px;
    font-size: 1rem;
}

.social-links a:hover {
    background-color: #ff4a3a;
}

/* Footer */
footer {
    padding: 15px 20px;
    text-align: center;
    background-color: #333;
    color: white;
    font-size: 0.9rem;
}

/* Responsiveness */
@media (min-width: 768px) {
    .hero-section {
        height: 90vh;
    }

    .hero-section h1 {
        font-size: 3.5rem;
    }

    .hero-section p {
        font-size: 1.5rem;
    }

    .about-section h2, .gallery-section h2, .contact-section h2 {
        font-size: 2.5rem;
    }
}
