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

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
    background: #ffffff;
    color: #333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #000000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    position: relative;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
}

.menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: 0.3s;
}

.menu a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s;
}

.menu a:hover {
    color: #ff8c00;
}

.hero {
    margin-top: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-content img {
    max-width: 100%;
    height: auto;
    margin-bottom: 2rem;
}

.hero-content p {
    font-size: 1.5rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

section img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
}

section p {
    font-size: 1.5rem;
    text-align: center;
    line-height: 1.8;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.contact-info {
    font-size: 1.1rem;
    line-height: 2;
    color: #555;
}

footer {
    background: #000000;
    padding: 3rem 2rem;
    margin-top: 5rem;
    text-align: center;
    border-top: 1px solid #333;
}

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

.gallery img {
    width: 100%;
    height: auto;
}

footer p {
    color: #ffffff;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    nav {
        padding: 1rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .menu-toggle {
        display: flex;
    }

    .menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: #000000;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        transition: left 0.3s;
    }

    .menu.active {
        left: 0;
    }

    .menu a {
        font-size: 1.2rem;
    }
    
    .hero {
        margin-top: 70px;
        min-height: 80vh;
        padding: 1.5rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }

    section {
        padding: 3rem 1.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    footer {
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }
}
