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

:root {
    --red: #C0392B;
    --cream: #D4C9A8;
    --dark: #221E1B;
    --gray: #4a4a4a;
}

body {
    background-color: var(--dark);
    font-family: "Bebas Neue", sans-serif;

}
/* ===== ADMIN MOBILE NAV ===== */
.hamburger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text);
    transition: all 0.3s;
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 280px;
    height: 100vh;
    background: var(--surface);
    border-left: 1px solid var(--border);
    z-index: 200;
    padding: 80px 32px 40px;
    transition: right 0.3s ease;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 28px;
    cursor: pointer;
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav ul li a {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--text);
    text-decoration: none;
    letter-spacing: 2px;
    transition: color 0.2s;
}

.mobile-nav ul li a:hover,
.mobile-nav ul li a.active {
    color: var(--red);
}

.mobile-nav .logout-btn {
    margin-top: 40px;
    width: 100%;
    background: none;
    border: 1px solid var(--border);
    color: var(--muted);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 12px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.2s;
}

.mobile-nav .logout-btn:hover {
    border-color: var(--red);
    color: var(--red);
}

@media (max-width: 768px) {
    .hamburger-btn {
        display: flex;
    }
    
    .mobile-nav,
    .mobile-nav-overlay {
        display: block;
    }
    
    /* Hide desktop nav on mobile */
    header nav {
        display: none;
    }
    
    .header-right .logout-btn {
        display: none;
    }
}
/* ===== HEADER ===== */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: sticky;
    top: 0;
     background-color: var(--dark);  /* Prevents content showing through */
    z-index: 100;                   /* Keeps header above everything */
}

header img.logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-left: 90px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 60px;
    align-items: center;
}

nav ul li a {
    text-decoration: none;
    color: var(--cream);
    font-family: "Bebas Neue", sans-serif;
    font-size: 22px;
    letter-spacing: 1px;
    transition: color 0.2s;
}

nav ul li a:hover {
    color: white;
}

.book-btn {
    background-color: var(--red);
    color: white;
    font-family: "Bebas Neue", sans-serif;
    font-size: 20px;
    letter-spacing: 2px;
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.book-btn a {
    color: white;
    text-decoration: none;
}
.book-btn:hover {
    background-color: #a93226;
}

.body-part {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 100px 60px 120px;
}

.left-body {
    max-width: 500px;
}

.left-body .tagline {
    font-family: "Bebas Neue", sans-serif;
    font-size: 22px;
    color: var(--red);
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.left-body h1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 100px;
    color: var(--cream);
    line-height: 0.9;
    margin-bottom: 40px;
}

.left-body .no-fluff {
    color: var(--cream);
    font-family: sans-serif;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.left-body .est {
    color: var(--gray);
    font-family: sans-serif;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.body-btn {
    display: flex;
    gap: 20px;
}

.ourwork-btn {
    background-color: transparent;
    color: white;
    font-family: "Bebas Neue", sans-serif;
    font-size: 18px;
    letter-spacing: 2px;
    padding: 12px 28px;
    border: 1.5px solid white;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
}

.ourwork-btn:hover {
    background: rgba(255,255,255,0.08);
}

/* ===== RIGHT IMAGE ===== */
.right-body img {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.1);
    margin-right: 110px;
}

/* ===== JOIN SECTION ===== */
.join-section {
    background-color: var(--red);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 120px;
    margin-top: 60px;
}

.join-left h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 52px;
    color: white;
    letter-spacing: 3px;
}

.join-left p {
    font-family: sans-serif;
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    margin-top: 6px;
}

.join-btns {
    display: flex;
    gap: 16px;
}

.join-btn {
    background: transparent;
    color: white;
    font-family: "Bebas Neue", sans-serif;
    font-size: 18px;
    letter-spacing: 2px;
    padding: 12px 36px;
    border: 2px solid white;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.join-btn:hover {
    background: rgba(255,255,255,0.15);
}


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

.services-section {
    padding: 100px 120px 80px;
    position: relative;
    overflow: hidden;
}

/* Big watermark letters in background */
.services-section::before {
    content: "3KG";
    position: absolute;
    right: -40px;
    top: 60px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 380px;
    color: rgba(192, 57, 43, 0.07);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    letter-spacing: -10px;
}

/* --- Section Header --- */
.services-header {
    margin-bottom: 48px;
}

.services-eyebrow {
    font-family: "Bebas Neue", sans-serif;
    font-size: 16px;
    color: var(--red);
    letter-spacing: 4px;
    margin-bottom: 8px;
}

.services-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 80px;
    color: var(--cream);
    letter-spacing: 3px;
    line-height: 1;
    margin-bottom: 14px;
}

.services-title span {
    color: white;
}

.services-sub {
    font-family: sans-serif;
    font-size: 15px;
    color: rgba(212, 201, 168, 0.65);
    letter-spacing: 1px;
    line-height: 1.7;
}

/* --- Craft Label --- */
.craft-label {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 36px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.craft-icon {
    width: 52px;
    height: 52px;
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    flex-shrink: 0;
}

.craft-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 28px;
    color: var(--cream);
    letter-spacing: 3px;
}

.craft-sub {
    font-family: sans-serif;
    font-size: 12px;
    color: var(--red);
    letter-spacing: 2px;
    margin-top: 2px;
}

/* --- Featured Service --- */
.featured-service {
    background: #1a1512;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    overflow: hidden;
    margin-bottom: 40px;
    position: relative;
}

.featured-service::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--red);
    border-radius: 12px 0 0 12px;
}

.featured-content {
    padding: 36px 40px;
    flex: 1;
}

.featured-badge {
    font-family: "Bebas Neue", sans-serif;
    font-size: 13px;
    color: var(--red);
    letter-spacing: 4px;
    margin-bottom: 8px;
}

.featured-name {
    font-family: "Bebas Neue", sans-serif;
    font-size: 54px;
    color: var(--cream);
    letter-spacing: 3px;
    line-height: 1;
    margin-bottom: 14px;
}

.featured-desc {
    font-family: sans-serif;
    font-size: 14px;
    color: rgba(212, 201, 168, 0.7);
    line-height: 1.75;
    max-width: 460px;
    margin-bottom: 20px;
}

