/* ==========================================================================
   CSS Variables & Base Reset
   ========================================================================== */

   :root {
    /* Colors */
    --clr-bg: #0A0A0A;
    --clr-surface: #121212;
    --clr-surface-light: #1A1A1A;
    --clr-text-main: #F4F4F5;
    --clr-text-muted: #A1A1AA;
    --clr-accent: #E50914; /* Deep Blood Red */
    --clr-accent-hover: #b80710;
    --clr-border: #333333;

    /* Typography */
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-script: 'Cinzel', serif;

    /* Spacing & Layout */
    --border-radius: 4px; /* Minimalist sharp edges */
    --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --section-padding: 5rem 0;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--clr-bg);
    color: var(--clr-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.script-font {
    font-family: var(--font-script);
    text-transform: none;
    font-style: italic;
    color: var(--clr-accent);
    letter-spacing: 2px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: var(--section-padding);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header p {
    color: var(--clr-text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.highlight {
    color: var(--clr-accent);
}

.text-center {
    text-align: center;
}

.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--clr-accent);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--clr-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--clr-text-main);
    color: var(--clr-text-main);
}

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

.full-width {
    width: 100%;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo span {
    color: var(--clr-accent);
    font-weight: 300;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-text-main);
    position: relative;
}

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

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

.nav-link.cta-btn {
    border: 1px solid var(--clr-accent);
    padding: 8px 16px;
    color: var(--clr-accent);
    border-radius: var(--border-radius);
}

.nav-link.cta-btn::after {
    display: none;
}

.nav-link.cta-btn:hover {
    background-color: var(--clr-accent);
    color: #fff;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--clr-text-main);
    z-index: 1001;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Basic parallax setup for js to pick up */
    transform: scale(1.1);
    transition: transform 0.1s linear;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(10,10,10,0.6) 100%);
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.hero-content .script-font {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.main-title {
    font-size: 5vw;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    line-height: 1.1;
}

.hero-content .subtitle {
    font-size: 1.2rem;
    color: var(--clr-text-muted);
    margin-bottom: 2.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.social-links-hero {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.social-links-hero a {
    color: var(--clr-text-main);
    font-size: 1.5rem;
    opacity: 0.7;
}

.social-links-hero a:hover {
    opacity: 1;
    color: var(--clr-accent);
    transform: scale(1.1);
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 2;
}

.scroll-down a {
    color: var(--clr-text-main);
    font-size: 1.5rem;
    opacity: 0.5;
}

.scroll-down a:hover {
    opacity: 1;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-7px); }
}

/* ==========================================================================
   About Section
   ========================================================================== */

.about {
    background-color: var(--clr-surface);
}

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

.about-img {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.about-img::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-top: 3px solid var(--clr-accent);
    border-left: 3px solid var(--clr-accent);
    z-index: 1;
}

.about-img img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    filter: grayscale(80%) contrast(1.2);
    transition: filter var(--transition);
}

.about-img:hover img {
    filter: grayscale(0%) contrast(1.1);
}

.about-text h3 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    margin-top: -1rem;
}

.about-text p {
    color: var(--clr-text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.specialty-tag {
    padding: 8px 16px;
    background-color: var(--clr-surface-light);
    border: 1px solid var(--clr-border);
    border-radius: 20px;
    font-size: 0.9rem;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    color: var(--clr-text-muted);
    transition: var(--transition);
}

.specialty-tag:hover {
    border-color: var(--clr-accent);
    color: var(--clr-text-main);
    background-color: rgba(229, 9, 20, 0.1);
}

/* ==========================================================================
   Portfolio / Gallery
   ========================================================================== */

.portfolio {
    background-color: var(--clr-bg);
}

.filter-btns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    background: transparent;
    border: none;
    color: var(--clr-text-muted);
    font-family: var(--font-heading);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    padding: 5px 10px;
    position: relative;
    transition: var(--transition);
}

.filter-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10px;
    width: 0;
    height: 2px;
    background-color: var(--clr-accent);
    transition: width 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
    color: var(--clr-text-main);
}

