/* Общи променливи и цветове */
:root {
    --primary-color: #b76e79;
    --primary-hover: #9b5b65;
    --secondary-color: #1a2a3a;
    --accent-gold: #d4af37;
    --bg-light: #fdfbf7;
    --bg-blush: #fcf4f5;
    --text-dark: #333333;
    --text-light: #e0e0e0;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

h1, h2, h3, h4, h5, h6, .brand-font {
    font-family: 'Cormorant Garamond', serif;
    color: var(--secondary-color);
}

/* Навигация и заздравяване срещу пречупване */
.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.navbar-brand {
    color: var(--primary-color) !important;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap; /* Не позволява на текста да се пречупва на два реда */
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Бутони */
.btn-custom {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 35px;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s;
    border: none;
    white-space: nowrap;
}

.btn-custom:hover {
    background-color: var(--primary-hover);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(183, 110, 121, 0.3);
}

.btn-outline-custom {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline-custom:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Hero Секция */
.hero-section {
    background: linear-gradient(rgba(26, 42, 58, 0.6), rgba(26, 42, 58, 0.8)), url('https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=1920&q=80') center/cover;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-section h1 {
    color: white;
    font-size: 4.5rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Секции - Отстояния */
.section-padding {
    padding: 100px 0;
}

/* Предимства (Features) */
.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1);
}

/* Секция: Как работи (Steps) */
.step-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    position: relative;
    border-top: 5px solid var(--primary-color);
}

.step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Cormorant Garamond', serif;
}

/* Галерия с мокъпи на браузър */
.browser-mockup {
    border-top: 30px solid #e0e0e0;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    background: white;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
}

.browser-mockup::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 15px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff5f56;
    box-shadow: 18px 0 0 #ffbd2e, 36px 0 0 #27c93f;
    z-index: 2;
}

.browser-mockup:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: top;
    transition: transform 0.4s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 42, 58, 0.85);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.browser-mockup:hover .gallery-overlay {
    opacity: 1;
}

/* Модал - Браузър стил */
.browser-header {
    background-color: #2b2b2b;
    border-bottom: 1px solid #1a1a1a;
    border-radius: 10px 10px 0 0;
}

#lightboxModal .modal-content {
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
}

/* Детайли (Какво включва) */
.bg-secondary-custom {
    background-color: var(--secondary-color);
    color: white;
}

.bg-secondary-custom h2, .bg-secondary-custom h3 {
    color: white;
}

.list-icon {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

/* FAQ Accordion */
.accordion-button:not(.collapsed) {
    background-color: var(--bg-blush);
    color: var(--secondary-color);
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
}
.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}

/* Отзиви */
.testimonial-card {
    background: var(--bg-blush);
    border-radius: 15px;
    padding: 30px;
    font-style: italic;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem;
    color: rgba(183, 110, 121, 0.2);
    position: absolute;
    top: -20px;
    left: 20px;
}

/* Цени */
.card-custom {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    transition: transform 0.3s;
    height: 100%;
    background: white;
}

.card-custom:hover {
    transform: translateY(-10px);
}

.price-tag {
    font-size: 3rem;
    font-weight: 600;
    color: var(--primary-color);
}

.premium-card {
    border: 2px solid var(--primary-color);
    background-color: var(--bg-blush);
}

/* Форма за контакт */
.contact-form-bg {
    background-color: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

/* Изискан и четим Footer */
.footer-custom {
    background-color: var(--secondary-color);
    color: var(--text-light);
    font-size: 1.05rem;
}

.footer-custom h4, .footer-custom h5 {
    color: white;
}

.footer-custom a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-custom a:hover {
    color: var(--accent-gold);
}

.footer-custom .border-secondary {
    border-color: rgba(255, 255, 255, 0.1) !important;
}
