@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;600;700&display=swap');

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

:root {
    --black: #0A0A0A;
    --dark: #111111;
    --gray: #1E1E1E;
    --gold: #C41830;
    --gold-light: #E8506A;
    --white: #F0F0F0;
    --text-muted: #777;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
}

/* ===== NAVBAR ===== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(196, 24, 48, 0.1);
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: var(--white);
    letter-spacing: 4px;
}

.logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-cta {
    padding: 10px 25px;
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.nav-cta:hover {
    background: var(--gold-light);
}

/* ===== HERO ===== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to right, rgba(8,8,8,0.95) 45%, rgba(8,8,8,0.55) 100%),
                url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?w=1600&h=900&fit=crop') center/cover no-repeat;
}

.hero-bg-lines {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-bg-lines .line {
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(196, 24, 48, 0.1), transparent);
    animation: lineMove 8s ease-in-out infinite;
}

.hero-bg-lines .line:nth-child(1) { left: 20%; animation-delay: 0s; }
.hero-bg-lines .line:nth-child(2) { left: 40%; animation-delay: 2s; }
.hero-bg-lines .line:nth-child(3) { left: 60%; animation-delay: 4s; }
.hero-bg-lines .line:nth-child(4) { left: 80%; animation-delay: 6s; }

@keyframes lineMove {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

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

.hero-line {
    width: 80px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 30px;
    animation: expandLine 1s ease-out 0.3s backwards;
}

@keyframes expandLine {
    from { width: 0; }
    to { width: 80px; }
}

.hero-tag {
    font-size: 0.8rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 25px;
    animation: fadeIn 1s ease-out 0.5s backwards;
}

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

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 6rem;
    line-height: 0.95;
    letter-spacing: 5px;
    margin-bottom: 25px;
    animation: fadeIn 1s ease-out 0.7s backwards;
}

.hero h1 span {
    display: block;
    color: var(--gold);
    font-size: 7rem;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 450px;
    margin-bottom: 40px;
    font-weight: 300;
    animation: fadeIn 1s ease-out 0.9s backwards;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    animation: fadeIn 1s ease-out 1.1s backwards;
}

.btn-gold {
    display: inline-block;
    padding: 18px 45px;
    background: var(--gold);
    color: var(--black);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-gold:hover::before {
    left: 100%;
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(196, 24, 48, 0.3);
}

.btn-ghost {
    display: inline-block;
    padding: 18px 45px;
    border: 1px solid rgba(196, 24, 48, 0.3);
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.btn-ghost:hover {
    border-color: var(--gold);
    background: rgba(196, 24, 48, 0.1);
}

/* Scissors animation */
.scissors-decor img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.scissors-decor {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.15;
    animation: scissorsRotate 10s ease-in-out infinite;
}

@keyframes scissorsRotate {
    0%, 100% { transform: translateY(-50%) rotate(0deg); }
    25% { transform: translateY(-50%) rotate(15deg); }
    75% { transform: translateY(-50%) rotate(-15deg); }
}

/* ===== SECTIONS ===== */
section {
    padding: 120px 60px;
}

.section-header {
    margin-bottom: 80px;
}

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

.section-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    color: rgba(196, 24, 48, 0.1);
    line-height: 1;
    margin-bottom: -20px;
}

.section-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    letter-spacing: 3px;
}

.section-header h2 span {
    color: var(--gold);
}

.gold-line {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin: 20px auto;
}

.section-header:not(.center) .gold-line {
    margin: 20px 0;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 500px;
    line-height: 1.8;
}

.section-header.center p {
    margin: 0 auto;
}

/* ===== SERVICES ===== */
.services {
    background: var(--dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1300px;
    margin: 0 auto;
}

.service-card {
    padding: 50px 35px;
    border: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    cursor: pointer;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: width 0.4s ease;
}

.service-card:hover::after {
    width: 60%;
}

.service-card:hover {
    background: var(--gray);
    transform: translateY(-5px);
}

.service-card:hover .service-icon {
    transform: scale(1.3);
    color: var(--gold);
}

.service-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    transition: all 0.4s ease;
}

.service-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.service-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--gold);
}

/* ===== GALLERY ===== */
.gallery {
    background: var(--black);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background: var(--gray);
    cursor: pointer;
}