.featured-price-row {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 4px;
}

.featured-price {
    font-family: "Bebas Neue", sans-serif;
    font-size: 48px;
    color: var(--red);
    letter-spacing: 2px;
}

.featured-precision {
    font-family: sans-serif;
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.featured-time {
    font-family: sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    letter-spacing: 2px;
    margin-bottom: 28px;
}

.featured-btns {
    display: flex;
    gap: 16px;
}

.featured-img-wrap {
    width: 300px;
    flex-shrink: 0;
    overflow: hidden;
}

.featured-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Services Grid --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 80px;
}

.service-card {
    background: #1a1512;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    padding: 28px 28px 24px;
    transition: border-color 0.2s, transform 0.2s;
    cursor: default;
}

.service-card:hover {
    border-color: var(--red);
    transform: translateY(-3px);
}

.service-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.service-icon {
    color: var(--cream);
    opacity: 0.7;
    flex-shrink: 0;
    font-size: 22px;
    display: flex;
    align-items: center;
}

.service-name {
    font-family: "Bebas Neue", sans-serif;
    font-size: 22px;
    color: var(--cream);
    letter-spacing: 2px;
}

.service-desc {
    font-family: sans-serif;
    font-size: 13px;
    color: rgba(212, 201, 168, 0.55);
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-price {
    font-family: "Bebas Neue", sans-serif;
    font-size: 32px;
    color: var(--red);
    letter-spacing: 2px;
}

/* --- Services CTA --- */
.services-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 10px;
}

.cta-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 72px;
    color: var(--cream);
    letter-spacing: 3px;
    line-height: 1;
}

.cta-title.red {
    color: var(--red);
}

.cta-sub {
    font-family: sans-serif;
    font-size: 14px;
    color: rgba(212, 201, 168, 0.5);
    letter-spacing: 1.5px;
    margin-top: 10px;
}

.cta-btns {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* ===== FOOTER ===== */
.site-footer {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 28px 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: "Bebas Neue", sans-serif;
    font-size: 28px;
    color: var(--cream);
    letter-spacing: 4px;
}

.footer-mid {
    font-family: sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.25);
    letter-spacing: 2px;
}

.footer-copy {
    font-family: sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.25);
    letter-spacing: 1px;
}

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

:root {
    --red: #C0392B;
    --cream: #D4C9A8;
    --dark: #221E1B;
    --gray: #4a4a4a;
}

body {
    background-color: var(--dark);
    font-family: "Bebas Neue", sans-serif;
}



header img.logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-left: 90px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 60px;
    align-items: center;
}

nav ul li a {
    text-decoration: none;
    color: var(--cream);
    font-family: "Bebas Neue", sans-serif;
    font-size: 22px;
    letter-spacing: 1px;
    transition: color 0.2s;
}

nav ul li a:hover {
    color: white;
}

nav ul li a.active {
    color: var(--red);
    border-bottom: 2px solid var(--red);
    padding-bottom: 2px;
}

.book-btn {
    background-color: var(--red);
    color: white;
    font-family: "Bebas Neue", sans-serif;
    font-size: 20px;
    letter-spacing: 2px;
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
}

.book-btn:hover {
    background-color: #a93226;
}

.ourwork-btn {
    background-color: transparent;
    color: white;
    font-family: "Bebas Neue", sans-serif;
    font-size: 18px;
    letter-spacing: 2px;
    padding: 12px 28px;
    border: 1.5px solid white;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.ourwork-btn:hover {
    background: rgba(255,255,255,0.08);
}

/* ===== HERO ===== */
.work-hero {
    padding: 80px 120px 60px;
    position: relative;
    overflow: hidden;
}

.hero-eyebrow {
    font-family: "Bebas Neue", sans-serif;
    font-size: 15px;
    color: var(--red);
    letter-spacing: 5px;
    margin-bottom: 10px;
}

.hero-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 110px;
    color: var(--cream);
    line-height: 0.9;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-title span {
    color: var(--red);
}

.hero-sub {
    font-family: sans-serif;
    font-size: 14px;
    color: rgba(212, 201, 168, 0.6);
    line-height: 1.8;
    letter-spacing: 0.5px;
    max-width: 420px;
}

.hero-watermark {
    position: absolute;
    right: -20px;
    top: 20px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 340px;
    color: rgba(192, 57, 43, 0.06);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    letter-spacing: -10px;
}

/* ===== DIVIDER ===== */
.divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 0 120px;
}

/* ===== HAIRSTYLES GRID (Our Work Page) ===== */
.hairstyles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.hairstyle-card {
    background: #1a1512;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
}

.hairstyle-card:hover {
    border-color: var(--red);
    transform: translateY(-4px);
}

.hairstyle-img-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.hairstyle-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.hairstyle-card:hover .hairstyle-img-wrap img {
    transform: scale(1.04);
}

.hairstyle-info {
    padding: 20px 22px 24px;
}

.hairstyle-name {
    font-family: "Bebas Neue", sans-serif;
    font-size: 22px;
    color: var(--cream);
    letter-spacing: 3px;
    margin-bottom: 6px;
}

.hairstyle-desc {
    font-family: sans-serif;
    font-size: 12px;
    color: rgba(212, 201, 168, 0.55);
    line-height: 1.6;
    margin-bottom: 16px;
}

.hairstyle-book-btn {
    display: inline-block;
    background: transparent;
    color: var(--red);
    font-family: "Bebas Neue", sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    padding: 8px 20px;
    border: 1.5px solid var(--red);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s;
}

.hairstyle-book-btn:hover {
    background: var(--red);
    color: white;
}

/* ===== NEXT CTA ===== */
.next-cta {
    padding: 70px 120px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.next-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 80px;
    color: var(--cream);
    letter-spacing: 3px;
    line-height: 1;
}

.next-title.red {
    color: var(--red);
}

.next-sub {
    font-family: sans-serif;
    font-size: 14px;
    color: rgba(212, 201, 168, 0.45);
    letter-spacing: 1.5px;
    margin-top: 10px;
}

