* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #121212;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    width: 100%;
    padding: 30px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    background: rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.logo {
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    text-decoration: none;
}

.logo span {
    color: #d46b38;
}

nav ul {
    display: flex;
    align-items: center;
    list-style: none;
}

nav ul li a {
    margin-left: 35px;
    text-decoration: none;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    transition: 0.3s;
    font-size: 18px;
}

nav ul li a:hover {
    color: #d46b38;
}

main {
    flex: 1;
}

.hero-gallery {
    width: 100%;
    height: 50vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url("https://i.pinimg.com/736x/f5/8e/84/f58e84935470783e005c294bc40b0a7b.jpg") center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 20px 20px 20px;
}

.hero-container h1 {
    font-size: clamp(32px, 6vw, 60px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hero-container p {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
}

.gallery {
    width: 100%;
    padding: 60px 80px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(212, 107, 56, 0.5);
}

.card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: 0.6s transform ease;
}

.card:hover img {
    transform: scale(1.1);
}

.card h3 {
    text-align: center;
    padding: 25px 0;
    color: #d46b38;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.5px;
}

footer {
    padding: 40px;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 992px) {
    header {
        padding: 20px 40px;
    }
    .gallery {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    nav ul li a {
        margin: 0 15px;
        font-size: 16px;
    }
    .logo {
        font-size: 28px;
    }
    .hero-gallery {
        height: 40vh;
    }
    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        padding: 20px;
        gap: 20px;
    }
    .card img {
        height: 250px;
    }
}

@media (max-width: 480px) {
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    nav ul li a {
        margin: 0 8px;
        font-size: 14px;
    }
    .gallery {
        grid-template-columns: 1fr;
    }
}