/* Beauty Lounge Theme - Rose Gold & Blush */
:root {
    --primary-color: #e0a3b4;
    --primary-hover: #d48fa3;
    --secondary-color: #b59aa3;
    --bg-dark: #1a1115;
    --bg-darker: #0d0a0b;
    --bg-light: #241820;
    --text-light: #f5ecef;
    --text-muted: #b59aa3;
    --accent-gold: #d4af37;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-hover);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-dark);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

.btn-outline-light {
    border-color: var(--text-light);
    color: var(--text-light);
    padding: 12px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: var(--text-light);
    color: var(--bg-dark);
}

/* Navbar */
.navbar {
    background: transparent;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(26, 17, 21, 0.95);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.navbar-brand {
    display: flex;
    flex-direction: column;
}

.brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
}

.brand-sub {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--primary-color);
    text-transform: uppercase;
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin: 0 15px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(rgba(26, 17, 21, 0.7), rgba(26, 17, 21, 0.8)), url('/uploads/media/2026/07/bl-salon2.jpg') center center/cover no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23e0a3b4" stroke-width="0.5" opacity="0.1"/></svg>') center center;
    background-size: 200px 200px;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(13, 10, 11, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--primary-color);
    letter-spacing: 5px;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-text {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Page Header */
.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(rgba(26, 17, 21, 0.7), rgba(26, 17, 21, 0.8)), url('/uploads/media/2026/07/bl-salon2.jpg') center center/cover no-repeat;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.page-header p {
    color: var(--text-muted);
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin-top: 15px;
}

.text-center .section-title::after {
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Service Cards */
.service-card {
    background: var(--bg-light);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(224, 163, 180, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(224, 163, 180, 0.15);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 2rem;
    color: var(--bg-dark);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-muted);
}

/* Welcome Section */
.welcome-section {
    background: var(--bg-darker);
}

.welcome-image .image-placeholder,
.passion-image .image-placeholder {
    height: 400px;
    background: var(--bg-light);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--primary-color);
}

.image-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.image-placeholder span {
    color: var(--text-muted);
}

.image-placeholder.dark {
    background: var(--bg-dark);
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Services Section */
.services-section {
    background: var(--bg-dark);
}

/* Passion Section */
.passion-section {
    background: var(--bg-darker);
}

/* Book Section */
.book-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: var(--bg-dark);
}

.book-section .section-title {
    color: var(--bg-dark);
}

.book-section .section-title::after {
    background: var(--bg-dark);
}

.book-section p {
    color: var(--bg-light);
}

.book-section .btn-primary {
    background: var(--bg-dark);
    border-color: var(--bg-dark);
    color: var(--text-light);
}

.book-section .btn-primary:hover {
    background: var(--bg-darker);
    border-color: var(--bg-darker);
}

/* Visit Section */
.visit-section {
    background: var(--bg-dark);
}

.visit-info {
    margin-top: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.info-item strong {
    display: block;
    margin-bottom: 5px;
    color: var(--text-light);
}

.info-item p {
    color: var(--text-muted);
    margin: 0;
}

/* Contact Form */
.contact-form {
    margin-top: 30px;
}

.contact-form .form-control {
    background: var(--bg-light);
    border: 1px solid rgba(224, 163, 180, 0.2);
    color: var(--text-light);
    padding: 15px;
    border-radius: 10px;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(224, 163, 180, 0.25);
    background: var(--bg-light);
    color: var(--text-light);
}

.contact-form .form-control::placeholder {
    color: var(--text-muted);
}

/* Coverage Section */
.coverage-section {
    background: var(--bg-darker);
    padding: 80px 0;
}

.coverage-subtitle {
    color: var(--text-muted);
    font-weight: 300;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-color);
}

.social-icon:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
}

/* Footer */
footer {
    background: var(--bg-darker);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(224, 163, 180, 0.1);
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-brand .brand-text {
    font-size: 1.5rem;
}

.footer-links h5 {
    color: var(--text-light);
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(224, 163, 180, 0.1);
    text-align: center;
    color: var(--text-muted);
}

/* Price List */
.price-category {
    background: var(--bg-light);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

.category-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: var(--bg-dark);
    border-radius: 10px;
}

.service-name {
    font-weight: 500;
}

.service-price {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Booking Form */
.booking-section {
    background: var(--bg-dark);
}

.booking-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(224, 163, 180, 0.1);
}

.step-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.step-number {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.service-category {
    margin-bottom: 25px;
}

.category-name {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-option {
    display: flex;
    align-items: center;
    padding: 15px;
    background: var(--bg-dark);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-option:hover {
    border-color: var(--primary-color);
}

.service-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    accent-color: var(--primary-color);
}

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

.service-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.slot-picker {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.slot-btn {
    padding: 10px;
    background: var(--bg-dark);
    border: 1px solid rgba(224, 163, 180, 0.2);
    border-radius: 8px;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slot-btn:hover:not(:disabled) {
    border-color: var(--primary-color);
}

.slot-btn.selected {
    background: var(--primary-color);
    color: var(--bg-dark);
    border-color: var(--primary-color);
}

.slot-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Admin Styles */
.admin-sidebar {
    background: var(--bg-darker);
    min-height: 100vh;
    padding: 20px;
}

.admin-content {
    padding: 30px;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 200px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}