.next-btns {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* ===========================
   CONTACT PAGE STYLES
   =========================== */

/* ===== CONTACT HERO ===== */
.contact-hero {
    padding: 80px 120px 40px;
    position: relative;
    overflow: hidden;
}

.contact-eyebrow {
    font-family: "Bebas Neue", sans-serif;
    font-size: 15px;
    color: var(--red);
    letter-spacing: 5px;
    margin-bottom: 10px;
}

.contact-hero-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 110px;
    color: var(--cream);
    line-height: 0.9;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.contact-hero-title span {
    color: var(--red);
}

.contact-hero-sub {
    font-family: sans-serif;
    font-size: 14px;
    color: rgba(212, 201, 168, 0.6);
    line-height: 1.8;
    letter-spacing: 0.5px;
    max-width: 420px;
}

/* ===== SHOP INFO ===== */
.shop-info {
    padding: 40px 120px 50px;
    text-align: center;
}

.shop-info-dot {
    width: 10px;
    height: 10px;
    background-color: var(--red);
    border-radius: 50%;
    margin: 0 auto 16px;
}

.shop-info-name {
    font-family: "Bebas Neue", sans-serif;
    font-size: 28px;
    color: var(--cream);
    letter-spacing: 4px;
    margin-bottom: 6px;
}

.shop-info-address {
    font-family: sans-serif;
    font-size: 12px;
    color: rgba(212, 201, 168, 0.5);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.maps-btn {
    display: inline-block;
    background-color: var(--red);
    color: white;
    font-family: "Bebas Neue", sans-serif;
    font-size: 14px;
    letter-spacing: 3px;
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s;
}

.maps-btn:hover {
    background-color: #a93226;
}

/* ===== MAP SECTION ===== */
.map-section {
    padding: 0 120px 60px;
}

.map-container {
    width: 100%;
    height: 600px;
    border-radius: 0;
    overflow: hidden;
    background: #1a1512;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ===== CONTACT DETAILS SECTION ===== */
.contact-details-section {
    padding: 0 120px 80px;
}

.contact-details-card {
    background: #3B2314;
    border: 1px solid rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    padding: 60px 80px;
    gap: 400px;
    justify-content: space-between;
}

.contact-details-left {
    flex-shrink: 0;
    margin-left: 150px;
}

.contact-details-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 72px;
    color: var(--cream);
    letter-spacing: 4px;
    line-height: 1;
    opacity: 0.8;
}

.contact-details-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.detail-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.detail-icon {
    color: var(--cream);
    opacity: 0.6;
    flex-shrink: 0;
    margin-top: 2px;
}

.detail-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-label {
    font-family: "Bebas Neue", sans-serif;
    font-size: 12px;
    color: var(--red);
    letter-spacing: 3px;
}

.detail-value {
    font-family: sans-serif;
    font-size: 14px;
    color: rgba(212, 201, 168, 0.7);
    line-height: 1.6;
    letter-spacing: 0.5px;
}

.detail-row img{
    width: 50px;
    height: 50px;
}

/* ===========================
   BOOKING PAGE STYLES
   =========================== */

/* ===== BOOKING SECTION ===== */
.booking-section {
    padding: 60px 120px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* ===== LEFT: SERVICE CARD ===== */
.booking-service-card {
    background: #1a1512;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 40px;
}

.booking-service-eyebrow {
    font-family: "Bebas Neue", sans-serif;
    font-size: 12px;
    color: var(--red);
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.booking-service-name {
    font-family: "Bebas Neue", sans-serif;
    font-size: 32px;
    color: var(--cream);
    letter-spacing: 3px;
    line-height: 1.1;
    margin-bottom: 16px;
}

.booking-service-desc {
    font-family: sans-serif;
    font-size: 12px;
    color: rgba(212, 201, 168, 0.6);
    line-height: 1.7;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.booking-service-img {
    width: 100%;
    height: 360px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
}

.booking-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.booking-service-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.booking-price-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.booking-price {
    font-family: "Bebas Neue", sans-serif;
    font-size: 36px;
    color: var(--red);
    letter-spacing: 2px;
    line-height: 1;
}

.booking-price-label {
    font-family: sans-serif;
    font-size: 10px;
    color: rgba(212, 201, 168, 0.5);
    letter-spacing: 2px;
}

.booking-time {
    font-family: sans-serif;
    font-size: 11px;
    color: rgba(212, 201, 168, 0.4);
    letter-spacing: 1px;
}

.learn-more-btn {
    background: transparent;
    color: var(--cream);
    font-family: "Bebas Neue", sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    padding: 10px 24px;
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.learn-more-btn:hover {
    border-color: var(--cream);
    background: rgba(255,255,255,0.05);
}

/* ===== RIGHT: BOOKING FORM CARD ===== */
.booking-form-card {
    background: #1a1512;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 40px;
}

.booking-form-header {
    text-align: center;
    margin-bottom: 32px;
}

.booking-form-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 48px;
    color: var(--cream);
    letter-spacing: 6px;
    line-height: 1;
    margin-bottom: 6px;
}

.booking-form-sub {
    font-family: sans-serif;
    font-size: 11px;
    color: rgba(212, 201, 168, 0.5);
    letter-spacing: 2px;
}

/* ===== FORM ===== */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.booking-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.booking-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.booking-form-group.full {
    grid-column: 1 / -1;
}

.booking-form-group label {
    font-family: "Bebas Neue", sans-serif;
    font-size: 11px;
    color: var(--red);
    letter-spacing: 3px;
}

.booking-input-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 12px 14px;
    transition: border-color 0.2s;
}

.booking-input-wrap:focus-within {
    border-color: var(--red);
}

.booking-input-icon {
    opacity: 0.5;
    flex-shrink: 0;
}

.booking-input-chevron {
    opacity: 0.4;
    flex-shrink: 0;
    margin-left: auto;
}

.booking-input-wrap input {
    background: transparent;
    border: none;
    color: var(--cream);
    font-family: sans-serif;
    font-size: 13px;
    letter-spacing: 0.5px;
    width: 100%;
    outline: none;
}

.booking-input-wrap input::placeholder {
    color: rgba(212, 201, 168, 0.3);
}

.booking-textarea-wrap {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 12px 14px;
    transition: border-color 0.2s;
    position: relative;
}

.booking-textarea-wrap:focus-within {
    border-color: var(--red);
}

.booking-textarea-wrap textarea {
    background: transparent;
    border: none;
    color: var(--cream);
    font-family: sans-serif;
    font-size: 13px;
    letter-spacing: 0.5px;
    width: 100%;
    min-height: 80px;
    resize: none;
    outline: none;
}

.booking-textarea-wrap textarea::placeholder {
    color: rgba(212, 201, 168, 0.3);
}

.booking-char-count {
    font-family: sans-serif;
    font-size: 10px;
    color: rgba(212, 201, 168, 0.25);
    text-align: right;
    margin-top: 4px;
}

.booking-submit-btn {
    width: 100%;
    background-color: var(--red);
    color: white;
    font-family: "Bebas Neue", sans-serif;
    font-size: 18px;
    letter-spacing: 4px;
    padding: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 8px;
}

.booking-submit-btn:hover {
    background-color: #a93226;
}

/* Hairstyle hint text */
.hairstyle-hint {
    font-family: sans-serif;
    font-size: 11px;
    color: rgba(212, 201, 168, 0.4);
    margin-top: 6px;
    letter-spacing: 0.5px;
}

.hairstyle-hint a {
    color: var(--red);
    text-decoration: none;
}

.hairstyle-hint a:hover {
    text-decoration: underline;
}

/* ===== FOOTER ===== */
.site-footer {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 28px 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: "Bebas Neue", sans-serif;
    font-size: 28px;
    color: var(--cream);
    letter-spacing: 4px;
}

.footer-mid {
    font-family: sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.25);
    letter-spacing: 2px;
}

.footer-copy {
    font-family: sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.25);
    letter-spacing: 1px;
}



/* ===========================
   HOMEPAGE MEDIA QUERIES
   =========================== */

@media (max-width: 768px) {

    /* ===== HEADER ===== */
    header {
        padding: 12px 20px;
    }

    header img.logo {
        width: 44px;
        height: 44px;
        margin-left: 0;
    }

    /* Hide desktop nav, show hamburger */
    nav ul {
        display: none;
    }

    .hamburger-btn {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 8px;
    }

    .hamburger-btn span {
        display: block;
        width: 24px;
        height: 2px;
        background-color: var(--cream);
        transition: all 0.3s;
    }

    .book-btn {
        font-size: 14px;
        padding: 10px 20px;
        letter-spacing: 1px;
        text-decoration: none;
        display: inline-block;
        white-space: nowrap;
    }

    /* ===== MOBILE NAV DRAWER ===== */
    .mobile-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--dark);
        border-left: 1px solid rgba(255,255,255,0.1);
        z-index: 200;
        padding: 80px 40px 40px;
        transition: right 0.3s ease;
    }

    .mobile-nav.active {
        right: 0;
    }

    .mobile-nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.6);
        z-index: 150;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }

    .mobile-nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-nav-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: transparent;
        border: none;
        color: var(--cream);
        font-size: 28px;
        cursor: pointer;
    }

    .mobile-nav ul {
        display: flex;
        flex-direction: column;
        gap: 24px;
        list-style: none;
    }

    .mobile-nav ul li a {
        font-family: "Bebas Neue", sans-serif;
        font-size: 28px;
        color: var(--cream);
        text-decoration: none;
        letter-spacing: 2px;
        transition: color 0.2s;
    }

    .mobile-nav ul li a:hover,
    .mobile-nav ul li a.active {
        color: var(--red);
    }

    .mobile-nav .book-btn {
        margin-top: 32px;
        width: 100%;
        text-align: center;
        display: block;          
        box-sizing: border-box;
    }

    /* ===== HERO SECTION ===== */
    .body-part {
        flex-direction: column;
        padding: 40px 24px 50px;
        text-align: center;
        gap: 40px;
    }

    .left-body {
        max-width: 100%;
        order: 1;
    }

    .left-body .tagline {
        font-size: 14px;
        letter-spacing: 2px;
        margin-bottom: 12px;
    }

    .left-body h1 {
        font-size: 64px;
        margin-bottom: 24px;
    }

    .left-body .no-fluff {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .left-body .est {
        font-size: 13px;
        margin-bottom: 28px;
    }

    .body-btn {
        justify-content: center;
        gap: 12px;
    }

    .body-btn .book-btn,
    .body-btn .ourwork-btn {
        font-size: 14px;
        padding: 12px 24px;
        letter-spacing: 1px;
    }

    .right-body {
        order: 0;
    }

    .right-body img {
        width: 200px;
        height: 200px;
        margin-right: 0;
    }

    /* ===== JOIN SECTION ===== */
    .join-section {
        flex-direction: column;
        padding: 32px 24px;
        text-align: center;
        gap: 20px;
    }

    .join-left h2 {
        font-size: 32px;
        letter-spacing: 2px;
    }

    .join-left p {
        font-size: 13px;
    }

    .join-btns {
        width: 100%;
        justify-content: center;
    }

    .join-btn {
        font-size: 14px;
        padding: 10px 28px;
        flex: 1;
        max-width: 140px;
    }

    /* ===== FOOTER ===== */
    .site-footer {
        flex-direction: column;
        gap: 12px;
        padding: 24px;
        text-align: center;
    }

    .footer-logo {
        font-size: 24px;
    }

    .footer-mid,
    .footer-copy {
        font-size: 10px;
    }
}
/* Hide mobile elements on desktop */
.hamburger-btn {
    display: none;
}

