/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Arial', sans-serif;
}

body {
    background-color: #0e0e10;
    color: #e5e5e5;
    text-align: center;
}

/* HERO SECTION — Full-Length Image Only */
.hero {
    background: url('Hero.png') center/cover no-repeat;
    height: 100vh; /* full screen height */
    width: 100%;
    display: block;
}
.hero {
    background: url('Hero.png') center top / cover no-repeat;
}



/* VIDEO SECTION */
.video-section {
    padding: 50px 20px;
    background: #141416;
}

.video-section h2 {
    margin-bottom: 25px;
    font-size: 2em;
    color: #00ffcc;
    text-shadow: 0 0 8px #00ffcc55;
}

video {
    width: 80%;
    max-width: 800px;
    border: 2px solid #00ffcc33;
    border-radius: 10px;
    box-shadow: 0 0 20px #00ffcc22;
}

/* GALLERY SECTION */
.gallery {
    padding: 50px 20px;
    background: #18181b;
}

.gallery h2 {
    margin-bottom: 20px;
    font-size: 1.8em;
    color: #00ffcc;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-grid img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 10px #00ffcc33;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #00ffcc77;
}

/* ABOUT + CONTACT SECTION */
.contact {
    padding: 60px 20px;
    background: #0e0e10;
    border-top: 1px solid #00ffcc22;
    text-align: center;
}

.about {
    max-width: 700px;
    margin: 0 auto 30px auto;
    color: #e5e5e5;
}

.about h2 {
    color: #00ffcc;
    font-size: 1.8em;
    margin-bottom: 15px;
    text-shadow: 0 0 10px #00ffcc55;
}

.about p {
    font-size: 1.1em;
    line-height: 1.6em;
    color: #cfcfcf;
}

/* Contact Button */
.contact button {
    background: linear-gradient(90deg, #00ffcc, #0099ff);
    color: #0e0e10;
    border: none;
    padding: 15px 35px;
    font-size: 1.2em;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 0 15px #00ffcc55;
}

.contact button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px #00ffccaa;
}


/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .logo, .printer-img {
        width: 60%;
        margin: 10px 0;
    }

    video {
        width: 95%;
    }

    .gallery-grid {
        width: 95%;
    }
}
@media (max-width: 768px) {
    .hero {
        background: url('MobleHero.png') no-repeat;
        width: 100%;                     /* full width */
        height: 70vh;                     /* set the height you want */
        background-size: cover;           /* makes it fill width & height */
    }
}

