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

body {
    font-family: 'Montserrat', sans-serif;
    background: #0e0e0e;
    color: #ffffff;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: fixed;
    width: 100%;
    background: rgba(0,0,0,0.85);
}

.logo {
    font-weight: 700;
    letter-spacing: 2px;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    transition: 0.3s;
}

.nav a:hover {
    opacity: 0.6;
}

.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    margin-bottom: 30px;
    font-weight: 300;
}

.btn {
    padding: 12px 30px;
    border: 1px solid white;
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

.btn:hover {
    background: white;
    color: black;
}

section {
    padding: 100px 0;
}

.cards {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    border: 1px solid rgba(255,255,255,0.2);
    padding: 30px;
    width: 300px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.gallery-grid {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
}

.gallery-item {
    width: 300px;
    height: 200px;
    background: #1a1a1a;
}

footer {
    text-align: center;
    padding: 30px;
    font-size: 14px;
    opacity: 0.6;
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
}