/* styles.css - все кастомные стили для лендинга Tasting */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fef9f2;
    color: #2c2420;
    scroll-behavior: smooth;
}

/* Акценты винной тематики */
.bg-wine {
    background: linear-gradient(135deg, #5e2a2a 0%, #3b1a1a 100%);
}

.btn-wine {
    background-color: #8b3c3c;
    border-color: #8b3c3c;
    color: white;
    font-weight: 500;
    padding: 0.75rem 2rem;
    transition: all 0.2s ease;
    border-radius: 40px;
}

.btn-wine:hover,
.btn-wine:focus {
    background-color: #6b2c2c;
    border-color: #6b2c2c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(107, 44, 44, 0.3);
    color: white;
}

.btn-outline-wine {
    border: 2px solid #8b3c3c;
    color: #8b3c3c;
    background: transparent;
    border-radius: 40px;
    padding: 0.7rem 2rem;
    font-weight: 500;
    transition: 0.2s;
}

.btn-outline-wine:hover {
    background-color: #8b3c3c;
    color: white;
    transform: translateY(-2px);
}

.hero {
    background: linear-gradient(120deg, #fff5ea 0%, #fae9da 100%);
    padding: 5rem 1rem 4rem;
    border-bottom: 1px solid rgba(139, 60, 60, 0.15);
}

.card-feature {
    border: none;
    background: white;
    border-radius: 28px;
    transition: all 0.25s;
    height: 100%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0e2d4;
}

.card-feature:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px -12px rgba(91, 37, 37, 0.15);
    border-color: #e2c7b5;
}

.icon-circle {
    width: 64px;
    height: 64px;
    background: #fae2d4;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    color: #8b3c3c;
    font-size: 2rem;
}

.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border-radius: 48px;
    border: 1px solid rgba(139, 60, 60, 0.2);
}

.footer {
    background-color: #241713;
    color: #d9c7b8;
    margin-top: 4rem;
}

h1,
h2,
h3,
.fw-semibold {
    letter-spacing: -0.01em;
}

.badge-custom {
    background-color: #e9d9cf;
    color: #5e2a2a;
    border-radius: 40px;
    font-weight: 500;
    padding: 0.4rem 1rem;
    display: inline-block;
}

.nav-link-custom {
    color: #5e2a2a;
    font-weight: 500;
}

.btn-manager {
    background: #2c3e2f;
    border-color: #2c3e2f;
}

.btn-manager:hover {
    background: #1e2b20;
    border-color: #1e2b20;
}

.text-wine {
    color: #8b3c3c;
}

.border-wine {
    border-color: #8b3c3c !important;
}

.bg-wine {
    background-color: #8b3c3c;
}

.how-it-works {
    background-color: #faf0e8;
}

.pricing {
    background: linear-gradient(to right, #f4e9df, #fff3ea);
}

@media (max-width: 768px) {
    .hero {
        padding: 3rem 1rem;
        text-align: center;
    }

    .display-4 {
        font-size: 2.2rem;
    }
}