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

body {
    font-family: Arial, sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.6;
}

/* HERO */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                url("images/back.png") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    padding: 20px;
}

.logo {
    width: 180px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 48px;
    color: orange;
}

.hero h2 {
    color: #ffb347;
    margin: 10px 0;
}

.hero-buttons {
    margin-top: 20px;
}

.btn {
    display: inline-block;
    margin: 10px;
    padding: 12px 25px;
    background: orange;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
}

.btn.whatsapp {
    background: #25D366;
    color: #fff;
}

/* SERVICES */
.services {
    padding: 50px 20px;
    background: #111;
    text-align: center;
}

.services h2 {
    margin-bottom: 30px;
    color: orange;
}

.service-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: auto;
}

.service-box div {
    background: #000;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #333;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

.service-card {
    background: #000;
    border: 1px solid #333;
    border-radius: 15px;
    padding: 25px;
    text-align: left;
}

.service-card h3 {
    color: orange;
    margin-bottom: 15px;
    font-size: 22px;
    text-align: center;
}

.service-card ul {
    list-style: none;
    padding-left: 0;
}

.service-card ul li {
    padding: 6px 0;
    border-bottom: 1px dashed #222;
    font-size: 15px;
}

.service-card ul li:last-child {
    border-bottom: none;
}

/* EXTRA SERVICES */
.extra-services {
    margin-top: 40px;
    background: #111;
    padding: 20px;
    border-radius: 12px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.extra-services p {
    font-size: 16px;
    color: #ddd;
}


/* ===== GALLERY SECTION ===== */
.gallery {
    padding: 60px 20px;
    background: #111;
    text-align: center;
}

.gallery h2 {
    color: #ff9800;
    margin-bottom: 30px;
    font-size: 32px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.gallery-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    background: #000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.6);
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* CONTACT */
.contact {
    background: #111;
    padding: 40px 20px;
    text-align: center;
}

.contact h2 {
    color: orange;
    margin-bottom: 15px;
}

/* FOOTER */
footer {
    background: #000;
    text-align: center;
    padding: 15px;
    font-size: 14px;
}

/* FLOATING WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #fff;
    font-size: 26px;
    padding: 14px 16px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
    .gallery-grid img {
        height: 180px;
    }
}


    .logo {
        width: 140px;
    }
/* GOOGLE MAP */
.map-section {
    padding: 60px 20px;
    background: #000;
    text-align: center;
}

.map-section h2 {
    color: orange;
    margin-bottom: 25px;
}

.map-container {
    max-width: 1100px;
    margin: auto;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #222;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* MOBILE MAP FIX */
@media (max-width: 768px) {
    .map-container iframe {
        height: 280px;
    }
}
/* NAVBAR */
.navbar {
    width: 100%;
    background: #111;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}

.nav-links a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #ff9800;
}

.generate-btn {
    background: #00b894;
    padding: 8px 15px;
    border-radius: 5px;
}

.generate-btn:hover {
    background: #009f7a;
}
/* ===== HORIZONTAL GALLERY SLIDER ===== */

.gallery-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 20px 0;
}

.gallery-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 10px;
}

.gallery-slider img {
    height: 220px;
    border-radius: 10px;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.gallery-slider img:hover {
    transform: scale(1.05);
}

/* Hide scrollbar */
.gallery-slider::-webkit-scrollbar {
    display: none;
}

/* Buttons */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: orange;
    border: none;
    color: black;
    font-size: 24px;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
}

.nav-btn.left {
    left: 10px;
}

.nav-btn.right {
    right: 10px;
}

.nav-btn:hover {
    background: #ffb84d;
}
