/* Fonts */
:root {
    --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Roboto",  sans-serif;
    --nav-font: "Roboto",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #0a0f14; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #0e0c0f; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #dabfa2; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #0a0f14;  /* The default color of the main navmenu links */
    --nav-hover-color: #dabfa2; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #0a0f14; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #e87532; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: #faf9fb;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

.b{
    font-weight: bold;
}

.navme{
    background: #f1f7fc;
}

.svg-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    visibility: hidden;
}

.picon {
    width: 1em;
    height: 1em;
    /*fill: currentColor;*/
    vertical-align: middle;
    fill:#dabfa2;
}

.catsection{
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 10px 0;
    scroll-margin-top: 90px;
    overflow: clip;
}

/*Gallery on good*/
.thumb {
    width: 150px;
    height: 150px;
    object-fit: cover; /* Чтобы не искажались */
}

.galpreview {
    cursor: pointer;
}

.card-header{
    font-size: 1.2rem;
}

.auraaccordion{
    padding: 10px 10px;
}

.accordion .collapse {
    transition: height 0.15s ease; /* Faster than default (0.35s) */
}

.promo-banner {
    width: 100%;
    max-width: 900px;
    margin: 40px auto;
    padding: 30px 20px;
    border-radius: 20px;
    background: #f7f7f7;
    color: #111;
    font-family: 'Segoe UI', sans-serif;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.promo-banner strong {
    color: #c0392b;
}

@media (max-width: 600px) {
    .promo-banner {
        font-size: 18px;
        padding: 20px 15px;
    }
}
.free-delivery-banner {
    background-color: #dac0a1;
    border: 2px solid #e87532;
    color: #1c1c1c;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    padding: 15px 20px;
    margin: 30px auto;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

@media (max-width: 600px) {
    .free-delivery-banner {
        font-size: 16px;
        padding: 12px 15px;
    }
}

.hero-pitch {
    background: #fff6f0;
    color: #111;
    font-size: 22px;
    text-align: center;
    padding: 14px 24px;
    margin-top: 20px;
    border-radius: 12px;
    font-weight: 500;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    display: inline-block;
}
.hero-pitch strong {
    color: #c0392b;
}

.hero .hero-stats{
    color: #c0392b;
}

.hero .hero-stats div{
    background: #fff6f0;
    padding: 10px;
}

.btn-aura {
    background-color: #fff5f1;
    color: #b02e23;
    border: 1px solid #e6bfb8;
    border-radius: 50px;
    font-weight: 500;
    padding: 6px 14px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-aura:hover {
    background-color: #b02e23;
    color: #fffaf6;
    border-color: #b02e23;
    text-decoration: none;
}

.btn-aura i {
    margin-right: 6px;
    vertical-align: middle;
}

.focus-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1rem;
    font-weight: 400;

}

.focus-list li {
    margin-bottom: 8px;
}

.mentorship-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mentorship-list li {
    display: flex;
    align-items: flex-start; /* ключевой момент — выравнивание по верхнему краю */
    margin-bottom: 12px;
    line-height: 1.5;
}

.mentorship-list li i {
    font-size: 24px;
    color: var(--accent-color);
    margin-right: 15px;
    line-height: 1;

}
