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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Header */
header {
    padding: 3rem 4rem;
    background-color: #fff;
    border-bottom: 2px solid #eee;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    max-width: 350px;
    height: auto;
    display: block;
}

/* Hero Section */
.hero {
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.hero-content {
    max-width: 980px;
    text-align: center;
    margin: 1rem;
}

.hero-content h1 {
    font-size: 2.1rem;
    font-weight: 400;
    line-height: 1.4;
    color: #222;
    letter-spacing: -0.5px;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.6rem;
    color: #666;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: -0.4px;
}

.hero-sunset {
    font-size: 1.8rem;
    color: #b8860b;
    font-style: italic;
    font-weight: 500;
    letter-spacing: 0.8px;
    margin-top: 1.5rem;
}

/* Projects Gallery Section */
.projects-gallery {
    padding: 6rem 4rem;
    background-color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* Contact Section */
.contact-info {
    padding: 6rem 4rem;
    background-color: #f9f9f9;
    text-align: center;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 400;
    color: #222;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

.contact-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    flex: 1;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: #222;
    margin-bottom: 0.75rem;
}

.contact-card a {
    color: #0066cc;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.contact-card a:hover {
    color: #0052a3;
    text-decoration: underline;
}

/* Footer */
footer {
    padding: 2rem 4rem;
    text-align: center;
    background-color: #f9f9f9;
    border-top: 2px solid #eee;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 1.5rem 2rem;
    }

    .hero {
        padding: 2rem 1.5rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-sunset {
        font-size: 1.1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-item img {
        height: 300px;
    }

    .contact-info {
        padding: 4rem 2rem;
    }

    .contact-info h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .contact-grid {
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    footer {
        padding: 1.5rem 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .logo {
        max-width: 200px;
    }

    .gallery-item img {
        height: 250px;
    }
}