.mobile-nav,
.mobile-nav-overlay {
    display: none;
}

.desktop-nav {
    display: flex;
}

@media (max-width: 768px) {
    .hamburger-btn {
        display: flex;
    }

    .mobile-nav,
    .mobile-nav-overlay {
        display: block;
    }

    .desktop-nav,
    .desktop-book {
        display: none;
    }
}

/* ===========================
   SERVICES PAGE MEDIA QUERIES
   =========================== */

@media (max-width: 768px) {

    /* ===== SERVICES SECTION ===== */
    .services-section {
        padding: 40px 24px 60px;
    }

    .services-section::before {
        font-size: 200px;
        right: -20px;
        top: 40px;
    }

    /* --- Section Header --- */
    .services-header {
        margin-bottom: 32px;
    }

    .services-eyebrow {
        font-size: 13px;
        letter-spacing: 3px;
    }

    .services-title {
        font-size: 48px;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    .services-sub {
        font-size: 13px;
        line-height: 1.6;
    }

    /* --- Craft Label --- */
    .craft-label {
        gap: 12px;
        margin-bottom: 28px;
        padding-bottom: 20px;
    }

    .craft-icon {
        width: 40px;
        height: 40px;
    }

    .craft-icon img {
        width: 20px;
        height: 20px;
    }

    .craft-title {
        font-size: 22px;
        letter-spacing: 2px;
    }

    .craft-sub {
        font-size: 10px;
    }

    /* --- Featured Service --- */
    .featured-service {
        flex-direction: column;
        margin-bottom: 32px;
    }

    .featured-service::before {
        width: 100%;
        height: 4px;
        top: 0;
        left: 0;
        right: 0;
        bottom: auto;
        border-radius: 12px 12px 0 0;
    }

    .featured-content {
        padding: 28px 24px;
        order: 1;
    }

    .featured-badge {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .featured-name {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .featured-desc {
        font-size: 13px;
        max-width: 100%;
    }

    .featured-price {
        font-size: 36px;
    }

    .featured-time {
        margin-bottom: 20px;
    }

    .featured-btns {
        gap: 12px;
    }

    .featured-btns .book-btn,
    .featured-btns .ourwork-btn {
        font-size: 14px;
        padding: 10px 20px;
    }

    .featured-img-wrap {
        width: 100%;
        height: 240px;
        order: 0;
    }

    /* --- Services Grid --- */
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-bottom: 60px;
    }

    .service-card {
        padding: 20px 18px 18px;
    }

    .service-card-top {
        gap: 8px;
        margin-bottom: 10px;
    }

    .service-icon img {
        width: 18px;
        height: 18px;
    }

    .service-name {
        font-size: 16px;
        letter-spacing: 1px;
    }

    .service-desc {
        font-size: 11px;
        line-height: 1.6;
        margin-bottom: 12px;
    }

    .service-price {
        font-size: 24px;
    }

    /* --- Services CTA --- */
    .services-cta {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .cta-title {
        font-size: 42px;
        letter-spacing: 2px;
    }

    .cta-sub {
        font-size: 13px;
        margin-top: 8px;
    }

    .cta-btns {
        gap: 12px;
    }

    .cta-btns .book-btn,
    .cta-btns .ourwork-btn {
        font-size: 14px;
        padding: 10px 24px;        
    }
}

/* ===========================
   OUR WORK PAGE MEDIA QUERIES
   =========================== */

@media (max-width: 768px) {

    /* ===== HERO ===== */
    .work-hero {
        padding: 40px 24px 40px;
    }

    .hero-eyebrow {
        font-size: 13px;
        letter-spacing: 3px;
    }

    .hero-title {
        font-size: 64px;
        letter-spacing: 2px;
        margin-bottom: 16px;
    }

    .hero-sub {
        font-size: 13px;
        line-height: 1.6;
        max-width: 100%;
    }

    .hero-watermark {
        font-size: 180px;
        right: -10px;
        top: 10px;
    }

    /* ===== DIVIDER ===== */
    .divider {
        margin: 0 24px;
    }

    /* ===== HAIRSTYLES GRID ===== */
    .hairstyles-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hairstyle-card {
        border-radius: 10px;
    }

    .hairstyle-img-wrap {
        aspect-ratio: 16 / 9;
    }

    .hairstyle-info {
        padding: 16px 18px 20px;
    }

    .hairstyle-name {
        font-size: 20px;
        letter-spacing: 2px;
    }

    .hairstyle-desc {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .hairstyle-book-btn {
        font-size: 12px;
        padding: 8px 18px;
    }

    /* ===== NEXT CTA ===== */
    .next-cta {
        padding: 50px 24px 60px;
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .next-title {
        font-size: 42px;
        letter-spacing: 2px;
    }

    .next-sub {
        font-size: 13px;
        margin-top: 8px;
    }

    .next-btns {
        gap: 12px;
    }

    .next-btns .book-btn,
    .next-btns .ourwork-btn {
        font-size: 14px;
        padding: 10px 24px;
    }
}

/* ===========================
   ABOUT PAGE MEDIA QUERIES
   =========================== */

@media (max-width: 768px) {

    /* ===== ABOUT HERO ===== */
    .about-hero {
        padding: 40px 24px 40px;
    }

    .about-eyebrow {
        font-size: 13px;
        letter-spacing: 3px;
    }

    .about-hero-title {
        font-size: 56px;
        letter-spacing: 2px;
        margin-bottom: 16px;
    }

    .about-hero-sub {
        font-size: 13px;
        line-height: 1.6;
        max-width: 100%;
    }

    .about-hero-watermark {
        font-size: 180px;
        right: -10px;
        top: 10px;
    }

    /* ===== DIVIDER ===== */
    .divider {
        margin: 0 24px;
    }

    /* ===== STORY SECTION ===== */
    .about-story {
        padding: 40px 24px;
    }

    .story-eyebrow {
        font-size: 11px;
        letter-spacing: 3px;
        margin-bottom: 16px;
    }

    .story-body {
        font-size: 14px;
        letter-spacing: 1px;
        line-height: 1.6;
        margin-bottom: 16px;
    }

    /* ===== VALUES SECTION ===== */
    .about-values {
        padding: 50px 24px 60px;
    }

    .about-values::before {
        font-size: 200px;
        right: -20px;
        top: 20px;
    }

    .values-eyebrow {
        font-size: 13px;
        letter-spacing: 3px;
    }

    .values-title {
        font-size: 42px;
        letter-spacing: 2px;
        margin-bottom: 32px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 50px;
    }

    .value-card {
        padding: 24px 20px;
    }

    .value-number {
        font-size: 36px;
        margin-bottom: 8px;
    }

    .value-name {
        font-size: 22px;
        letter-spacing: 2px;
        margin-bottom: 8px;
    }

    .value-desc {
        font-size: 12px;
        line-height: 1.6;
    }

    /* ===== TEAM SECTION ===== */
    .about-team {
        padding: 0 24px 60px;
    }

    .team-header {
        margin-bottom: 28px;
        padding-top: 40px;
    }

    .team-eyebrow {
        font-size: 13px;
        letter-spacing: 3px;
    }

    .team-title {
        font-size: 42px;
        letter-spacing: 2px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .team-info {
        padding: 16px 18px 18px;
    }

    .team-name {
        font-size: 22px;
    }

    /* ===== ABOUT CTA ===== */
    .about-cta {
        padding: 50px 24px 60px;
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .about-cta-title {
        font-size: 42px;
        letter-spacing: 2px;
    }

    .about-cta-sub {
        font-size: 13px;
        margin-top: 8px;
    }

    .about-cta-btns {
        gap: 12px;
    }

    .about-cta-btns .book-btn,
    .about-cta-btns .ourwork-btn {
        font-size: 14px;
        padding: 10px 24px;
    }
}

/* ===========================
   CONTACT PAGE MOBILE ONLY
   =========================== */

@media (max-width: 768px) {

    /* ===== CONTACT HERO ===== */
    .contact-hero {
        padding: 40px 24px 30px;
    }

    .contact-eyebrow {
        font-size: 13px;
        letter-spacing: 3px;
    }

    .contact-hero-title {
        font-size: 64px;
        letter-spacing: 2px;
        margin-bottom: 12px;
    }

    .contact-hero-sub {
        font-size: 13px;
        line-height: 1.6;
        max-width: 100%;
    }

    /* ===== SHOP INFO ===== */
    .shop-info {
        padding: 30px 24px 40px;
    }

    .shop-info-dot {
        width: 8px;
        height: 8px;
        margin-bottom: 12px;
    }

    .shop-info-name {
        font-size: 22px;
        letter-spacing: 3px;
    }

    .shop-info-address {
        font-size: 11px;
        margin-bottom: 16px;
    }

    .maps-btn {
        font-size: 12px;
        padding: 10px 24px;
        letter-spacing: 2px;
    }

    /* ===== MAP SECTION ===== */
    .map-section {
        padding: 0 24px 40px;
    }

    .map-container {
        height: 280px;
    }

    /* ===== CONTACT DETAILS SECTION ===== */
    .contact-details-section {
        padding: 0 24px 60px;
    }

    .contact-details-card {
        flex-direction: column;
        padding: 32px 24px;
        gap: 28px;
    }

    .contact-details-left {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        padding-bottom: 20px;
    }

    .contact-details-title {
        font-size: 42px;
        letter-spacing: 3px;
    }

    .contact-details-right {
        gap: 20px;
    }

    .detail-row {
        gap: 14px;
    }

    .detail-icon img {
        width: 18px;
        height: 18px;
    }

    .detail-label {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .detail-value {
        font-size: 13px;
        line-height: 1.5;
    }
}

/* Booking Form Select Styling */
.booking-input-wrap select {
    background: transparent;
    border: none;
    color: var(--cream);
    font-family: sans-serif;
    font-size: 13px;
    letter-spacing: 0.5px;
    width: 100%;
    outline: none;
    cursor: pointer;
}

.booking-input-wrap select option {
    background: #1a1512;
    color: var(--cream);
}

/* Date and Time Input Styling */
.booking-input-wrap input[type="date"],
.booking-input-wrap input[type="time"] {
    background: transparent;
    border: none;
    color: var(--cream);
    font-family: sans-serif;
    font-size: 13px;
    letter-spacing: 0.5px;
    width: 100%;
    outline: none;
}

.booking-input-wrap input[type="date"]::-webkit-calendar-picker-indicator,
.booking-input-wrap input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(0.7);
    cursor: pointer;
}

/* ===========================
   BOOKING PAGE MEDIA QUERIES
   =========================== */

@media (max-width: 768px) {

    /* ===== BOOKING SECTION ===== */
    .booking-section {
        grid-template-columns: 1fr;
        padding: 40px 24px 60px;
        gap: 24px;
    }

    /* ===== LEFT: SERVICE CARD ===== */
    .booking-service-card {
        padding: 28px 24px;
    }

    .booking-service-eyebrow {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .booking-service-name {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .booking-service-desc {
        font-size: 13px;
        line-height: 1.6;
    }

    .booking-service-img {
        height: 240px;
        margin-bottom: 20px;
    }

    .booking-price {
        font-size: 32px;
    }

    .booking-price-label {
        font-size: 9px;
    }

    .booking-time {
        font-size: 10px;
    }

    .learn-more-btn {
        font-size: 12px;
        padding: 8px 20px;
    }

    /* ===== RIGHT: FORM CARD ===== */
    .booking-form-card {
        padding: 28px 24px;
    }

    .booking-form-title {
        font-size: 36px;
        letter-spacing: 4px;
    }

    .booking-form-sub {
        font-size: 10px;
        letter-spacing: 1px;
    }

    /* ===== FORM ROWS ===== */
    .booking-form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .booking-form-group {
        gap: 6px;
    }

    .booking-form-group label {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .booking-input-wrap {
        padding: 10px 12px;
    }

    .booking-input-wrap input,
    .booking-input-wrap select {
        font-size: 12px;
    }

    .booking-textarea-wrap {
        padding: 10px 12px;
    }

    .booking-textarea-wrap textarea {
        font-size: 12px;
        min-height: 60px;
    }

    .booking-char-count {
        font-size: 9px;
    }

    .booking-submit-btn {
        font-size: 16px;
        letter-spacing: 3px;
        padding: 14px;
    }
}
/* ===========================
   ADMIN DASHBOARD MOBILE
   =========================== */

@media (max-width: 768px) {

    /* ===== LOGIN SCREEN ===== */
    #loginScreen::before {
        font-size: 60vw;
    }

    .login-card {
        padding: 36px 24px 32px;
        margin: 16px;
        max-width: 100%;
    }

    .login-logo-row {
        gap: 10px;
        margin-bottom: 24px;
    }

    .login-logo {
        width: 44px;
        height: 44px;
    }

    .login-brand {
        font-size: 18px;
    }

    .login-brand span {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .login-title {
        font-size: 24px;
    }

    .login-sub {
        font-size: 12px;
        margin-bottom: 24px;
    }

    .form-group {
        margin-bottom: 14px;
    }

    .form-group input {
        font-size: 14px;
        padding: 10px 14px;
    }

    .login-btn {
        font-size: 16px;
        padding: 12px;
        letter-spacing: 2px;
    }

    /* ===== DASHBOARD HEADER ===== */
    header {
        padding: 0 16px;
        height: 56px;
    }

    .header-left {
        gap: 10px;
    }

    .logo {
        width: 32px;
        height: 32px;
    }

    .brand-name {
        font-size: 14px;
        letter-spacing: 1px;
    }

    nav ul {
        gap: 16px;
    }

    nav ul li a {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .admin-badge {
        font-size: 9px;
        padding: 3px 8px;
        display: none;
    }

    .logout-btn {
        font-size: 10px;
        padding: 5px 10px;
    }

    /* ===== ADMIN SECTION ===== */
    .admin-section {
        padding: 24px 16px;
    }

    .admin-header {
        margin-bottom: 20px;
    }

    .admin-title {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .admin-sub {
        font-size: 12px;
    }

    /* ===== TABLE ===== */
    .table-container {
        border: none;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }

    table {
        min-width: 700px;
    }

    th {
        font-size: 12px;
        padding: 10px 12px;
        letter-spacing: 1px;
    }

    td {
        padding: 10px 12px;
        font-size: 13px;
    }

    .b-date {
        font-size: 13px;
    }

    .b-time {
        font-size: 11px;
    }

    .type-badge {
        font-size: 9px;
        padding: 3px 8px;
    }

    .hairstyle-badge {
        font-size: 11px;
        padding: 3px 8px;
    }

    .hairstyle-badge img {
        width: 20px;
        height: 20px;
    }

    .action-buttons {
        gap: 6px;
        flex-direction: column;
    }

    .edit-btn, .delete-btn {
        font-size: 11px;
        padding: 5px 10px;
        letter-spacing: 0.5px;
    }

    /* ===== MODAL ===== */
    .modal-box {
        padding: 24px;
        margin: 16px;
        max-width: 100%;
    }

    .modal-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .modal-box .form-group {
        margin-bottom: 14px;
    }

    .modal-box .form-group input,
    .modal-box .form-group select {
        font-size: 14px;
        padding: 10px 12px;
    }

    .modal-actions {
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }

    .cancel-btn, .save-btn {
        font-size: 14px;
        padding: 10px;
        letter-spacing: 1px;
    }
}
.hamburger-btn {
    display: none;
}

@media (max-width: 768px) {
    .hamburger-btn {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 8px;   
    }

    .hamburger-btn span {
        display: block;
        width: 24px;
        height: 2px;
        background-color: var(--cream);
        transition: all 0.3s;
    }
}
/* Demo Reel Styling */
.project-demo {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #333;
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.project-demo h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #fff;
    text-align: center;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #000;
    border: 1px solid #444;
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
#video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
}

#video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
:root {
            --red: #e03030;
            --red-dark: #b82020;
            --bg: #0e0e0e;
            --surface: #181818;
            --surface2: #222222;
            --border: #2e2e2e;
            --text: #f0f0f0;
            --muted: #888;
            --font-display: 'Bebas Neue', sans-serif;
            --font-body: 'Barlow', sans-serif;
        }

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

        body {
            background: var(--bg);
            color: var(--text);
            font-family: var(--font-body);
            min-height: 100vh;
        }

        /* ===== LOGIN SCREEN ===== */
        #loginScreen {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            background: var(--bg);
            position: relative;
            overflow: hidden;
        }

        #loginScreen::before {
            content: '3KG';
            position: absolute;
            font-family: var(--font-display);
            font-size: 40vw;
            color: rgba(255,255,255,0.015);
            user-select: none;
            pointer-events: none;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            white-space: nowrap;
        }

        .login-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-top: 3px solid var(--red);
            padding: 48px 40px 40px;
            width: 100%;
            max-width: 420px;
            position: relative;
            z-index: 1;
            animation: slideUp 0.4s ease;
        }

        @keyframes slideUp {
            from { opacity: 0; transform: translateY(20px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        .login-logo-row {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 32px;
        }

        .login-logo {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--red);
        }

        .login-brand {
            font-family: var(--font-display);
            font-size: 22px;
            letter-spacing: 2px;
            color: var(--text);
            line-height: 1.1;
        }

        .login-brand span {
            display: block;
            font-family: var(--font-body);
            font-size: 11px;
            letter-spacing: 3px;
            color: var(--red);
            font-weight: 600;
            text-transform: uppercase;
        }

        .login-title {
            font-family: var(--font-display);
            font-size: 30px;
            letter-spacing: 2px;
            margin-bottom: 6px;
            color: var(--text);
        }

        .login-title em {
            font-style: normal;
            color: var(--red);
        }

        .login-sub {
            font-size: 13px;
            color: var(--muted);
            margin-bottom: 32px;
        }

        .form-group {
            margin-bottom: 18px;
        }

        .form-group label {
            display: block;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--muted);
            margin-bottom: 8px;
        }

        .form-group input {
            width: 100%;
            background: var(--surface2);
            border: 1px solid var(--border);
            color: var(--text);
            font-family: var(--font-body);
            font-size: 15px;
            padding: 12px 16px;
            outline: none;
            transition: border-color 0.2s;
        }

        .form-group input:focus {
            border-color: var(--red);
        }

        .input-wrapper {
            position: relative;
        }

        .toggle-pw {
            position: absolute;
            right: 14px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--muted);
            cursor: pointer;
            font-size: 14px;
            padding: 0;
            line-height: 1;
        }

        .toggle-pw:hover { color: var(--text); }

        .login-btn {
            width: 100%;
            background: var(--red);
            border: none;
            color: #fff;
            font-family: var(--font-display);
            font-size: 18px;
            letter-spacing: 3px;
            padding: 14px;
            cursor: pointer;
            margin-top: 8px;
            transition: background 0.2s, transform 0.1s;
        }

        .login-btn:hover { background: var(--red-dark); }
        .login-btn:active { transform: scale(0.98); }

        .login-btn:disabled {
            background: #555;
            cursor: not-allowed;
        }

        .login-error {
            margin-top: 14px;
            font-size: 13px;
            color: #f06060;
            text-align: center;
            min-height: 20px;
            display: none;
        }

        .login-error.show { display: block; animation: shake 0.3s ease; }

        @keyframes shake {
            0%,100% { transform: translateX(0); }
            25% { transform: translateX(-6px); }
            75% { transform: translateX(6px); }
        }

        /* ===== DASHBOARD ===== */
        #dashboard { display: none; }

      
        .header-left {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .logo {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--red);
        }

        .brand-name {
            font-family: var(--font-display);
            font-size: 20px;
            letter-spacing: 2px;
        }

       
        .header-right {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .admin-badge {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1px;
            color: var(--red);
            background: rgba(224,48,48,0.1);
            border: 1px solid rgba(224,48,48,0.3);
            padding: 4px 12px;
            text-transform: uppercase;
        }

        .logout-btn {
            background: none;
            border: 1px solid var(--border);
            color: var(--muted);
            font-family: var(--font-body);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1px;
            padding: 6px 14px;
            cursor: pointer;
            text-transform: uppercase;
            transition: all 0.2s;
        }

        .logout-btn:hover {
            border-color: var(--red);
            color: var(--red);
        }

        .admin-section {
            padding: 40px 32px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .admin-header {
            margin-bottom: 32px;
        }

        .admin-title {
            font-family: var(--font-display);
            font-size: 44px;
            letter-spacing: 3px;
            line-height: 1;
            margin-bottom: 6px;
        }

        .admin-title span { color: var(--red); }

        .admin-sub {
            font-size: 13px;
            color: var(--muted);
            letter-spacing: 1px;
        }

        .table-container {
            overflow-x: auto;
            border: 1px solid var(--border);
        }

        table {
            width: 100%;
            border-collapse: collapse;
            min-width: 900px;
        }

        thead tr {
            background: var(--surface);
            border-bottom: 2px solid var(--red);
        }

        th {
            font-family: var(--font-display);
            font-size: 14px;
            letter-spacing: 2px;
            color: var(--muted);
            padding: 14px 16px;
            text-align: left;
            white-space: nowrap;
        }

        td {
            padding: 14px 16px;
            font-size: 14px;
            border-bottom: 1px solid var(--border);
            vertical-align: middle;
        }

        tbody tr {
            background: var(--bg);
            transition: background 0.15s;
        }

        tbody tr:hover { background: var(--surface); }

        .date-time-cell { display: flex; flex-direction: column; gap: 2px; }
        .b-date { font-weight: 600; font-size: 14px; }
        .b-time { font-size: 12px; color: var(--muted); }

        .type-badge {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1px;
            padding: 4px 10px;
            text-transform: uppercase;
            white-space: nowrap;
        }

        .type-badge.home {
            background: rgba(224,48,48,0.12);
            color: #f06060;
            border: 1px solid rgba(224,48,48,0.3);
        }

        .type-badge.walk {
            background: rgba(80,200,120,0.1);
            color: #60c880;
            border: 1px solid rgba(80,200,120,0.3);
        }

        /* Hairstyle badge in admin table */
        .hairstyle-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(212, 201, 168, 0.1);
            border: 1px solid rgba(212, 201, 168, 0.2);
            color: var(--cream);
            font-size: 12px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 4px;
            white-space: nowrap;
        }

        .hairstyle-badge img {
            width: 24px;
            height: 24px;
            border-radius: 3px;
            object-fit: cover;
        }

        .action-buttons { display: flex; gap: 8px; }

        .edit-btn, .delete-btn {
            font-family: var(--font-display);
            font-size: 13px;
            letter-spacing: 1px;
            padding: 6px 14px;
            cursor: pointer;
            border: 1px solid;
            transition: all 0.2s;
        }

        .edit-btn {
            background: none;
            border-color: var(--border);
            color: var(--muted);
        }

        .edit-btn:hover {
            border-color: var(--text);
            color: var(--text);
        }

        .delete-btn {
            background: none;
            border-color: rgba(224,48,48,0.3);
            color: #f06060;
        }

        .delete-btn:hover {
            background: rgba(224,48,48,0.1);
        }

        /* ===== MODAL ===== */
        .modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.8);
            z-index: 999;
            align-items: center;
            justify-content: center;
        }

        .modal-box {
            background: var(--surface);
            border: 1px solid var(--border);
            border-top: 3px solid var(--red);
            padding: 36px;
            width: 100%;
            max-width: 520px;
            animation: slideUp 0.25s ease;
            max-height: 90vh;
            overflow-y: auto;
        }

        .modal-title {
            font-family: var(--font-display);
            font-size: 26px;
            letter-spacing: 2px;
            margin-bottom: 24px;
        }

        .modal-title span { color: var(--red); }

        .modal-box .form-group {
            margin-bottom: 16px;
        }

        .modal-box .form-group label {
            display: block;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--muted);
            margin-bottom: 8px;
        }

        .modal-box .form-group input,
        .modal-box .form-group select {
            width: 100%;
            background: var(--surface2);
            border: 1px solid var(--border);
            color: var(--text);
            font-family: var(--font-body);
            font-size: 14px;
            padding: 11px 14px;
            outline: none;
            transition: border-color 0.2s;
        }

        .modal-box .form-group input:focus,
        .modal-box .form-group select:focus {
            border-color: var(--red);
        }

        .modal-box .form-group select option {
            background: var(--surface2);
        }

        .modal-actions {
            display: flex;
            gap: 12px;
            margin-top: 24px;
        }

        .cancel-btn, .save-btn {
            flex: 1;
            font-family: var(--font-display);
            font-size: 16px;
            letter-spacing: 2px;
            padding: 12px;
            border: none;
            cursor: pointer;
            transition: all 0.2s;
        }

        .cancel-btn {
            background: var(--surface2);
            color: var(--muted);
            border: 1px solid var(--border);
        }

        .cancel-btn:hover { color: var(--text); border-color: var(--text); }

        .save-btn {
            background: var(--red);
            color: #fff;
        }

        .save-btn:hover { background: var(--red-dark); }
