/* mobile.css */
/* Mobile-specific styles for max-width: 768px */
body {
    background-color: #000;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* --- Header --- */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    padding: 10px 0;
    z-index: 2000;
}

nav {
    position: relative;
    padding: 10px 15px;
}

.mobile-menu-toggle {
    display: block;
    font-size: 28px;
    color: #D4A017;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px;
    z-index: 2001;
}

.logo.logo-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    padding: 0;
    z-index: 2001;
}

.logo-svg {
    height: 50px;
}

.mobile-nav-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    z-index: 1999;
}

.mobile-nav-menu.active {
    display: flex;
}

.menu-left, .menu-right {
    flex-direction: column;
    width: 100%;
    margin: 0;
}

.menu-left li, .menu-right li {
    margin: 15px 0;
}

.menu-left a, .menu-right a {
    font-size: 18px;
    padding: 12px 20px;
    display: block;
    color: #fff;
}

.menu-left a:hover, .menu-right a:hover {
    color: #D4A017;
}

.enquiry-btn {
    font-size: 16px;
    padding: 12px 24px;
    margin: 15px auto;
    display: block;
    width: fit-content;
    border-radius: 50px;
}

/* --- Hero Section --- */
.hero-visual-grid {
    position: relative;
    min-height: 100vh;
    padding-top: 80px;
    overflow: hidden;
}

.hero-visual-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9;
}

.central-video-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 600px;
    height: auto;
    overflow: hidden;
    z-index: 8;
}

.central-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-grid-container {
    position: relative;
    min-height: 100vh;
    z-index: 15;
    padding: 100px 20px 0;
}

.makeup-types-grid {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.makeup-type-item {
    position: absolute;
    width: 200px;
    text-align: center;
    color: #fff;
    transform: translate(-50%, -50%);
}

.heart-btn {
    width: 70px;
    height: 63px;
    margin: 0 auto 10px;
}

.heart-btn::before,
.heart-btn::after {
    width: 35px;
    height: 56px;
    left: 35px;
    border-width: 2px;
}

.heart-btn::after {
    left: 0;
}

.heart-btn:hover {
    transform: scale(1.1);
}

.heart-btn:hover::before,
.heart-btn:hover::after {
    box-shadow: 0 0 10px #D4A017, 0 0 20px #D4A017;
}

.script-text {
    font-size: 20px;
    line-height: 1.2;
}

.tagline {
    font-size: 10px;
    color: #ccc;
}

.bridal-makeup { top: 20%; left: 25%; }
.bridesmaid-makeup { top: 20%; left: 75%; }
.maternity-makeup { top: 50%; left: 15%; }
.party-makeup { top: 50%; left: 85%; }
.fashion-makeup { top: 80%; left: 25%; }
.draping-service { top: 90%; left: 50%; }
.nail-art { top: 80%; left: 75%; }

/* --- Other Sections --- */
.services {
    padding: 60px 0;
}

.services-grid {
    grid-template-columns: 1fr;
    gap: 15px;
}

.service-card {
    width: 90%;
    padding: 15px;
}

.why-choose {
    padding: 60px 0;
}

.why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
}

.gallery {
    padding: 60px 0;
}

.gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
}

.testimonials {
    padding: 60px 0;
}

.testimonial-grid {
    grid-template-columns: 1fr;
    gap: 20px;
}

.contact {
    padding: 60px 0;
}

.contact-methods {
    flex-direction: column;
    gap: 20px;
}

.contact-form-map {
    flex-direction: column;
    gap: 20px;
}

.contact-form {
    width: 100%;
}

.map {
    width: 100%;
    height: 250px;
}

footer {
    padding: 30px 0;
}

.footer-menu {
    flex-direction: column;
    gap: 10px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    font-size: 16px;
    width: 45px;
    height: 45px;
}