/* ===== VARIABLES ===== */
:root {
    --primary-gold: #d32f2f;
    --dark-bg: #1a1a1a;
    --darker-bg: #0f0f0f;
    --light-text: #ffffff;
    --gray-text: #b0b0b0;
    --card-bg: #252525;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    display: none;
}

body {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

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

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #252525 100%);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 2px,
        rgba(211, 47, 47, 0.05) 2px,
        rgba(211, 47, 47, 0.05) 4px
    );
    animation: none;
    pointer-events: none;
}

@keyframes slideStripes {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(50px);
    }
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 1s ease-out;
    width: 100%;
    max-width: 600px;
    padding: 0 20px;
}

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

.logo {
    margin-bottom: 20px;
}

.logo a {
    display: inline-block;
    cursor: pointer;
}

.since {
    font-family: "Playfair Display", serif;
    font-size: 1rem;
    font-style: italic;
    color: var(--primary-gold);
    letter-spacing: 6px;
    margin-top: 15px;
    opacity: 1;
    font-weight: 500;
    text-transform: lowercase;
    animation: fadeInUp 1.3s ease-out 0.3s both;
    text-shadow: 0 2px 10px rgba(211, 47, 47, 0.4);
    position: relative;
}

.hero-logo {
    width: 220px;
    height: auto;
    max-width: 90vw;
    filter: drop-shadow(0 10px 30px rgba(211, 47, 47, 0.3)) brightness(1.1) contrast(1.2);
    animation: fadeInScale 1s ease-out;
    mix-blend-mode: multiply;
    background: transparent;
    transition: all 0.3s ease;
}

.logo a:hover .hero-logo {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 40px rgba(211, 47, 47, 0.5)) brightness(1.1) contrast(1.2);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.scissors {
    display: inline-block;
    animation: rotate 3s ease-in-out infinite;
}

.scissors img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(211, 47, 47, 0.4));
    mix-blend-mode: screen;
}

@keyframes rotate {
    0%,
    100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(15deg);
    }
}

.hero-logo-small {
    width: 80px;
    height: auto;
    margin: 15px 0;
    display: block;
    transition: all 0.3s ease;
}

.hero-logo-small:hover {
    transform: scale(1.05);
}

.logo h1 {
    font-family: "Playfair Display", serif;
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 8px;
    color: var(--light-text);
    margin: 20px 0;
}

.logo h1 span {
    display: block;
    color: var(--primary-gold);
    font-size: 3rem;
    letter-spacing: 12px;
    margin-top: 10px;
}

.tagline {
    font-size: 1.1rem;
    color: var(--gray-text);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.btn-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.cta-btn:hover .btn-icon,
.cta-btn:active .btn-icon {
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-5px) rotate(-10deg); }
    50% { transform: translateY(0) rotate(10deg); }
    75% { transform: translateY(-3px) rotate(-5deg); }
}

.cta-primary {
    background: linear-gradient(135deg, var(--primary-gold), #b71c1c);
    color: var(--darker-bg);
    box-shadow: 0 10px 30px rgba(255, 51, 51, 0.3);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 51, 51, 0.5);
}

.cta-secondary {
    background: transparent;
    color: var(--light-text);
    border: 2px solid var(--primary-gold);
    box-shadow: 0 5px 20px rgba(211, 47, 47, 0.2);
}

.cta-secondary .btn-icon {
    stroke: var(--primary-gold);
}

.cta-secondary:hover {
    background: var(--primary-gold);
    color: var(--darker-bg);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 51, 51, 0.4);
}

.cta-secondary:hover .btn-icon {
    stroke: var(--darker-bg);
}

.cta-tertiary {
    background: transparent;
    color: var(--light-text);
    border: 2px solid var(--primary-gold);
    box-shadow: 0 5px 20px rgba(211, 47, 47, 0.2);
}

.cta-tertiary .btn-icon {
    stroke: var(--primary-gold);
}

.cta-tertiary:hover {
    background: var(--primary-gold);
    color: var(--darker-bg);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 51, 51, 0.4);
}

.cta-tertiary:hover .btn-icon {
    stroke: var(--darker-bg);
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 60px 0;
    background: #000000;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 100px 0;
    background: #000000;
}

.about-subtitle {
    text-align: center;
    font-family: "Playfair Display", serif;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--primary-gold);
    margin-top: -40px;
    margin-bottom: 50px;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.about-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(211, 47, 47, 0.1),
        transparent
    );
    transition: left 0.5s ease;
}

.about-card:hover::before {
    left: 100%;
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(211, 47, 47, 0.2);
}

.about-card p {
    color: var(--gray-text);
    font-size: 1.05rem;
    line-height: 1.9;
    margin: 0;
}

.about-card .highlight {
    color: var(--primary-gold);
    font-weight: 600;
}

.about-card-highlight {
    text-align: center;
}

.about-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(211, 47, 47, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.about-card-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--primary-gold);
}

.about-card-highlight:hover .about-card-icon {
    background: var(--primary-gold);
    transform: scale(1.1);
}

