/* global styles*/
:root {
    --primary-green: #7ca80a;
    --dark-green: #5d7e07;
    --dark-brown: #332621;
    --light-bg: #faf8f5;
    --text-dark: #2c2c2c;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--light-bg);
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
}

/* footer in the bottom*/
.content-wrapper {
    flex: 1 0 auto;
}

/* header */
.brand-logo {
    max-height: 100px;
    width: auto;
    object-fit: contain;
}

.navbar-custom {
    background-color: var(--dark-green) !important;
    text-align:center;
    padding: 10px 0;
    border-bottom: 3px solid var(--primary-green);
}

.nav-link-custom {
    color: #ffffff !important;
    font-weight: 600;
    font-size: 11pt;
    text-transform: uppercase;
    padding: 8px 12px !important;
    transition: all 0.3s ease;
}

.nav-link-custom:hover, 
.nav-link-custom.active {
    color: #ffffff !important;
    border-bottom: 2px solid #ffffff;
}

.header-phone {
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    font-size: 11pt;
}

@media (max-width: 991.98px) {
    .navbar-custom .header-phone {
        display: block;
        padding: 10px 0;
    }
}

.brand-text {
    font-size: 11pt;
    letter-spacing: 1px;
}

/* steak index */
.hero-section {
    min-height: 100vh; 
    padding: 100px 0; 
    box-sizing: border-box;
}

