/* ============================================ */
/* RESET & BASE                                 */
/* ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: #f9fafb;
    color: #1f2937;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation container: keep nav content centered to align with page */
nav .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* ============================================ */
/* NAVIGATION                                   */
/* ============================================ */

nav {
    background: #1f2937;
    color: #ffffff;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Hamburger button (hidden on desktop) */
.hamburger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
}
.hamburger .bar {
    display: block;
    width: 24px;
    height: 3px;
    background: #e5e7eb;
    margin: 4px 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger {
    flex-direction: column;
    line-height: 0;
}
.hamburger .bar {
    border-radius: 2px;
}

/* Full-screen mobile menu overlay */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(17, 24, 39, 0.98);
    color: #fff;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    transform: translateY(-10%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(.2,.9,.3,1), opacity 0.25s ease;
}
.mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.mobile-menu .mobile-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}
.mobile-nav-links {
    list-style: none;
    display: grid;
    gap: 18px;
    text-align: center;
}
.mobile-nav-links a {
    color: #fff;
    font-size: 1.6rem;
    text-decoration: none;
    font-weight: 700;
}
.mobile-nav-links a:hover {
    color: #fbbf24;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-left: 20px !important;
    padding-left: 0 !important;
}

.logo-text {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 24px;
    flex-wrap: wrap;
}

.nav-links a {
    color: #e5e7eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

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

/* ============================================ */
/* HERO                                         */
/* ============================================ */

.hero {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: #ffffff;
    padding: 80px 0 60px;
    text-align: center;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.hero .highlight {
    color: #fbbf24;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #d1d5db;
    margin-bottom: 8px;
}

.location {
    display: inline-block;
    margin-top: 4px;
    font-size: 1rem;
    background: rgba(251, 191, 36, 0.15);
    padding: 4px 16px;
    border-radius: 20px;
    color: #fbbf24;
}

.hero-bio {
    margin: 24px auto 32px;
    max-width: 640px;
    color: #d1d5db;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 16px 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-bio strong {
    color: #fbbf24;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: #fbbf24;
    color: #1f2937;
}

.btn-primary:hover {
    background: #f59e0b;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid #fbbf24;
}

.btn-secondary:hover {
    background: rgba(251, 191, 36, 0.15);
}
/* ============================================ */
/* HERO - FULL SCREEN ON MOBILE                */
/* ============================================ */

.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/static/cover.jpg');
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .hero {
        min-height: 60vh;
        background-size: contain; /* Change from cover to contain */
        background-position: center;
        background-color: #1a1a2e; /* Add this */
        background-repeat: no-repeat; /* Add this */
    }
}

/* ============================================ */
/* SECTION TITLES                               */
/* ============================================ */

section {
    padding: 60px 0;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
    color: #1f2937;
}

h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #fbbf24;
    margin: 8px auto 0;
    border-radius: 4px;
}

/* ============================================ */
/* ABOUT                                        */
/* ============================================ */

.about {
    background: #ffffff;
}

.about-text p {
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.about-text ul {
    margin-top: 16px;
}

.about-text ul li {
    padding: 8px 0;
    font-weight: 500;
    color: #374151;
}

/* ============================================ */
/* SERVICES                                     */
/* ============================================ */

.services {
    background: #f3f4f6;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 20px;
    text-align: center !important ;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2.8rem;
    margin-bottom: 12px;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #1f2937;
}

.service-card p {
    color: #6b7280;
    font-size: 0.95rem;
}

/* ============================================ */
/* GALLERY                                      */
/* ============================================ */

.gallery {
    background: #ffffff;
}

.gallery-subtitle {
    text-align: center;
    color: #6b7280;
    margin-top: -20px;
    margin-bottom: 32px;
}

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

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    aspect-ratio: 4 / 3;
    background: #e5e7eb;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.gallery-note {
    text-align: center;
    color: #9ca3af;
    margin-top: 24px;
    font-size: 0.95rem;
}

/* ============================================ */
/* CONTACT                                      */
/* ============================================ */

.contact {
    background: #f3f4f6;
}