.about-card-highlight:hover .about-card-icon svg {
    stroke: var(--darker-bg);
}

.about-card h3 {
    font-size: 1.5rem;
    color: var(--light-text);
    margin-bottom: 15px;
    font-weight: 600;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 100px 0;
    background: #000000;
}

.section-title {
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--light-text);
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: var(--primary-gold);
    margin: 20px auto 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 300px;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 51, 51, 0.1),
        transparent
    );
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(255, 51, 51, 0.2);
}

.service-icon {
    margin-bottom: 20px;
    flex-shrink: 0;
}

.service-icon svg {
    width: 60px;
    height: 60px;
    stroke: var(--primary-gold);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(255, 51, 51, 0.5));
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--light-text);
    flex-shrink: 0;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.service-card p {
    color: var(--gray-text);
    margin-bottom: 0;
    font-size: 0.95rem;
    flex-grow: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 65px;
    line-height: 1.5;
    text-align: center;
    width: 100%;
    padding: 0 10px;
}

.price {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-top: auto;
    flex-shrink: 0;
}

/* ===== REVIEWS SECTION ===== */
.reviews {
    padding: 100px 0;
    background: var(--dark-bg);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-gold);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 220px;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(211, 47, 47, 0.2);
}

.stars {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.review-text {
    color: var(--light-text);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
    flex-grow: 1;
}

.review-author {
    color: var(--gray-text);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: right;
    margin-top: auto;
}

.review-btn-container {
    text-align: center;
    margin-top: 50px;
}

.review-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: var(--primary-gold);
    color: var(--darker-bg);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(211, 47, 47, 0.3);
}

.review-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--darker-bg);
}

.review-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(211, 47, 47, 0.5);
}

/* ===== GALLERY SECTION ===== */
.gallery {
    padding: 100px 0;
    background: #000000;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    background: var(--card-bg);
}

.gallery-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    pointer-events: auto;
}


.gallery-item:not(.gallery-map)::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.gallery-item:not(.gallery-map):hover::after {
    opacity: 1;
}

.gallery-map {
    cursor: default;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9);
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(1);
}

.gallery-item:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 15px 35px rgba(211, 47, 47, 0.25);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.contact-info {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-gold);
}

@media (max-width: 768px) {
    .contact-grid {
        display: flex;
        flex-direction: column-reverse;
    }
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item .icon {
    color: var(--primary-gold);
}

.info-item .icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary-gold);
}

.tiktok-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary-gold);
    fill: none;
}

.info-item h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--light-text);
}

.info-item p {
    color: var(--gray-text);
    line-height: 1.8;
}

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

.info-item a:hover {
    color: #ff6b6b;
}

.opening-hours {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 15px;
}

.opening-hours h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--light-text);
}

.hours-list {
    margin-bottom: 30px;
}

.hour-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-text);
}

.hour-item span:first-child {
    min-width: 100px;
    font-weight: 500;
}

.hour-item .dots {
    flex: 1;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 51, 51, 0.3),
        transparent
    );
    margin: 0 15px;
}

.hour-item span:last-child {
    color: var(--primary-gold);
    font-weight: 600;
}

.hour-item.closed span:last-child {
    color: #888;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px;
    background: var(--primary-gold);
    color: var(--darker-bg);
    text-decoration: none;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.map-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--darker-bg);
}

.map-btn:hover {
    background: #d32f2f;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 51, 51, 0.3);
}

/* ===== FOOTER ===== */
footer {
    background: var(--darker-bg);
    padding: 40px 0;
    border-top: 1px solid rgba(255, 51, 51, 0.2);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: transparent;
    border: none;
}

.footer-logo span {
    font-family: "Playfair Display", serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--light-text);
}

footer p {
    color: var(--gray-text);
    font-size: 0.9rem;
}

.footer-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #ff6b6b;
    text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .logo h1 {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .logo h1 span {
        font-size: 2rem;
        letter-spacing: 6px;
    }

    .section-title {
        font-size: 2rem;
    }

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

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

    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        padding: 0;
    }

    .tagline {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .cta-btn {
        padding: 15px 40px;
        font-size: 0.9rem;
    }

    /* About Section Mobile */
    .about-card h3 {
        text-align: center;
    }

    /* About Section Responsive */
    .about {
        padding: 60px 0;
    }

    .about-content-wrapper {
        margin-top: 40px;
    }

    .about-story {
        padding: 30px;
        margin-bottom: 30px;
    }

    .story-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding-bottom: 20px;
    }

    .year-badge {
        font-size: 2.5rem;
    }

    .story-header h3 {
        font-size: 1.6rem;
    }

    .story-text p {
        font-size: 1rem;
        line-height: 1.8;
    }

    .about-highlight {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .highlight-icon {
        width: 60px;
        height: 60px;
    }

    .highlight-icon svg {
        width: 30px;
        height: 30px;
    }

    .highlight-content h4 {
        font-size: 1.3rem;
    }

    .highlight-content p {
        font-size: 1rem;
    }

    html {
        overflow-y: scroll;
        overflow-y: overlay;
    }
}