.gallery-item:first-child {
    grid-row: span 2;
}

.gallery-item > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.55) grayscale(0.3);
    transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.5s ease;
}

.gallery-item:hover > img {
    transform: scale(1.07);
    filter: brightness(0.35) grayscale(0);
}

.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 28px;
    background: linear-gradient(to top, rgba(196,24,48,0.85) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.gallery-overlay h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: 3px;
    text-align: center;
}

.gallery-overlay p {
    font-size: 0.78rem;
    color: rgba(240,240,240,0.75);
    letter-spacing: 1px;
    text-align: center;
    margin-top: 4px;
}

/* ===== PRICING ===== */
.pricing {
    background: var(--dark);
}

.pricing-list {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.pricing-item:hover {
    padding-left: 15px;
    border-bottom-color: var(--gold);
}

.pricing-item:hover .pricing-name {
    color: var(--gold);
}

.pricing-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.pricing-emoji {
    flex-shrink: 0;
}

.pricing-emoji img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.pricing-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 2px;
    transition: color 0.3s;
}

.pricing-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.pricing-dots {
    flex: 1;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
    margin: 0 20px;
}

.pricing-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--gold);
    white-space: nowrap;
}

/* ===== TEAM ===== */
.team {
    background: var(--black);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-card {
    text-align: center;
    padding: 40px 30px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s ease;
}

.team-card:hover {
    border-color: rgba(196, 24, 48, 0.3);
    transform: translateY(-10px);
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 25px;
    background: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-avatar::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 1px dashed var(--gold);
    animation: spinSlow 12s linear infinite;
}

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.team-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.team-card .role {
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.team-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== BOOKING ===== */
.booking {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.booking::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(196, 24, 48, 0.05);
    border-radius: 50%;
    top: -250px;
    right: -250px;
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.booking-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.booking-info h3 span {
    color: var(--gold);
}

.booking-info p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

.booking-hours {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.hour-item {
    padding: 20px;
    background: var(--gray);
    border-left: 3px solid var(--gold);
}

.hour-item strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.hour-item span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.booking-form {
    padding: 50px;
    border: 1px solid rgba(196, 24, 48, 0.2);
}

.booking-form h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-align: center;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background: var(--black);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s;
}

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

.form-group select {
    -webkit-appearance: none;
    cursor: pointer;
}

.form-group select option {
    background: var(--black);
}

.booking-form .btn-gold {
    width: 100%;
    text-align: center;
    font-family: 'Inter', sans-serif;
    border: none;
    cursor: pointer;
}

/* ===== FOOTER ===== */
footer {
    background: var(--black);
    padding: 60px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 4px;
}

.footer-logo span {
    color: var(--gold);
}

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

.footer-center p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
}

.social-link img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.social-link:hover img {
    filter: brightness(0);
}

.social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px);
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    nav {
        padding: 15px 25px;
    }

    .nav-links, .nav-cta {
        display: none;
    }

    .hero-content {
        padding: 0 25px;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero h1 span {
        font-size: 4rem;
    }

    section {
        padding: 80px 25px;
    }

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

    .gallery-grid {
        grid-template-rows: auto;
    }

    .gallery-item:first-child {
        grid-row: auto;
    }

    .gallery-item {
        height: 200px;
    }

    .booking-wrapper {
        grid-template-columns: 1fr;
    }

    .booking-hours {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .pricing-item {
        flex-wrap: wrap;
        gap: 10px;
    }

    .pricing-dots {
        display: none;
    }
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}
#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.pl-scissors {
    animation: plScissors 0.9s ease-in-out infinite alternate;
}
.pl-scissors svg {
    width: 72px;
    height: 72px;
}
@keyframes plScissors {
    0%   { transform: rotate(-25deg) scale(0.95); }
    100% { transform: rotate(25deg)  scale(1.05); }
}
.pl-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--white);
    letter-spacing: 8px;
    margin-top: 20px;
}
.pl-name span { color: var(--gold); }
.pl-bar {
    width: 180px;
    height: 2px;
    background: rgba(196, 24, 48, 0.15);
    margin-top: 14px;
    overflow: hidden;
}
.pl-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    animation: plFill 1.6s ease-out forwards;
    width: 0;
}
@keyframes plFill { to { width: 100%; } }


