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

html, body {
    height: 100%;
    font-family: 'Inter', sans-serif;
    background: #1b1512;
    color: #f0eae6;
}

/* ПАРАЛАКС ЕФЕКТ */
.parallax-bg {
    position: fixed; /* Променено от absolute на fixed */
    top: 0;
    left: 0;
    width: 100%;
    height: 120vh; /* Малко по-високо за движение */
    z-index: 1;
    will-change: transform; /* По-плавно */
}

.hero-lashes {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

/* ЗАДЕН ФОН (обновен) */
.hero-bg {
    position: fixed; /* Важно! */
    top: 0;
    left: 0;
    width: 100%;
    height: 120vh;
    z-index: 1;
}

.bg-image {
    width: 100%;
    height: 100%;
    background-image: url('67.jpg'); /* ТВОЯТА СНИМКА */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.7) contrast(1.2);
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(27,21,18,0.9) 0%,
        rgba(27,21,18,0.6) 50%,
        rgba(27,21,18,0.3) 100%
    );
    z-index: 2;
}

/* ОСТАНАЛИТЕ СТИЛОВЕ СИ ОСТАВАТ СЪЩИТЕ */
.hero-front {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 10%;
    max-width: 700px;
}
/* ... останалият CSS от предишния отговор ... *//* ======================
   HERO - СНИМКА НА МИГЛИ
   ====================== */
.hero-lashes {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

/* ЗАДЕН ФОН СЪС СНИМКА */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-image {
    width: 100%;
    height: 100%;
    background-image: url('67.jpg'); /* ТВОЯТА СНИМКА */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.7) contrast(1.2);
    transform: scale(1.05);
    animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
    from { transform: scale(1.04); }
    to { transform: scale(1.1); }
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(27,21,18,0.9) 0%,
        rgba(27,21,18,0.6) 50%,
        rgba(27,21,18,0.3) 100%
    );
    z-index: 2;
}

/* СЪДЪРЖАНИЕ ОТПРЕД */
.hero-front {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 10%;
    max-width: 700px;
}

.hero-content {
    color: white;
}

.hero-mini-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #d7a990;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.hero-big-text {
    margin-bottom: 25px;

}

.text-row {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.1;
    display: block;
    color: white;
    text-transform: uppercase;
    letter-spacing: -2px;
    animation: fadeInUp 0.8s ease backwards;
}

.text-row:nth-child(1) { animation-delay: 0.2s; }
.text-row:nth-child(2) { animation-delay: 0.4s; }
.text-row:nth-child(3) { animation-delay: 0.6s; }

.text-row.accent {
    color: #d7a990;
    font-size: 5.5rem;
    margin: 5px 0;
    position: relative;
    display: inline-block;
}

.text-row.accent::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 30%;
    bottom: 5px;
    left: 0;
    background: rgba(215, 169, 144, 0.2);
    z-index: -1;
    transform: skewX(-15deg);
}

.hero-desc {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
    animation: fadeInUp 0.8s ease 0.8s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 0.8s ease 1s backwards;
}

.hero-btn {
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.hero-btn.primary {
    background: #d7a990;
    color: #1b1512;
    border: 2px solid #d7a990;
}

.hero-btn.primary:hover {
    background: transparent;
    color: #d7a990;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(215,169,144,0.3);
}

.hero-btn.secondary {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.5);
    color: white;
}

.hero-btn.secondary:hover {
    border-color: #d7a990;
    color: #d7a990;
    transform: translateY(-5px);
}

/* СКРОЛ ИНДИКАТОР */
.hero-scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: white;
    opacity: 0.8;
    animation: fadeIn 1s ease 1.5s backwards;
}

.scroll-arrow {
    font-size: 1.8rem;
    margin-top: 5px;
    animation: bounce 2s infinite;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 0.8; }
}

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

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-front {
        padding-left: 5%;
        justify-content: center;
        text-align: center;
    }
    
    .text-row {
        font-size: 4rem;
    }
    
    .text-row.accent {
        font-size: 4.5rem;
    }
    
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .bg-overlay {
        background: rgba(27,21,18,0.7);
    }
}