.filter-btn.active::after, .filter-btn:hover::after {
    width: calc(100% - 20px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    aspect-ratio: 1/1;
    cursor: pointer;
}

.gallery-item img, .gallery-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: grayscale(40%);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover img, .gallery-item:hover .gallery-video {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay .category {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transform: translateY(20px);
    transition: transform 0.4s ease;
    border: 1px solid var(--clr-accent);
    padding: 8px 15px;
}

.gallery-item:hover .gallery-overlay .category {
    transform: translateY(0);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.9);
    z-index: 5;
    pointer-events: none;
    transition: opacity 0.3s ease;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

.gallery-item.is-playing .video-play-btn {
    opacity: 0;
}

.gallery-item.is-playing .gallery-video {
    filter: grayscale(0%);
}

/* ==========================================================================
   Booking / Contact Section
   ========================================================================== */

.booking {
    background-color: var(--clr-surface);
}

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

.booking-info p {
    color: var(--clr-text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 20px;
    background-color: var(--clr-surface-light);
    border: 1px solid var(--clr-border);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.contact-card i {
    font-size: 2.5rem;
}

.contact-card.whatsapp i { color: #25D366; }
.contact-card.instagram i { 
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.contact-card.facebook i { color: #1877F2; }
.contact-card.tiktok i { 
    color: #fff;
    text-shadow: 2px 2px 0px #ff0050, -2px -2px 0px #00f2fe;
}

.contact-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.contact-card p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.contact-card:hover {
    border-color: var(--clr-accent);
    transform: translateX(5px);
}

.working-hours h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.working-hours h3 i {
    color: var(--clr-accent);
}

.working-hours ul li {
    color: var(--clr-text-muted);
    padding: 8px 0;
    border-bottom: 1px solid var(--clr-border);
}

.working-hours ul li:last-child {
    border-bottom: none;
}

.booking-form-wrapper {
    background-color: var(--clr-surface-light);
    padding: 3rem;
    border-radius: var(--border-radius);
    border-top: 4px solid var(--clr-accent);
}

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

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

.form-group.half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group input {
    width: 100%;
    padding: 15px;
    background-color: var(--clr-bg);
    border: 1px solid var(--clr-border);
    color: var(--clr-text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: 4px;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--clr-accent);
}

/* ==========================================================================
   Services Section
   ========================================================================== */

.services {
    background-color: var(--clr-bg);
}

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

.service-card {
    background-color: var(--clr-surface);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid transparent;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--clr-border);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.service-card i {
    font-size: 3rem;
    color: var(--clr-accent);
    margin-bottom: 1.5rem;
}

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

.service-card p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */

.testimonials {
    background-color: var(--clr-surface);
    overflow: hidden;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden; /* For smooth swiping/sliding in JS */
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    min-width: 100%;
    padding: 2rem;
    text-align: center;
}

.quote-icon {
    font-size: 3rem;
    color: var(--clr-surface-light);
    margin-bottom: 1.5rem;
}

.review-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--clr-text-main);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.client-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.stars {
    color: #FFD700;
    font-size: 0.9rem;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.faq-section {
    background-color: var(--clr-bg);
}

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

.faq-item {
    background-color: var(--clr-surface);
    border: 1px solid var(--clr-border);
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color var(--transition);
}

.faq-question:hover {
    background-color: var(--clr-surface-light);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: none;
}

.faq-question i {
    color: var(--clr-accent);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: var(--clr-surface-light);
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    /* max-height handled in JS or via large pixel value here */
    max-height: 500px;
}

.faq-answer p {
    color: var(--clr-text-muted);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    background-color: #050505;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--clr-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--clr-text-muted);
    margin: 1.5rem 0;
    max-width: 300px;
}

.social-links-footer {
    display: flex;
    gap: 1rem;
}

.social-links-footer a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--clr-surface);
    border-radius: 50%;
    color: var(--clr-text-main);
    transition: var(--transition);
}

.social-links-footer a:hover {
    background-color: var(--clr-accent);
    transform: translateY(-3px);
}

.footer-links h3, .footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-links h3::after, .footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--clr-accent);
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

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

.footer-links ul li a:hover {
    color: var(--clr-accent);
    padding-left: 5px;
}

.footer-contact ul li {
    color: var(--clr-text-muted);
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact ul li i {
    color: var(--clr-accent);
    margin-top: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--clr-border);
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

/* ==========================================================================
   Animations & Transitions (Reveal)
   ========================================================================== */

.reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.reveal-up {
    transform: translateY(50px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-up.active, .reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translate(0);
}

.fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
}

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

/* ==========================================================================
   Media Queries (Mobile & Tablet)
   ========================================================================== */

@media (max-width: 992px) {
    .main-title { font-size: 4rem; }
    
    .about-grid { gap: 2rem; }
    .about-text h3 { font-size: 2.5rem; }
    
    .booking-grid { gap: 2rem; }
    .booking-form-wrapper { padding: 2rem; }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section-padding { padding: 4rem 0; }
    .section-title { font-size: 2rem; }
    
    .menu-toggle { display: block; }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: var(--clr-surface);
        padding-top: 80px;
        transition: 0.4s ease-in-out;
        box-shadow: -5px 0 15px rgba(0,0,0,0.5);
    }
    
    .nav.nav-open {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .about-grid, .booking-grid {
        grid-template-columns: 1fr;
    }
    
    .about-img {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .form-group.half {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 480px) {
    .main-title { font-size: 3rem; }
    .hero-content .script-font { font-size: 2rem; }
    
    .hero-btns {
        flex-direction: column;
    }
    
    .filter-btns { gap: 0.5rem; }
    .filter-btn { font-size: 0.9rem; }
}

/* ==========================================================================
   Lightbox / Image Modal
   ========================================================================== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    animation: zoomIn 0.3s;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 30px rgba(0,0,0,0.8);
}

@keyframes zoomIn {
    from {transform: scale(0.8); opacity: 0}
    to {transform: scale(1); opacity: 1}
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2001;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--clr-accent);
    text-decoration: none;
    cursor: pointer;
}
