/* ==========================================================================
   Manes & Manis - Main Stylesheet
   Production-ready CSS with clean organization
   ========================================================================== */

/* ==========================================================================
   Base Styles & Reset
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #5D4037;
    background: linear-gradient(135deg, #F9F4F1 0%, #F2E8E1 100%);
    min-height: 100vh;
}

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

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    line-height: 1.2;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #C8A882, #E4C5A0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(200, 168, 130, 0.2);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-image {
    height: 50px;
    width: auto;
    border-radius: 8px;
    filter: brightness(1.5) contrast(1.3) saturate(1.2);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 600;
    background: linear-gradient(45deg, #C8A882, #E4C5A0, #F2D7B3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #5D4037;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover, 
.nav-links a.active {
    color: #C8A882;
    transform: translateY(-2px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(45deg, #C8A882, #E4C5A0);
    transition: width 0.3s ease;
}

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

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    margin-top: 80px;
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(200, 168, 130, 0.1) 0%, rgba(228, 197, 160, 0.2) 50%, rgba(242, 215, 179, 0.1) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.hero-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(200, 168, 130, 0.8), rgba(228, 197, 160, 0.6));
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: left;
    max-width: 600px;
    margin: 0 auto 0 0;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #E4C5A0, #F2D7B3, #C8A882);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0,0,0,0.8), 0 0 20px rgba(0,0,0,0.5);
    letter-spacing: 4px;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: #E4C5A0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8), 0 0 15px rgba(0,0,0,0.5);
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #F2D7B3;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8), 0 0 15px rgba(0,0,0,0.5);
    font-weight: 500;
}

.cta-button {
    background: linear-gradient(45deg, #C8A882, #E4C5A0);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(200, 168, 130, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(200, 168, 130, 0.4);
}

/* ==========================================================================
   Sections
   ========================================================================== */
.section {
    display: none;
    padding: 5rem 0;
}

.section.active {
    display: block;
}

/* ==========================================================================
   Service Categories
   ========================================================================== */
.service-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.why-choose-us {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.why-choose-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(200, 168, 130, 0.2);
    transition: all 0.3s ease;
}

.why-choose-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.why-choose-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.why-choose-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #5D4037;
    margin-bottom: 1rem;
}

.why-choose-item p {
    color: #8D6E63;
    line-height: 1.6;
}

.service-category {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    border: 1px solid rgba(200, 168, 130, 0.2);
}

.service-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.service-category h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #5D4037;
}

.service-category p {
    color: #8D6E63;
    line-height: 1.6;
}

/* ==========================================================================
   Stats Section
   ========================================================================== */
.stats-section {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 4rem 0;
    margin: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, #C8A882, #E4C5A0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #8D6E63;
    font-weight: 500;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials {
    padding: 5rem 0;
}

.testimonials h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #C8A882, #E4C5A0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(200, 168, 130, 0.2);
}

.testimonial-stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #6D4C41;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: #5D4037;
    margin-bottom: 0.5rem;
}

.testimonial-service {
    font-size: 0.9rem;
    color: #C8A882;
    font-weight: 500;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 5rem 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(200, 168, 130, 0.1), rgba(228, 197, 160, 0.1));
    cursor: pointer;
    font-weight: 600;
    color: #5D4037;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(200, 168, 130, 0.2), rgba(228, 197, 160, 0.2));
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #6D4C41;
    line-height: 1.6;
}

.faq-answer.active {
    padding: 1.5rem 2rem;
    max-height: 200px;
}

/* ==========================================================================
   Booking Section
   ========================================================================== */
.booking-section {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 5rem 0;
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.calendar-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 3rem;
    border-radius: 25px;
    margin-bottom: 3rem;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    border: 1px solid rgba(200, 168, 130, 0.2);
}

.calendar-header {
    text-align: center;
    margin-bottom: 2rem;
}

.calendar-header h3 {
    font-size: 1.8rem;
    color: #5D4037;
    margin-bottom: 1rem;
    font-weight: 300;
}

.calendar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.calendar-nav button {
    background: linear-gradient(45deg, #C8A882, #E4C5A0);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(200, 168, 130, 0.3);
}

.calendar-nav button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 168, 130, 0.4);
}

.calendar-nav h4 {
    font-size: 1.5rem;
    color: #5D4037;
    font-weight: 300;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    max-width: 400px;
    margin: 0 auto;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(200, 168, 130, 0.2);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.9rem;
}

.calendar-day:hover {
    background: linear-gradient(135deg, rgba(200, 168, 130, 0.2), rgba(228, 197, 160, 0.2));
    border-color: #C8A882;
    transform: scale(1.05);
}

.calendar-day.selected {
    background: linear-gradient(135deg, #C8A882, #E4C5A0);
    color: white;
    border-color: #C8A882;
    box-shadow: 0 4px 15px rgba(200, 168, 130, 0.4);
}

.calendar-day.unavailable {
    background: rgba(240, 240, 240, 0.8);
    color: #CCC;
    cursor: not-allowed;
    border-color: #E0E0E0;
}

.calendar-day.past {
    background: rgba(245, 245, 245, 0.8);
    color: #AAA;
    cursor: not-allowed;
    border-color: #E0E0E0;
}

/* ==========================================================================
   Booking Form
   ========================================================================== */
.booking-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    border: 1px solid rgba(200, 168, 130, 0.2);
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.booking-form.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.booking-form h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #5D4037;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #5D4037;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(200, 168, 130, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C8A882;
    box-shadow: 0 0 0 3px rgba(200, 168, 130, 0.1);
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 0.5rem;
    margin-top: 1rem;
}

.time-slot {
    padding: 10px;
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(200, 168, 130, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.time-slot:hover {
    background: linear-gradient(135deg, rgba(200, 168, 130, 0.2), rgba(228, 197, 160, 0.2));
    border-color: #C8A882;
}

.time-slot.selected {
    background: linear-gradient(135deg, #C8A882, #E4C5A0);
    color: white;
    border-color: #C8A882;
}

.submit-btn {
    background: linear-gradient(45deg, #C8A882, #E4C5A0);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(200, 168, 130, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 168, 130, 0.4);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 5rem 0;
}

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

.contact-info {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #5D4037;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #6D4C41;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    background: linear-gradient(135deg, #5D4037, #8D6E63);
    color: white;
    text-align: center;
    padding: 4rem 0 2rem;
}

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

.footer-section h4 {
    color: #F2D7B3;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 300;
}

.footer-section p {
    margin-bottom: 0.8rem;
    opacity: 0.9;
}

/* ==========================================================================
   Scroll to Top Button
   ========================================================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(45deg, #C8A882, #E4C5A0);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(200, 168, 130, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    display: none;
}

.scroll-to-top:hover {
    transform: scale(1.1);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .booking-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-categories {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
} 