@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #0b0f1a;
    color: #fff;
}

/* HERO */
.hero {
    height: 100vh;
    background: url("images/hero.jpg") center/cover no-repeat;
    position: relative;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), #0b0f1a);
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.hero-text h1 {
    font-size: 60px;
    letter-spacing: 2px;
}

.hero-text p {
    margin: 15px 0 30px;
    opacity: 0.85;
}

.hero-btn {
    padding: 14px 40px;
    border-radius: 40px;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    color: #000;
    text-decoration: none;
    font-weight: 600;
}

/* NAV */
.nav {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    padding: 15px 40px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(12px);
}

.links a {
    margin-left: 20px;
    text-decoration: none;
    color: #fff;
    opacity: 0.8;
}

.links a:hover {
    opacity: 1;
}

/* SECTIONS */
.section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: auto;
}

.dark {
    background: rgba(255,255,255,0.03);
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

/* GLASS */
.glass-box {
    max-width: 700px;
    margin: auto;
    padding: 50px;
    background: rgba(255,255,255,0.08);
    border-radius: 25px;
    backdrop-filter: blur(20px);
}

/* PROCESS */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.step {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}

.step span {
    font-size: 32px;
    color: #00c6ff;
}

/* GALLERY */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.gallery-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.6s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

/* FOOTER */
footer {
    text-align: center;
    padding: 30px;
    opacity: 0.6;
}

/* MOBILE */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 38px;
    }
}