@media (max-width: 576px) {
    .text-row {
        font-size: 2.8rem;
    }
    
    .text-row.accent {
        font-size: 3.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-btn {
        width: 100%;
        text-align: center;
    }
}
h1 {
    font-family: 'Great Vibes', 'Parisienne', cursive;
    font-size: clamp(3rem, 12vw, 6rem);
    margin-bottom: 0.2em;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: none;  /* Remove uppercase for cursive! */
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.title .text p {
    font-family: 'Inter', sans-serif;  /* Keep paragraph clean and readable */
    /* rest of your styles */
}
/* --- CONTENT with MOUSE-DRIVEN CAROUSEL (photos move left/right with cursor) --- */
.content {
    background: #8a7266;
    padding: 100px 0 150px 0;  /* no horizontal padding so carousel can be full-bleed */
    position: relative;
    z-index: 10;
    border-radius: 70px 70px 0 0;
    margin-top: -2px;
    box-shadow: 0 -30px 40px rgba(0,0,0,0.6);
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.content-header {
    text-align: center;
    padding: 0 20px 30px;
}

.content-header h2 {
    font-size: 3rem;
    font-weight: 300;
    color: #ebd5c8;
    margin-bottom: 10px;
}

.content-header h2 span {
    font-weight: 600;
    color: #d7a990;
}

.carousel-hint {
    color: #cfb6a9;
    font-size: 1.2rem;
}

.carousel-hint i {
    margin: 0 8px;
    color: #d9b8a5;
}

/* --- CAROUSEL CONTAINER (horizontal drift with mouse) --- */
.carousel-container {
    width: 100%;
    overflow: hidden;           /* masks the overflowing images */
    cursor: grab;
    position: relative;
    padding: 20px 0 40px 0;
    user-select: none;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.carousel-container:active {
    cursor: grabbing;
}

.carousel-track {
    display: flex;
    gap: 30px;
    padding: 0 40px;
    width: max-content;
    will-change: transform;
    /* ПРЕМАХНИ това: */
    /* transition: transform 0.03s ease-out; */
    /* ОСТАВИ го без transition - JS се грижи за анимацията */
    pointer-events: none;
}

.carousel-item {
    width: 280px;
    flex-shrink: 0;
    background: #2d231f;
    border-radius: 60px 20px 60px 20px;
    overflow: hidden;
    border: 1px solid #755e51;
    box-shadow: 0 18px 25px -10px black;
    transition: border 0.2s, transform 0.2s;
    pointer-events: auto;        /* re-enable for hover effects */
}

.carousel-item:hover {
    border-color: #bd9b88;
    transform: translateY(-6px) scale(1.01);
}

.carousel-img {
    height: 280px;
    background-size: cover;
    background-position: center;
    background-color: #5d4a40;
    transition: transform 0.2s;
}

.carousel-item:hover .carousel-img {
    transform: scale(1.04);
}

.carousel-label {
    padding: 18px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #2b201c;
    border-top: 1px solid #7a6053;
}

.carousel-label span {
    font-size: 1.3rem;
    font-weight: 400;
    color: #efd9cd;
}

.carousel-label i {
    color: #cda992;
    font-size: 1.6rem;
}

.carousel-item:hover .carousel-label i {
    transform: rotate(5deg) scale(1.1);
    color: #ecc7b5;
}

/* diverse background images (blends + unsplash) */
.img1 { background-image: url('13.heic')}
.img2 { background-image: url('1.heic')}
.img3 { background-image: url('11.heic')}
.img4 { background-image: url('12.heic') }
.img5 { background-image: url('5.heic')}
.img6 { background-image: url('9.heic')}
.img7 { background-image: url('2.heic')}
.img8 { background-image: url('3.heic')}
.img9 { background-image: url('14.heic')}




.collection-quote {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 300;
    border-left: 4px solid #ae8b79;
    padding: 30px 20px;
    max-width: 800px;
    margin: 40px auto 10px;
    background: #2f221e70;
    border-radius: 100px 20px 100px 20px;
}

/* ensure images show fallback colors */
.carousel-img {
    background-color: #5d4a40;
    background-size: cover;
}
/* ======================
   NAVBAR STYLES
   ====================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #8a7266;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(200, 160, 140, 0.2);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(138, 114, 102, 0.6);
    backdrop-filter: blur(15px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styles */
.nav-logo a {
    font-family: 'Playfair Display', serif;
    
    font-size: 2.2rem;
    font-weight: 300;
    text-decoration: none;
    color: #f0eae6;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-logo a span {
  font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #d7a990;
    font-weight: 400;
}

.nav-logo a:hover {
    color: #e9d5c8;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #f0eae6;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.5rem 0;
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #d7a990;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #e9d5c8;
}

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

.nav-link.active {
    color: #d7a990;
    font-weight: 400;
}

/* Nav Buttons */
.nav-buttons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-nav {
    text-decoration: none;
    color: #f0eae6;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.6rem 1.8rem;
    border: 1.5px solid #d7a990;
    border-radius: 40px;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-nav:hover {
    background: #d7a990;
    color: #1b1512;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(215, 169, 144, 0.3);
}

/* Mobile Menu Button */
.mobile-menu {
    display: none;
    background: none;
    border: none;
    color: #f0eae6;
    font-size: 1.8rem;
    cursor: pointer;
    transition: color 0.3s;
}

.mobile-menu:hover {
    color: #d7a990;
}

/* Adjust hero section to account for fixed navbar */
.heroEffects {
    margin-top: 0;
    padding-top: 0;
}

/* Add padding to the first section after navbar */
.content {
    margin-top: 0;
}

/* ======================
   RESPONSIVE NAVBAR
   ====================== */

@media screen and (max-width: 768px) {
    .nav-container {
        padding: 0.8rem 1.5rem;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(27, 21, 18, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: left 0.3s ease;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 0;
    }

    .nav-link {
        font-size: 1.5rem;
        letter-spacing: 3px;
    }

    .mobile-menu {
        display: block;
    }

    .btn-nav {
        padding: 0.5rem 1.2rem;
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 480px) {
    /* ======================
   ЛОГО - ПОСЛЕДНА НАДЕЖДА
   ====================== */
.navbar .nav-container .nav-logo a {
    font-family: 'Playfair Display', serif !important;
    font-size: 2.2rem !important;
    color: #f0eae6 !important;
}

    .nav-container {
        padding: 0.6rem 1rem;
    }
}
/* ======================
   PRICE SECTION with REFILLS
   ====================== */
.price-section {
    padding: 80px 0;
    background: #241e1b;
}
.section-title {
    font-size: 3rem;
    font-weight: 300;
    text-align: center;
    color: #f0eae6 !important;  /* Много светъл */
    margin-bottom: 15px;
    font-family: 'Cormorant Garamond', serif;
    
}

.section-title span {
    color: #d7a990 !important;  /* Акцент */
}

.section-sub {
    text-align: center;
    color: #e0cec4 !important;  /* Светъл */
    font-size: 1.2rem;
    margin-bottom: 50px;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
}
.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.price-card {
    background: #2d231f;
    padding: 35px 25px;
    border-radius: 30px 15px 30px 15px;
    border: 1px solid #5e4a40;
    position: relative;
    transition: 0.3s;
    text-align: center;

}

.price-card:hover {
    transform: translateY(-5px);
    border-color: #d7a990;
}

.price-card.featured {
    border: 2px solid #d7a990;
}

.price-card h3 {
    font-size: 2rem;
    color: #efd9cd;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.price-value {
    font-size: 2.5rem;
    color: #d7a990;
    font-weight: 600;
    margin-bottom: 20px;
}

.price-features {
    list-style: none;
    margin-bottom: 25px;
    text-align: left;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #e0cec4;

}

.price-features i {
    color: #d7a990;
    width: 20px;

}


.about-btn {
    display: inline-block;
    text-decoration: none;
    background: transparent;
    border: 1.5px solid #d7a990;
    color: #efd9cd;
    padding: 12px 35px;
    border-radius: 40px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
    margin-top: 20px;
    position: relative;
    z-index: 10;
}

.about-btn:hover {
    background: #d7a990;
    color: #1b1512;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(215, 169, 144, 0.5);
}
.price-btn:hover {
    background: #d7a990;
    color: #1b1512;
}

.price-badge {
    position: absolute;
    top: 15px;
    right: 10px;
    background: #d7a990;
    color: #1b1512;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
}
.price-badge {
    position: absolute;
    top: -8px;
    right: 15px;
    background: #d7a990;
    color: #1b1512;
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
    white-space: nowrap;
}
.price-addons {
    background: #2d231f;
    border-radius: 40px 15px 40px 15px;
    padding: 40px;
    border: 2px solid #5e4a40;
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Playfair Display', serif;
    font-size: 23px;
}
.price-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.price-card {
    padding: 25px 15px;
}

.price-card h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;

}

.price-value {
    font-size: 2rem;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.price-features {
    margin-bottom: 20px;
}

.price-features li {
    font-size: 1.0rem;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.price-btn {
    padding: 10px;
    font-size: 0.9rem;
}

.price-badge {
    font-size: 0.8rem;
    padding: 3px 8px;
}
.addons-title {
    text-align: center;
    font-size: 2rem;
    color: #efd9cd;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.addon-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #241e1b;
    border-radius: 30px;
    border: 1px solid #5e4a40;
}

.addon-item span:first-child {
    color: #e0cec4;
}

.addon-price {
    color: #d7a990;
    font-weight: 600;
    font-size: 1.2rem;
}
.addon-item:last-child {
    grid-column: span 2;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}
.info-bubble {
    background: rgba(215, 169, 144, 0.15);
    border: 1px solid #d7a990;
    border-radius: 60px 20px 60px 20px;
    padding: 18px 30px;
    margin: 40px auto 0;
    max-width: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    
    /* СИЛНО СВЕТЕНЕ */
    box-shadow: 
        0 0 30px rgba(215, 169, 144, 0.6),
        inset 0 0 20px rgba(215, 169, 144, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 30px rgba(215, 169, 144, 0.6), inset 0 0 20px rgba(215, 169, 144, 0.3);
    }
    50% {
        box-shadow: 0 0 50px rgba(215, 169, 144, 0.9), inset 0 0 30px rgba(215, 169, 144, 0.5);
    }
    100% {
        box-shadow: 0 0 30px rgba(215, 169, 144, 0.6), inset 0 0 20px rgba(215, 169, 144, 0.3);
    }
}
/* ======================
   ABOUT SECTION
   ====================== */
.about-section {
    padding: 80px 0;
    background: #1f1815;
}

/* ======================
   ABOUT SECTION - ВЕРТИКАЛНА (ТОЧНО КАКТО БЕШЕ)
   ====================== */
.about-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.about-image {
    background-image: url('8.jpg');
    border-radius: 60px 20px 60px 20px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid #5e4a40;
    width: 320px;  /* Точно ширина като преди */
    height: 450px;  /* По-висока от ширината - вертикална */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
background-position: center 60%;  /* Това мести снимката */
    background-repeat: no-repeat;}

.image-placeholder i {
    font-size: 5rem;  /* Точно както беше */
    color: #d7a990;
    margin-bottom: 15px;
}
.about-image {
    box-shadow: 0 0 30px rgba(215, 169, 144, 0.5);
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.3, 1.1);
}

.about-image:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 
        0 0 45px rgba(215, 169, 144, 0.9),
        0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: #d7a990;
}
.image-placeholder p {
    color: #efd9cd;
    font-size: 1.5rem;  /* Точно както беше */
    
}
/* ======================
   ABOUT SECTION - ШРИФТОВЕ
   ====================== */
.about-content h2 {
    font-family: 'Great Vibes', cursive;
    font-size: 3.5rem;
    font-weight: 400;
    color: #ebd5c8;
    margin-bottom: 5px;
}

.about-content h2 span {
    font-family: 'Great Vibes', cursive;
    color: #d7a990;
}

.about-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #cbb2a6;
    margin-bottom: 20px;
}

.about-content p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.9;
    color: #d4c0b6;
    margin-bottom: 20px;
}

.about-content .stat-number {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.about-content .stat-label {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}



.stat-number {
    font-size: 2rem;
    color: #d7a990;
    font-weight: 600;
    display: block;
}

.stat-label {
    color: #b9a094;
    font-size: 0.9rem;
}

/* ======================
   ABOUT СЕКЦИЯ - ПОСТОЯННО СВЕТЕНЕ
   ====================== */
.about-section {
    padding: 60px 0;
    background: #1f1815;
    position: relative;
    animation: sectionGlow 3s ease-in-out infinite;
}

@keyframes sectionGlow {
    0% {
        box-shadow: 0 0 20px rgba(215, 169, 144, 0.2);
    }
    50% {
        box-shadow: 0 0 40px rgba(215, 169, 144, 0.5);
    }
    100% {
        box-shadow: 0 0 20px rgba(215, 169, 144, 0.2);
    }
}

.about-section::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 2px dashed rgba(215, 169, 144, 0.3);
    border-radius: 100px 30px 100px 30px;
    animation: borderGlow 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes borderGlow {
    0% {
        border-color: rgba(215, 169, 144, 0.2);
        box-shadow: inset 0 0 20px rgba(215, 169, 144, 0.1);
    }
    50% {
        border-color: rgba(215, 169, 144, 0.6);
        box-shadow: inset 0 0 40px rgba(215, 169, 144, 0.3);
    }
    100% {
        border-color: rgba(215, 169, 144, 0.2);
        box-shadow: inset 0 0 20px rgba(215, 169, 144, 0.1);
    }
}
/* ======================
   FAQ SECTION
   ====================== */
.faq-section {
    padding: 80px 0;
    background: #241e1b;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

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

.faq-item {
    background: #2d231f;
    border: 1px solid #5e4a40;
    border-radius: 20px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    color: #efd9cd;
    font-size: 1.3rem;
}

.faq-question i {
    color: #d7a990;
    transition: transform 0.3s;
}

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

.faq-answer {
    max-height: 0;
    padding: 0 20px;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
    color: #cbb2a6;
     font-size: 1.2rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 20px 20px;
}

.map-section {
    padding: 60px 0;
    background: color: #cfb6a9;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.map-box {
    background: #2d231f;
    border-radius: 60px 20px 60px 20px;
    padding: 20px;
    border: 2px solid #d7a990;
    margin-top: 30px;
}

.map-box iframe {
    border-radius: 40px 15px 40px 15px;
    display: block;
}

.map-address {
    text-align: center;
    margin-top: 20px;
    color: #f0eae6;
    font-size: 1.1rem;
}

.map-address i {
    color: #d7a990;
    margin-right: 10px;
}
/* ======================
   FOOTER - КОНТАКТИ
   ====================== */
.footer {

    background: #1b1512;
    padding: 50px 0 30px;
    border-top: 2px solid #d7a990;
    text-align: center;
    margin-bottom: -150px;

}

.footer-logo {
    font-family: 'Great Vibes', cursive;
    font-size: 2.2rem;
    color: #ebd5c8;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
    
}

.footer-logo span {
    color: #d7a990;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.footer-contact {
   font-family: 'Playfair Display', serif !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e0cec4;
    font-size: 1rem;
}

.contact-item i {
    color: #d7a990;
    width: 20px;
    font-size: 1.1rem;
}

.contact-item a {
    color: #e0cec4;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #d7a990;
}

.contact-item span {
    color: #e0cec4;
}

.footer-credit {
    border-top: 1px solid #5e4a40;
    padding-top: 25px;
}

.footer-credit p {
    color: #9a8276;
    font-size: 0.9rem;
    margin-bottom: 5px;
     font-size: 1.0rem;
}

.credit-small {
    font-size: 1.0rem !important;
    color: #5e4a40 !important;
     

}

.credit-small a {
    color: #d7a990;
    text-decoration: none;
    font-weight: 400;
     font-size: 1.0rem;
}

.credit-small a:hover {
    text-decoration: underline;
}

/* ======================
   RESPONSIVE
   ====================== */
@media (max-width: 768px) {
    .footer-contact {
        align-items: center;
    }
    
    .contact-item {
        justify-content: center;
    }
}
@media (max-width: 768px) {
    .price-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        justify-content: center;
    }
    
    .addons-grid {
        grid-template-columns: 1fr;
    }
}


/* ======================
   БУТОН ЗА ГОРЕ
   ====================== */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #d7a990;
    border: none;
    color: #1b1512;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background: #efd9cd;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(215, 169, 144, 0.5);
}

.scroll-top-btn:active {
    transform: translateY(0);
}

@media (max-width: 600px) {
    h1 {
        font-size: 28px !important; /* Намали размера, за да се събере на един ред */
        text-align: center;
        line-height: 1.2;
    }
}
.hero-section { 
    background-image: url('67.jpg');
    background-position: center; /* Центрира очите в средата на екрана */
    background-size: cover;      /* Разпъва снимката, за да запълни целия екран */
    background-attachment: scroll; /* Важно за айфони - фиксираният фон често се чупи при тях */
    height: 100vh;               /* Прави секцията висока точно колкото екрана на телефона */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

