:root {
    --primary: #f8bbd0;
    --secondary: #e1bee7;
    --accent: #ffcdd2;
    --light: #fce4ec;
    --dark: #ad5389;
    --text: #4a4a4a;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background-color: #fefefe;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

/* ===== СТИЛИ ДЛЯ ВСЕХ ССЫЛОК НА САЙТЕ ===== */

/* Глобальное правило для всех ссылок - базовый розовый цвет */
a, a:link, a:visited {
    color: #ad5389 !important; /* Темно-розовый цвет, такой же как у --dark */
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Эффект при наведении - более светлый розовый */
a:hover, a:active, a:focus {
    color: #f8bbd0 !important; /* Светло-розовый цвет, такой же как у --primary */
    text-decoration: underline;
}

/* Исключения для навигационных ссылок */
header a, .nav-link {
    text-decoration: none !important;
}

header a:hover, .nav-link:hover {
    text-decoration: none !important;
}

/* Исключения для кнопок-ссылок */
a.btn-primary, a.btn-secondary {
    text-decoration: none !important;
}

/* Исключения для социальных иконок */
.social-icon {
    text-decoration: none !important;
}

.page {
    display: none;
}

.page.active {
    display: block;
}

.gradient-bg {
    background: linear-gradient(45deg, var(--secondary), var(--primary));
}

.header-shadow {
    box-shadow: 0 4px 20px rgba(173, 83, 137, 0.1);
}

.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--dark);
    transition: width 0.3s ease;
}

.nav-link:hover:after, .nav-link.active:after {
    width: 100%;
}

.nail-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.nail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.img-placeholder {
    background: linear-gradient(135deg, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
    background-size: 800px 104px;
    height: 250px;
    position: relative;
    overflow: hidden;
}

.img-placeholder::after {
    content: "Replace with your nail design image";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #888;
    font-size: 14px;
    text-align: center;
    width: 80%;
}

.design-table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.design-table th {
    background-color: var(--primary);
    color: white;
    font-weight: 600;
    text-align: left;
    padding: 15px;
}

.design-table tr:nth-child(even) {
    background-color: var(--light);
}

.design-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.feature-box {
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.quote {
    position: relative;
    padding: 30px;
    background-color: var(--light);
    border-radius: 12px;
    margin: 40px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.quote:before {
    content: """;
    font-size: 80px;
    position: absolute;
    top: -20px;
    left: 10px;
    color: var(--primary);
    opacity: 0.5;
    font-family: 'Playfair Display', serif;
}

.section-divider {
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary), transparent);
    margin: 50px 0;
}

/* Стили для кнопок */
.btn-primary {
    background-color: var(--primary);
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.btn-primary:hover {
    background-color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.btn-secondary {
    background-color: white;
    color: var(--dark) !important;
    border: 1px solid var(--primary);
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.btn-secondary:hover {
    background-color: var(--light);
    color: var(--dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}