/***************************
// Font Imports
***************************/

@font-face {
    font-display: swap;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 100;
    src: url('../fonts/DM_Sans/DMSans_24pt-Thin.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 200;
    src: url('../fonts/DM_Sans/DMSans_24pt-ExtraLight.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/DM_Sans/DMSans_24pt-Light.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/DM_Sans/DMSans_24pt-Regular.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/DM_Sans/DMSans_24pt-Medium.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/DM_Sans/DMSans_24pt-SemiBold.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/DM_Sans/DMSans_24pt-Bold.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/DM_Sans/DMSans_24pt-ExtraBold.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 900;
    src: url('../fonts/DM_Sans/DMSans_24pt-Black.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Jost';
    font-style: normal;
    font-weight: 100;
    src: url('../fonts/Jost/Jost-Thin.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Jost';
    font-style: normal;
    font-weight: 200;
    src: url('../fonts/Jost/Jost-ExtraLight.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Jost';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/Jost/Jost-Light.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Jost';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/Jost/Jost-Regular.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Jost';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/Jost/Jost-Medium.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Jost';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/Jost/Jost-SemiBold.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Jost';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/Jost/Jost-Bold.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Jost';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/Jost/Jost-ExtraBold.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Jost';
    font-style: normal;
    font-weight: 900;
    src: url('../fonts/Jost/Jost-Black.woff2') format('woff2');
}

/***************************
// End Font Imports
***************************/

/***************************
// Default Styles
***************************/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --font-dm-sans: 'DM Sans', sans-serif;
    --font-jost: 'Jost', sans-serif;

    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-2D2D2D: #2D2D2D;
    --color-1E1E1E: #1E1E1E;
    --color-1E1F21: #1E1F21;
}

body {
    letter-spacing: 0;
    font-family: var(--font-dm-sans);
    color: var(--color-1E1E1E);
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0;
}

.font-color-2D2D2D * {
    color: var(--color-2D2D2D) !important;
}

.font-color-1E1E1E * {
    color: var(--color-1E1E1E) !important;
}

.font-color-1E1F21 * {
    color: var(--color-1E1F21) !important;
}

.font-family-jost * {
    font-family: var(--font-jost) !important;
}



.font-size-64 * {
    font-size: 64px !important;
}

.font-size-48 * {
    font-size: 48px !important;
}

.font-size-40 * {
    font-size: 40px !important;
}

.font-size-32 * {
    font-size: 32px !important;
}

.font-size-24 * {
    font-size: 24px !important;
}

.font-size-20 * {
    font-size: 20px !important;
}

.font-size-18 * {
    font-size: 18px !important;
}

.font-size-16 * {
    font-size: 16px !important;
}

.font-size-15 * {
    font-size: 15px !important;
}

.font-size-14 * {
    font-size: 14px !important;
}

.font-size-13 * {
    font-size: 13px !important;
}

.font-size-12 * {
    font-size: 12px !important;
}

.font-size-11 * {
    font-size: 11px !important;
}


.font-weight-900 * {
    font-weight: 900 !important;
}

.font-weight-800 * {
    font-weight: 800 !important;
}

.font-weight-700 * {
    font-weight: 700 !important;
}

.font-weight-600 * {
    font-weight: 600 !important;
}

.font-weight-500 * {
    font-weight: 500 !important;
}

.font-weight-400 * {
    font-weight: 400 !important;
}

.font-weight-300 * {
    font-weight: 300 !important;
}

.font-weight-200 * {
    font-weight: 200 !important;
}

.font-weight-100 * {
    font-weight: 100 !important;
}


.line-height-200 * {
    line-height: 200% !important;
}

.line-height-190 * {
    line-height: 190% !important;
}

.line-height-180 * {
    line-height: 180% !important;
}

.line-height-170 * {
    line-height: 170% !important;
}

.line-height-160 * {
    line-height: 160% !important;
}

.line-height-150 * {
    line-height: 150% !important;
}

.line-height-140 * {
    line-height: 140% !important;
}

.line-height-130 * {
    line-height: 130% !important;
}

.line-height-120 * {
    line-height: 120% !important;
}

.line-height-110 * {
    line-height: 110% !important;
}

.line-height-100 * {
    line-height: 100% !important;
}

/***************************
// End Default Styles
***************************/

/***************************
// Custom Circle and Line
***************************/

.custom-circle-line-wrapper {
    display: inline-flex;
    align-items: center;
    height: 24px;
    margin-right: 1rem;
    position: relative;
}

.custom-circle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--color-1E1F21);
    display: inline-block;
    flex-shrink: 0;
    z-index: 2;
}

.custom-line-wrapper {
    position: absolute;
    left: 18px;
    /* a kör széle */
    top: 50%;
    transform: translateY(-50%);
    height: 1px;
    width: 53px;
    overflow: hidden;
}

/* A vonal alapértelmezésben láthatatlan */
.custom-line {
    height: 1px;
    width: 0;
    background: var(--color-1E1F21);
    display: block;
    transform-origin: left;
    opacity: 0;
}

/* Amikor a WOW.js triggereli az animációt */
.grow-line {
    animation: growLineFromCircle 0.8s ease-out forwards;
}

/* White variant */
.custom-circle-line-wrapper.white .custom-circle {
    background: var(--color-white);
}

.custom-circle-line-wrapper.white .custom-line {
    background: var(--color-white);
}

@keyframes growLineFromCircle {
    0% {
        width: 0;
        opacity: 0;
    }

    100% {
        width: 53px;
        opacity: 1;
    }
}

/***************************
// End Custom Circle and Line
***************************/

/***************************
// Buttons
***************************/
.btn img {
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.btn:hover img {
    transform: translateX(6px);
    transition: transform 0.3s ease;
}

.btn.btn-read-more {
    color: #3B3F50;
    height: 41px;
    font-family: var(--font-opensans);
    font-weight: 400;
    line-height: 180%;
    vertical-align: middle;
    border-radius: 0;
    border-bottom: 1px solid #3B3F50;
    text-align: center;
    padding-left: 0.4rem;
    padding-right: 0.4rem;
}

.btn.btn-read-more:hover {
    color: #3B3F50;
    background: transparent;
}

.btn.btn-read-more img {
    width: 20px !important;
    height: 20px !important;
    margin-left: 1rem;
}

.btn.btn-filled-brown {
    width: 223px;
    /* height: 54px; */
    opacity: 1;
    border-radius: 10px;
    padding-top: 16px;
    /* padding-right: 24px; */
    padding-bottom: 16px;
    /* padding-left: 24px; */
    gap: 8px;
    background: #A17039;
    color: var(--color-white);
    font-family: var(--font-dm-sans) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn.btn-filled-brown:hover {
    background: #8A5B2C;
    color: var(--color-white);
}

/***************************
// End Buttons
***************************/

/***************************
// Navbar
***************************/
.navbar {
    padding: 0;
}

.navbar .logo-img {
    width: 100%;
    max-width: 100%;
    object-fit: contain;
}

.navbar-custom {
    width: 100%;
    z-index: 10;
}

.navbar-custom .navbar-brand {
    width: 100%;
    max-width: 160px;
    height: 62px;
    object-fit: contain;
}

.navbar-toggler {
    position: absolute;
    z-index: 11;
    color: var(--color-black);
    border: 1px solid var(--color-black);
    border-radius: 10px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(68, 68, 68, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
}

.navbar-collapse {
    transition: none !important;
}

.navbar-custom.scrolled {
    background-color: #2f2f2f;
}

.navbar-custom .nav-link {
    color: var(--color-2D2D2D);
}

.navbar-custom .nav-link:hover {
    color: var(--color-black);
}

.navbar-custom .container {
    background-color: white;
    border-radius: 20px;
    padding: 1rem 3rem;
}

.navbar-custom.float {
    position: absolute;
}

.nav-item.dropdown {
    position: relative;
}

.dropdown-menu {
    border-radius: 0;
    padding: 0;
}

/* MEGAMENU */

.dropdown-toggle::after {
    display: none;
}

.icons .navbar-toggler {
    border: 1px solid var(--color-black);
    background-color: transparent;
    padding: 4px 8px;
}

.navbar-toggler-icon {
    width: 24px;
    height: 24px;
}

.navbar-toggler {
    padding: 5px 8px;
    min-width: 40px;
    min-height: 40px;
}


/***************************
// End Navbar
***************************/

/***************************
// Hero Section
***************************/
.hero {
    position: relative;
    height: 100vh;
    max-height: 700px;
    overflow: hidden;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

/***************************
// End Hero Section
***************************/

/***************************
// About Us Section
***************************/

.about-us {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.about-us .about-icon {
    width: 71px;
    height: 71px;
}

/***************************
// End About Us Section
***************************/
.discover-section {
    background: #462319;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.discover-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
}

.discover-tabs {
    display: flex;
    flex-wrap: nowrap;
    background: #6B4E44;
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
    border: none;
}

.discover-tab {
    background: transparent;
    border: none;
    padding: 0.8rem 0;
    flex: 1 1 0;
    color: #fff;
    font-weight: 400;
    font-size: 20px;
    border-radius: 0;
    transition: background 0.2s, color 0.2s, font-weight 0.2s;
    outline: none;
    box-shadow: none;
    position: relative;
    z-index: 1;
}

.discover-tab.active {
    background: #A17039;
    color: #fff;
    font-weight: 600;
    z-index: 2;
}

.discover-tab:not(.active):hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.discover-content img {
    width: 100%;
    /* max-width: 784px; */
    height: 462px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.2s;
}

.discover-content img:hover {
    transform: scale(1.03);
    transition: transform 0.2s;
}

.discover-card {
    background: rgba(255, 255, 255, 0.19);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    min-height: 220px;
}

/***************************
// End Discover Section
***************************/

/***************************
// Gallery Section
***************************/

.gallery-section {
    padding-top: 3rem;
    padding-bottom: 6rem;
}

.gallery-grid {
    margin-top: 2rem;
}

.gallery-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.2s;
    border-radius: 10px;
}

.gallery-img:hover {
    transform: scale(1.03);
}

/***************************
// End Gallery Section
***************************/

/***************************
// Booking Info Section
***************************/

.booking-info-section {
    padding-top: 6rem;
    padding-bottom: 3rem;
}

.booking-info-section-icon {
    width: 50px;
    height: 50px;
}


/***************************
// End Booking Info Section
***************************/

/***************************
// Info Highlight Section
***************************/

.info-highlight-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.info-highlight-section img {
    border-radius: 10px;
    height: 460px;
    object-fit: cover;
    width: 100%;
}

.info-highlight-section img:hover {
    transform: scale(1.03);
    transition: transform 0.2s;
}

/***************************
// End Info Highlight Section
***************************/

/***************************
// Map Section
***************************/

.map-section {
    padding-top: 3rem;
    padding-bottom: 6rem;
}

.map-embed-wrapper {
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
}

.map-embed-wrapper iframe {
    display: block;
    width: 100%;
    height: 397px;
    border: 0;
}

/***************************
// End Map Section
***************************/

/***************************
// Footer Section
***************************/
.site-footer {
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: #462319;
}

.site-footer a {
    text-decoration: none;
}

.site-footer p strong {
    font-weight: 700 !important;
}

.site-footer ul li {
    padding: 5px 0;
    font-weight: 500;
}

.footer-bottom .logo img {
    width: 100%;
    max-width: 190px;
    object-fit: cover;
    background: white;
    border-radius: 18px;
}

.site-footer .details img {
    width: 22px;
    height: 22px;
    margin-right: 20px;
}

.border-top {
    border-top: 1px solid var(--color-white) !important;
    opacity: 0.2 !important;
    margin-top: 0.8rem;
    margin-bottom: 1.2rem;
}

/***************************
// End Footer Section
***************************/


.general-padding{
    padding-top: 9rem;
    padding-bottom: 6rem;
}

.box-shadow-nav{
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}