/* ----- ЗАГАЛЬНІ СТИЛІ ТА ЗМІННІ ----- */
:root {
    --font-main: 'Montserrat', sans-serif;
    --font-display: 'Cormorant Garamond', serif;
    --color-dark-green: #1a3a3a;
    --color-light-bg: #f4f1eb;
    --color-text: #333;
    --color-accent: #c5a059; /* Золотий/бронзовий */
    --container-width: 1140px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    background-color: var(--color-light-bg);
    line-height: 1.6;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 80px 0;
}

.section--bg {
    background-color: #e8e4db;
    /* Простий етно-патерн для фону */
 background-image: url(medeca_manda.jpg);
  background-size: 478px 388px;
    
    background-position: 0 0;
}

.section__title {
    font-family: var(--font-display);
    font-size: 48px;
    /* color: var(--color-dark-green);*/
    text-align: center;
    margin-bottom: 20px;
    
  color: #a5ffff;
 
  background-color: #b8b264cc; /*darkkhaki*/;
  border-radius: 69px;
  
  padding: 27px 9px;
  backdrop-filter: blur(3px);
}

.section__subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
    font-size: 18px;
    color: #FF7F50;
  background-color: #ffffffb7;
  padding: 24px 91px;
  backdrop-filter: blur(3px);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--color-accent);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn:hover {
    background-color: #a98947;
    transform: translateY(-2px);
}

.btn--secondary {
    background-color: transparent;
    color: var(--color-dark-green);
    border: 2px solid var(--color-accent);
}

.btn--secondary:hover {
    background-color: var(--color-accent);
    color: #fff;
}


/* ----- ШАПКА ----- */
.header {
    background-color:#FF7F50cc;/* #348a62cc;*/
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    backdrop-filter: blur(5px);
}

.navbar-brand.logo {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-dark-green);
    text-decoration: none;
}

.nav__list .nav-link {
    text-decoration: none;
    color: var(--color-dark-green);
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
}

.nav__list .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.3s;
}

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

.header__contact a {
    color: var(--color-dark-green);
    text-decoration: none;
    font-weight: 600;
}

/* ----- ГОЛОВНИЙ ЕКРАН ----- */
.hero {
    padding-top: 150px;
    padding-bottom: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    /*background: url(medeco_genart_bg_mandala-eskiz-222.png);*/
    background-repeat: no-repeat;
  background: url(parochka_bg.png);
  background-size: 110% ;
}

.hero__image img {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}
.hero__content{
background-color: #fff8;
    padding: 23px;
    border-radius: 20px;
backdrop-filter: blur(3px);

}

.hero__title {
    font-family: var(--font-display);
    font-size: 64px;
    line-height: 1.1;
    color: var(--color-dark-green);
    margin-bottom: 20px;
}

.hero__subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 500px;
}


/* ----- ПЕРЕВАГИ ----- */
.feature-icon i {
    color: var(--color-accent);
}

.feature-item h3 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--color-dark-green);
    margin-bottom: 10px;
    margin-top: 10px;
}

/* ----- ВИДИ ----- */
.product-card {
    background-color: #f4ecdccc;
    border: 1px solid #ddd;
    text-align: center;
}
.product-card .card-img-top {
    max-height: 250px;
    width: auto;
    margin: 0 auto;
}
.product-card .card-title {
    font-family: var(--font-display);
    font-size: 32px;
}
.product-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-dark-green);
    margin: 15px 0;
}

/* ----- ВІДГУКИ ----- */
.review .blockquote {
    border-left: 3px solid var(--color-accent);
    padding-left: 20px;
}

.partners img {
    max-height: 50px;
    opacity: 0.7;
    transition: opacity 0.3s;
}
.partners img:hover {
    opacity: 1;
}

/* ----- ФОРМА ЗАМОВЛЕННЯ ----- */
.order-form .form-control {
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
}
.order-form .form-control:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 0.25rem rgba(197, 160, 89, 0.25);
}

/* ----- ФУТЕР ----- */
.footer {
    background-color: #000 ;
    color: #ccc;
    padding-top: 60px;
     /*background: url(footer_bg.jpg);*/
}
.footer h4 {
    font-family: var(--font-display);
    color: #fff;
    margin-bottom: 15px;
    font-size: 22px;
}
.nav__list--footer {
    list-style: none;
    padding: 0;
}
.nav__list--footer li {
    margin-bottom: 10px;
}
.nav__list--footer a {
    text-decoration: none;
    color: #ccc;
    transition: color 0.3s;
}
.nav__list--footer a:hover {
    color: var(--color-accent);
}
.footer__social a {
    color: #ccc;
    transition: color 0.3s;
}
.footer__social a:hover {
    color: var(--color-accent);
}

.footer__bottom {
    border-top: 1px solid #4a6363;
    text-align: center;
    padding: 20px 0;
}

/* ----- ДОДАТКОВІ КНОПКИ ----- */
.call-btn, .to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--color-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(187, 187, 187, 0.61);
    text-decoration: none;
    z-index: 101;
}
.to-top-btn {
    right: 30px;
    bottom: 90px;
    background-color: var(--color-dark-green);
    display: none; /* JS буде керувати видимістю */
}