.hero-card {
    background: rgba(0, 0, 0, 0.6);
    border-left: 5px solid var(--primary-green, #7ca80a);
    padding: 25px;
    color: #ffffff;
    transition: transform 0.3s ease, background 0.3s ease;
}

.hero-card:hover {
    background: rgba(0, 0, 0, 0.75);
    transform: translateY(-5px);
}

.hero-card h3 {
    color: var(--primary-green, #7ca80a);
    font-size: 14pt;
    font-weight: bold;
    margin-bottom: 15px;
}

.hero-card p.small {
    font-size: 10pt;
    line-height: 1.6;
    color: #e0e0e0;
}

.hero-card .btn-detail {
    background-color: #ffffff;
    color: #2c2c2c;
    border: none;
    border-radius: 0;
    padding: 8px 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 9pt;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: 0.3s ease;
}

.hero-card .btn-detail:hover {
    background-color: var(--primary-green, #7ca80a);
    color: #ffffff;
}
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('https://images.unsplash.com/photo-1544025162-d76694265947?q=80&w=1600&auto=format&fit=crop') no-repeat center center;
    background-size: cover;
    height: 100vh; /* Фотография стейка растянута ровно на 100% высоты экрана */
    display: flex;
    align-items: center;
    position: relative;
}

.hero-card {
    background: rgba(0, 0, 0, 0.6);
    border-left: 5px solid var(--primary-green);
    padding: 25px;
    max-width: 500px;
    color: #fff;
    margin-left: 5%;
}

.hero-card h3 {
    color: var(--primary-green);
    font-size: 14pt;
    font-weight: bold;
}

.hero-card .btn-detail {
    background-color: #ffffff;
    color: var(--text-dark);
    border: none;
    padding: 8px 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 10pt;
    border-radius: 0;
    transition: 0.3s;
}

.hero-card .btn-detail:hover {
    background-color: var(--primary-green);
    color: white;
}

/* info bar */
.quick-info-bar {
    background-color: var(--primary-green);
}

.info-box-item {
    background-color: var(--primary-green) !important;
    color: white;
    text-align: center;
    padding: 15px;
    border-right: 1px solid rgba(255,255,255,0.2);
    transition: 0.3s;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.info-box-item:last-child {
    border-right: none;
}

.info-box-item:hover {
    background-color: var(--dark-green) !important;
    color: white;
}

.info-box-item i {
    font-size: 20pt;
    margin-bottom: 8px;
    display: block;
}

.info-box-item span {
    font-size: 10pt;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
}

.info-box-item small {
    font-size: 9pt;
    opacity: 0.9;
}

/* content */
.closed-badge-notice {
    background-color: rgba(220, 53, 69, 0.9);
    color: white;
    padding: 15px 30px;
    display: inline-block;
    font-size: 16pt;
    font-family: 'Marck Script', cursive;
    margin-top: 15px;
    border-radius: 4px;
}

.custom-breadcrumb {
    padding: 15px 0;
    font-size: 9.5pt;
}

.custom-breadcrumb a {
    color: #6c757d;
    text-decoration: none;
}

.section-title {
    font-family: 'Marck Script', cursive;
    font-size: 32pt;
    color: var(--dark-green);
    text-align: center;
    margin-bottom: 30px;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background-color: var(--primary-green);
    margin: 8px auto 0 auto;
}

/* bg about */
.section-watermark-bg {
    padding: 60px 0;
}

.about-text {
    font-size: 11pt;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Tennis */
.winter-notice {
    text-align: center;
    font-size: 18pt;
    color: #444;
    margin-top: 20px;
}

/* Reviews */
.reviews-section {
    background: linear-gradient(rgba(51, 38, 33, 0.85), rgba(51, 38, 33, 0.85)), 
                url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?q=80&w=1000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    color: white;
}

.review-card {
    padding: 20px 40px;
    color: #fff;
}

.review-author {
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 11pt;
    letter-spacing: 0.5px;
}

.review-text {
    font-style: italic;
    font-size: 10.5pt;
    color: #e0e0e0;
    line-height: 1.6;
}

.review-text::before {
    content: '“ ';
    color: var(--primary-green);
    font-size: 18pt;
    font-weight: bold;
}
/* Carousel */
.carousel-control-btn {
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 0.3s;
}

.carousel-control-btn:hover {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
}

/* Feedback */
.feedback-section {
    background-color: var(--primary-green);
    padding: 50px 0;
    color: white;
}

.feedback-container {
    max-width: 650px;
    margin: 0 auto;
}

/* Инпуты: Имя, E-mail, Телефон, Сообщение */
.form-control-custom {
    display: block;
    width: 100%;
    border-radius: 0;
    border: none;
    padding: 12px;
    margin-bottom: 15px;
    font-size: 10pt;
    color: var(--text-dark);
    background-color: #ffffff;
    box-sizing: border-box;
}

.form-control-custom:focus {
    outline: 2px solid var(--dark-brown);
}

textarea.form-control-custom {
    height: 120px;
    resize: none;
}

.btn-submit-custom {
    background-color: var(--dark-brown);
    color: white;
    border: none;
    border-radius: 0;
    padding: 12px 40px;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit-custom:hover {
    background-color: #221815;
}

/* Price Table */
.pricing-table-wrapper {
    margin-bottom: 40px;
    width: 100%;
    overflow-x: auto;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
}

.pricing-table th {
    background-color: rgba(51, 38, 33, 0.85);
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 11pt;
    letter-spacing: 1px;
    padding: 14px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-table td {
    background-color: rgba(140, 130, 122, 0.75);
    color: #ffffff;
    font-size: 11pt;
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 400;
}

.pricing-table td:first-child {
    text-align: left; 
    padding-left: 30px;
}

.pricing-table tr:hover td {
    background-color: rgba(140, 130, 122, 0.9);
    transition: background-color 0.2s ease;
}
/* .pricing-table-wrapper {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.pricing-table th {
    background-color: var(--dark-brown);
    color: white;
    text-transform: uppercase;
    font-weight: 700;
    padding: 15px;
    font-size: 10.5pt;
    letter-spacing: 0.5px;
    text-align: left;
}

.pricing-table td {
    padding: 15px;
    border-bottom: 1px solid #eaeaea;
    font-size: 11pt;
    color: #444;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table tr:nth-child(even) {
    background-color: #fbfbf9;
}

.price-tag {
    font-weight: 700;
    color: var(--dark-green);
} */

.map-container {
    height: 400px;
    width: 100%;
    background-color: #e5e3df;
    margin-top: 30px;
}

.contact-info-block {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.contact-info-block h5 {
    font-weight: 700;
    color: var(--dark-brown);
}

/* slider sauna */
.sauna-slider-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 40px;
}

.sauna-slider-wrapper .owl-carousel .item img {
    height: 320px;
    object-fit: cover;
    display: block;
    width: 100%;
}

.sauna-slider-wrapper .owl-theme .owl-nav {
    margin-top: 0; 
}

.sauna-slider-wrapper .owl-theme .owl-nav [class*='owl-'] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #ffffff !important;
    color: #332621 !important;
    font-size: 24px !important;
    line-height: 34px !important;
    border-radius: 0 !important; 
    margin: 0 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: background 0.2s ease, color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sauna-slider-wrapper .owl-theme .owl-nav .owl-prev {
    left: 15px;
}
.sauna-slider-wrapper .owl-theme .owl-nav .owl-next {
    right: 15px;
}

.sauna-slider-wrapper .owl-theme .owl-nav [class*='owl-']:hover {
    background: var(--primary-green, #7ca80a) !important;
    color: #ffffff !important;
}

.sauna-slider-wrapper .owl-theme .owl-dots {
    display: none !important;
}
/* footer */
footer {
    flex-shrink: 0;
    background-color: var(--dark-brown);
    color: #b5a49e;
    font-size: 10pt;
    padding: 40px 0 20px 0;
    border-top: 4px solid #221815;
}

footer h5 {
    color: white;
    font-size: 11pt;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 20px;
}

footer h5::before {
    content: '— ';
    color: var(--primary-green);
}

footer ul {
    list-style: none;
    padding-left: 0;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    color: #b5a49e;
    text-decoration: none;
    transition: color 0.2s;
}

footer ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
    margin-top: 30px;
    font-size: 9pt;
}

.social-icons a {
    color: white;
    background: rgba(255,255,255,0.1);
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-icons a:hover {
    background-color: var(--primary-green);
}