
html {
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header & Navigation */
header {
    background-color: #e6e1e1;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

nav h1 {
    font-size: 2.0rem;
    font-weight: 600;
    letter-spacing: 2px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: #1c1c1c;
    font-weight: 300;
    transition: color 0.3s;
}

nav a:hover {
    color: #666;
}

/* Hero Section */
.hero {
    height: 70vh;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    width: 100%;
    padding: 0 5%;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    text-align: left;
}

.hero-content h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.hero-content p {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Gallery Section */
.gallery {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
}

.gallery h2 {
    text-align: left;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    letter-spacing: 2px;
}

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

.gallery-item {
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* About Section */
.about {
    padding: 4rem 5%;
    background-color: #f9f9f9;
    max-width: 800px;
    margin: 0 auto;
}

.about-content {    
    text-align: left;
    font-size: 1.1rem;
    color: #666;
}

.about h2 {
    text-align: left;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.about p {
    margin: 0.5rem 0;
    line-height: 1.8;    
}

/* Contact Section */
.contact {
    padding: 4rem 5%;
    background-color: #f9f9f9;
    max-width: 800px;
    margin: 0 auto;
}

.contact-content {
    text-align: left;
    font-size: 1.1rem;
    color: #666;
}

.contact h2 {
    text-align: left;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.contact p {
    margin: 0.5rem 0;
    line-height: 1.8;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 2rem;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        gap: 1rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
}