.contact-subtitle {
    text-align: center;
    color: #6b7280;
    margin-top: -20px;
    margin-bottom: 32px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

.contact-item {
    background: #ffffff;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.contact-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6b7280;
    margin-bottom: 4px;
}

.contact-item a {
    color: #1f2937;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
}

.contact-item a:hover {
    color: #f59e0b;
}

.contact-form {
    background: #ffffff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #fbbf24;
}

.contact-form button {
    width: 100%;
    border: none;
    cursor: pointer;
}

.form-note {
    text-align: center;
    margin-top: 12px;
    font-size: 0.9rem;
    color: #6b7280;
}

/* ============================================ */
/* WHATSAPP BUTTON                              */
/* ============================================ */

.whatsapp-contact {
    background: #f0fdf4 !important;
    border: 2px solid #25D366 !important;
}

.whatsapp-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    background: #25D366 !important;
    color: #ffffff !important;
    padding: 10px 20px !important;
    border-radius: 40px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: all 0.2s ease !important;
    width: 100% !important;
    justify-content: center !important;
}

.whatsapp-btn:hover {
    background: #1da851 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4) !important;
    color: #ffffff !important;
}

.whatsapp-btn-icon {
    font-size: 1.4rem !important;
}

/* ============================================ */
/* FOOTER                                       */
/* ============================================ */

footer {
    background: #1f2937;
    color: #9ca3af;
    text-align: center;
    padding: 32px 0;
    border-top: 4px solid #fbbf24;
}

footer strong {
    color: #ffffff;
}

.footer-small {
    font-size: 0.85rem;
    margin-top: 6px;
    color: #6b7280;
}

/* ============================================ */
/* RESPONSIVE (Mobile Friendly)                 */
/* ============================================ */

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 12px;
    }

    /* On mobile hide the inline nav and show the hamburger */
    .nav-links {
        display: none;
    }

    .nav-container {
        position: relative;
    }

    /* place hamburger inside the nav, next to the logo */
    .hamburger {
        display: inline-flex;
        position: absolute;
        left: 20px; /* aligns with container padding */
        top: 50%;
        transform: translateY(-50%);
        padding: 6px;
        width: 44px;
        height: 44px;
        z-index: 2500;
        background: transparent;
        border-radius: 6px;
    }

    /* nudge the logo right so the hamburger sits visually in the logo area */
    .logo {
        margin-left: 64px !important;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-bio {
        font-size: 0.95rem;
        padding: 12px 16px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-text ul {
        grid-template-columns: 1fr !important;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .contact-form {
        padding: 20px;
    }

    .service-grid {
        grid-template-columns: 1fr 1fr;
    }

    .whatsapp-btn {
        padding: 8px 16px !important;
        font-size: 0.9rem !important;
    }

    .whatsapp-btn-icon {
        font-size: 1.2rem !important;
    }
}

@media (max-width: 480px) {
    .service-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .contact-item {
        padding: 12px 16px;
    }
}
/* ============================================ */
/* SERVICE CARDS - HOVER ZOOM                  */

/* When mobile menu is open, prevent body scrolling */
body.menu-open {
    overflow: hidden;
}
/* ============================================ */

.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: scale(1.12);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

/* ============================================ */
/* GALLERY IMAGES - HOVER ZOOM                 */
/* ============================================ */

.gallery-item {
    overflow: hidden;
}

.gallery-item img {
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}
/* ============================================ */
/* FORCE SERVICES SUBTITLE TO CENTER           */
/* ============================================ */

.services-subtitle {
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    color: #6b7280;
    margin-top: -20px;
    margin-bottom: 40px;
    font-size: 1.1rem;
}
/* ============================================ */
/* LIGHTBOX - FULL SCREEN IMAGE VIEWER         */
/* ============================================ */

/* Hide lightboxes by default */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

/* Show lightbox when clicked (targeted) */
.lightbox:target {
    display: flex;
}

/* Enlarged image - FORCE UNIFORM SIZE */
.lightbox img {
    max-width: 90%;
    max-height: 90%;
    min-width: 400px;
    min-height: 300px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    animation: lightboxFade 0.3s ease;
}

/* Close button (X) */
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 300;
    text-decoration: none;
    transition: transform 0.2s ease;
    font-family: Arial, sans-serif;
    z-index: 10000;
    line-height: 1;
}

.lightbox-close:hover {
    transform: rotate(90deg);
    color: #fbbf24;
}

/* Fade-in animation */
@keyframes lightboxFade {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ============================================ */
/* LIGHTBOX - RESPONSIVE                       */
/* ============================================ */

@media (max-width: 600px) {
    .lightbox {
        padding: 16px;
    }
    
    .lightbox img {
        max-width: 100%;
        max-height: 80%;
        min-width: 200px;
        min-height: 150px;
    }
    
    .lightbox-close {
        top: 12px;
        right: 20px;
        font-size: 2.2rem;
    }
}