/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    line-height: 1.3;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* ===== BUTTONS ===== */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #d4a4a4, #b08d8d);
    color: white;
    box-shadow: 0 4px 15px rgba(180, 141, 141, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #c69494, #a07d7d);
    box-shadow: 0 6px 20px rgba(180, 141, 141, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #b08d8d;
    border: 2px solid #b08d8d;
}

.btn-secondary:hover {
    background: #b08d8d;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* ===== NAVIGATION ===== */
.navbar {
    background: rgb(255 255 255 / 50%);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo h2 {
    color: #b08d8d;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 0;
}

.logo-image {
    height: 120px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #b08d8d;
}

.book-btn {
    background: linear-gradient(135deg, #d4a4a4, #b08d8d);
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
}

.book-btn:hover {
    background: linear-gradient(135deg, #c69494, #a07d7d);
    transform: translateY(-2px);
}

/* Mobile Navigation */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
    background: url('images/hero/lilith-hero.jpg') center center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
}

.hero-content {
    max-width: 1200px;
    margin: 0 90px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 50%;
    min-height: 60vh;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 600;

}

.hero-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===== PAGE HERO ===== */
.page-hero {
    background: linear-gradient(135deg, #f8f4f4 0%, #ede7e7 100%);
    padding: 150px 0 80px;
    text-align: center;
}

.page-hero h1 {
    color: #333;
    margin: 3rem 0 1rem 0;
}

.page-hero p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    padding: 80px 0;
}

.about {
    background: white;
    padding: 60px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    color: #b08d8d;
    margin-bottom: 2rem;
}

.about-text p {
    color: #666;
    line-height: 1.8;
}

.highlight {
    background: linear-gradient(135deg, #f8f4f4, #ede7e7);
    padding: 1.5rem;
    border-radius: 10px;
    color: #b08d8d;
    font-weight: 500;
    border-left: 4px solid #d4a4a4;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: #f8f4f4;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 3rem;
    color: #b08d8d;
    margin-bottom: 1rem;
}

.feature h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature p {
    color: #666;
    font-size: 0.95rem;
}

/* ===== SERVICES PREVIEW ===== */
.services-preview {
    background: #f8f4f4;
    text-align: center;
    padding: 60px 0;
}

.services-preview h2 {
    color: #b08d8d;
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4a4a4, #b08d8d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 600;
    color: #b08d8d;
    margin-bottom: 0.5rem;
}

.service-duration {
    color: #999;
    font-size: 0.9rem;
}

/* ===== CONTACT INFO ===== */
.contact-info {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    text-align: center;
    padding: 60px 0;
}

.contact-item {
    padding: 2rem;
}

.contact-item i {
    font-size: 3rem;
    color: #b08d8d;
    margin-bottom: 1rem;
}

.contact-item h3 {
    color: #333;
    margin-bottom: 1rem;
}

.contact-item p {
    color: #666;
}

.contact-item a {
    color: #b08d8d;
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* ===== CTA SECTION ===== */
.cta {
    background: linear-gradient(135deg, #d4a4a4, #b08d8d);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta h2 {
    margin-bottom: 1rem;
    color: white;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta .btn-primary {
    background: white;
    color: #b08d8d;
}

.cta .btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* ===== SERVICES PAGE ===== */
.service-category {
    margin-bottom: 4rem;
}

.service-category h2 {
    color: #b08d8d;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-category h2 i {
    font-size: 2rem;
}

.category-description {
    font-style: italic;
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.service-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #d4a4a4;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h3 {
    margin-bottom: 0;
    color: #333;
    flex: 1;
    min-width: 200px;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 600;
    color: #b08d8d;
}

.service-price span {
    font-size: 0.8rem;
    color: #999;
}

.service-duration {
    display: inline-block;
    background: #f0f0f0;
    color: #666;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.service-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Service Item Variations */
.service-item.coming-soon {
    opacity: 0.8;
    border-left-color: #999;
}

.coming-soon-badge {
    background: #999;
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-size: 0.7rem;
    margin-left: 0.5rem;
}

.service-item.special {
    border-left-color: #ff6b6b;
}

.service-item.package {
    border-left-color: #4ecdc4;
    background: linear-gradient(135deg, #f8fffe, #f0fffe);
}

.service-item.free {
    border-left-color: #45b7d1;
    background: linear-gradient(135deg, #f0f9ff, #e6f7ff);
}

.service-item.promo {
    border-left-color: #f39c12;
    background: linear-gradient(135deg, #fffaf0, #fff5e6);
}

/* ===== CONTACT PAGE ===== */
.contact-content {
    background: #f8f4f4;
}

.contact-grid-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info-section h2,
.contact-form-section h2 {
    color: #b08d8d;
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contact-detail i {
    font-size: 1.5rem;
    color: #b08d8d;
    margin-top: 0.2rem;
}

.contact-detail h3 {
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 1.2rem;
}

.contact-detail p {
    color: #666;
    margin-bottom: 0;
}

.book-link {
    color: #b08d8d;
    font-weight: 500;
    text-decoration: underline;
}

/* Salon Hours */
.salon-hours {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.salon-hours h3 {
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
}

.hours-grid {
    display: grid;
    gap: 0.5rem;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.hour-row:last-child {
    border-bottom: none;
}

.day {
    font-weight: 500;
    color: #333;
}

.time {
    color: #666;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b08d8d;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Alerts */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: white;
}

.map-section h2 {
    text-align: center;
    color: #b08d8d;
    margin-bottom: 3rem;
}

.map-placeholder {
    background: #f8f4f4;
    padding: 4rem 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px dashed #d4a4a4;
}

.map-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.map-info i {
    font-size: 3rem;
    color: #b08d8d;
}

.map-info h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.map-info p {
    color: #666;
    margin-bottom: 1rem;
}

/* ===== FOOTER ===== */
.footer {
    background: #333;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #d4a4a4;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #d4a4a4;
}

.footer-section i {
    width: 20px;
    color: #d4a4a4;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #ccc;
    margin-bottom: 0;
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        width: 100%;
        text-align: center;
        align-items: center;
        margin: auto;
    }

    .hero {
        background-attachment: scroll;
        background-position: 70% center;
    }

    .hero-title {
        font-size: 2.5rem;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .hero-subtitle {
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    }


    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

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

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

    .contact-grid-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }


    .hero-buttons {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .map-info {
        flex-direction: column;
        text-align: center;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
        margin-top: 30px;
    }

    .logo-image {
        height: 50px;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .nav-container {
        padding: 1rem 2rem;
    }

    .service-item,
    .contact-detail,
    .contact-form {
        padding: 1.5rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .logo-image {
        height: 80px;
        max-width: 180px;
    }
}

/* --- Gallery Masonry Display --- */
.gallery-wrapper {
    padding: 4rem 1rem;
}

.masonry-grid {
    column-count: 3;
    column-gap: 1.5rem;
}

.masonry-item {
    display: inline-block;
    width: 100%;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
    margin-bottom: 1.5rem;
}

.masonry-item img {
    width: 100%;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.masonry-item img:hover {
    transform: scale(1.02);
}

@media (max-width: 900px) {
    .masonry-grid {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .masonry-grid {
        column-count: 1;
    }
}