@import url('https://fonts.googleapis.com/css2?family=Baloo+Da+2:wght@400..800&family=Noto+Serif+Bengali:wdth,wght@62.5..100,100..900&display=swap');
:root {
    --font-family-header: "Noto Serif Bengali", serif;
    --font-family-subheader: 'Open Sans', sans-serif;
    --font-family-weight: 500;
    --font-family-body--: "Baloo Da 2", sans-serif;
    --font-family-body: 'Open Sans', sans-serif;
    --font-size-body: 14px;
    --background-body: #f8f7f7;
    --color-body: #c50000;
    --hover-red: #c50000;
    --gold: gold;
    --background-red: linear-gradient(180deg, #a80808, #530101);
    --hover-gradient-background: linear-gradient(180deg, #c50000, #230000);
    --color-gold: rgb(255, 255, 255);
    --border-gold: rgba(255, 217, 0, 0.55);
    --box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
    --box-shadow-2: 0 4px 6px rgba(0, 0, 0, 0.2);
    --box-shadow-1: 0 4px 6px rgba(0, 0, 0, 0.1);
    --fonts-gradient-background: linear-gradient(180deg, gold, #790505);
}
body {
    font-family: var(--font-family-body);
    font-optical-sizing: auto;
    margin: 0;
    padding: 0;
    /*background: linear-gradient(153deg, gold, #a5002d);*/
    background: white;
    color: #a5002d;
    font-size: var(--font-size-body);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
p {
    line-height: 1.8;
}
.container {
    width:98%;
    max-width:1200px;
    margin: 0 auto;
}
header {
    /*background-color: rgba(255, 255, 255, 0.8);*/
    background-color: white;
    padding: 1px;
    text-align: center;
    padding-top:30px;
    padding-bottom:5px;
}
header h1 {
    /*color: #a5002d;*/
    margin:0;
}
header p {
    margin:0;
    font-size: clamp(1rem, 3vw, 1.1rem);
    font-weight: 500;
}

/********************************************************************/
/*nav {
    display: flex;
    justify-content: center;
    background-color: #a5002d;
    border-top:1px solid rgba(255, 217, 0, 0.55);
    border-bottom:1px solid rgba(255, 217, 0, 0.55);
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
    position: sticky;
    top: 0;
    z-index: 1000;
    text-align: center;
}
nav a {
    color: gold;
    text-decoration: none;
    padding: 3px 20px;
    text-transform: uppercase;
}
nav a:hover {
    background-color: gold;
    color:#a5002d;
}*/

.gradient-hungary {
    background: linear-gradient(180deg, #ff0013, #ffffff, #1cdb00); /* Piros-fehér-zöld */
    -webkit-background-clip: text; /* Háttér szín a szöveghez */
    -webkit-text-fill-color: transparent; /* Szövegszín eltüntetése */
}
/* Alap navigáció */
nav {
display: flex;

justify-content: center;
background-color: #a5002d;
border-top:1px solid rgba(255, 217, 0, 0.55);
border-bottom:1px solid rgba(255, 217, 0, 0.55);
box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
position: sticky;
top: 0;
z-index: 1000;

/*justify-content: space-between;*/
align-items: center;
/*padding: 10px 20px;*/
background-color: #a5002d;
background: var(--background-red);
color: gold;
}

nav li a:hover {
background-color: gold;
background: var(--hover-background);
color:white;
}
/* Menü linkek (asztali nézet) */
.menu-links {
display: flex;
gap: 20px;
list-style: none;
margin: 0;
padding: 0;
}
.menu-links li {margin:0;padding:0;}
.menu-links li a {
color: gold;
text-decoration: none;
font-size: 1rem;
display:block;
width:100%;
height:100%;
padding:5px;
padding-top:7px;
}
.text-gold {color:gold;}
.language-dropdown {
    padding: 5px;
    font-size: 16px;
    border: 0;
    border-radius: 5px;
    cursor: pointer;
    background: var(--background-red);
    color:gold;
}
.language-selector select option {
    background: var(--background-red); /* Az opciók háttérszíne */
    color: var(--text-gold); /* Szöveg színe */
}
.menu-links li a:hover {
/*text-decoration: underline;*/
}

/* Hamburger ikon alapértelmezett megjelenítése */
.menu-icon {
display: none; /* Asztali nézetben rejtve */
cursor: pointer;
}

/* Mobil nézethez */
@media (max-width: 400px) {
    #services .services {display:block!important;}
    section {margin:0!important;}
    .more-attractions {
        margin-left: 7vw!important;
    }
}
@media (max-width: 768px) {
    /*.hero-logo {
        top: 0px !important;
        left: 0px !important;
        max-width: 85px !important;
    }*/
    
    
    .hero-content.pref_hero-content {
        top: auto !important;
        bottom: 0!important;
        right: 0 !important;
        background: #0e0e0e85;
        padding: 10px;
    }
    .text-border {
        text-shadow: none!important;
    }    
    .menu-icon {
        display: block; /* Mobilon megjelenik a hamburger ikon */
    }

    .menu-links {
        display: none; /* Kezdetben rejtve */
        flex-direction: column;
        gap: 10px;
        position: absolute;
        top: 33px;
        right: 0px;
        background-color: #a5002d;
        /*border-radius: 5px;*/
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        width: 100%;
        padding: 6px 2% 10px 7%;
        /*margin-top: -27px;*/
    }

    .menu-links.active {
        display: flex; /* Aktivált állapotban megjelennek a linkek */
    }
}


/***************************************************************/

.hero {
    text-align: center;
    padding: 50px;
    /*background-color: rgba(255, 255, 255, 0.8);*/
    background-color: white;
    color: #a5002d;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
    margin-bottom:20px;
}


h1, h2, h3, h4, h5, h6 {
    margin: 20px 0;
    font-family: var(--font-family-header);
    font-optical-sizing: auto;
    font-weight: var(--font-family-weight);
    font-style: normal;
    /*font-variation-settings: "wdth" 100;*/
    font-size: clamp(1.5rem, 3vw, 3rem);
    text-transform: uppercase;
    letter-spacing: 5px;
}




.gradient {
    background: linear-gradient(180deg, gold, #67011c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.slogan {
    font-size: clamp(1.5rem, 3vw, 2rem);
}








section {
    /*padding: 20px;*/
    /*background-color: rgba(255, 255, 255, 0.9);*/
    /*background-color: white;*/
    margin: 10px;
    /*border-radius: 10px;*/
    /*box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);*/
}
section h2 {
    text-align: center;
    color: #a5002d;
}
section p {text-align:center;}
.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.service-item {
    flex: 1 1 calc(33.333% - 20px);
    display: flex;
    margin: 10px;
    padding: 20px;
    border: 1px solid gold;
    text-align: center;
    background: #ffe8bd;
    /* border-radius: 10px; */
    cursor: pointer;
    /* box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3); */
    text-transform: uppercase;
    font-family: var(--font-family-subheader);
    font-weight: 300;
    justify-content: center;
    align-items: center;
}
.service-item:hover {
    color: gold;
    font-weight:400;
    background: var(--hover-gradient-background);
}

.holiday-button {
    background-color: #a5002d;
    padding: 10px 20px;
    text-decoration: none;
    color: gold;
    /*border-radius: 5px;*/
    display: flex;
    justify-content: center;
    max-width: 300px;
    margin: 0 auto;
    margin-top: 30px;
}

/**************FOOTER**********************************************/
footer {
    background: var(--background-red);
color: gold;
padding: 40px 20px;
margin-top: 20px;
border-top: 1px solid rgb(255 217 0 / 82%);
font-size: 0.9rem;
}

.footer-container {
max-width: 1200px;
margin: 0 auto;
display: flex;
flex-direction: column;
gap: 20px;
}

.footer-top {
display: flex;
justify-content: space-between;
align-items: flex-start;
flex-wrap: wrap;
gap: 20px;
}

.footer-logo-section {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
}

.footer-logo {
max-width: 170px;
margin-top: -30px;
}

.footer-links, .footer-nav {
flex: 1;
min-width: 200px;
}

.footer-links h4, .footer-nav h4 {
font-size: 1.1rem;
margin-bottom: 10px;
text-transform: uppercase;
color: #ffd700;
}

.footer-links ul, .footer-nav ul {
list-style: none;
padding: 0;
margin: 0;
}

.footer-links ul li, .footer-nav ul li {
margin: 5px 0;
}

.footer-links ul li, .footer-nav ul li a {
color: gold;
text-decoration: none;
}

.footer-nav ul li a:hover {
text-decoration: underline;
}

.footer-bottom {
text-align: center;
border-top: 1px solid rgba(255, 217, 0, 0.35);
padding-top: 10px;
font-size: 0.8rem;
}
.business-data {
font-size:12px;
}
@media (max-width: 768px) {
.footer-top {
flex-direction: column; /* Mobilon a tartalom egymás alá kerül */
align-items: center; /* Középre igazítás */
}

.footer-logo-section {
order: 1; /* Logó legfelül */
}

.footer-links {
order: 2; /* Kapcsolat alatta */
}

.footer-nav {
order: 3; /* Fontos linkek következnek */
}

.footer-bottom {
order: 4; /* Copyright legalul */
}

.footer-links ul, .footer-nav ul {
text-align: left; /* Középre igazított listaelemek mobilon */
}

.footer-logo {
margin-bottom: 20px; /* Térköz a logó és az alatta lévő szekciók között */
}
}

/************************************************************/
.hero-logo {
    position:absolute;
    top:20px;
    right:20px;
    max-width:120px;
    z-index:3;
}
.hero.pref_hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 65vh;
    overflow: hidden;
    color: #fff;
    text-align: center;
    padding: 0;
    margin: 0;
    border-radius: 0;
}
.hero-main-image.pref_hero-main-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Szélesség kitöltése */
    height: 100%; /* Magasság kitöltése */
    background-image: url('/images/budaivar.png');
    background-size: cover;
    background-repeat:no-repeat;
    background-position: center center;
}
#reszletek .hero-main-image.pref_hero-main-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Szélesség kitöltése */
    height: 100%; /* Magasság kitöltése */
    background-image: url('/images/halaszbastya.jpg');
    background-size: cover;
    background-repeat:no-repeat;
    background-position: right center;
}
#kapcsolat .hero-main-image.pref_hero-main-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Szélesség kitöltése */
    height: 100%; /* Magasság kitöltése */
    background-image: url('/images/paraszthaz.png');
    background-size: cover;
    background-repeat:no-repeat;
    background-position: right center;
}

#reszletek .hero-overlay.pref_hero-overlay,#kapcsolat .hero-overlay.pref_hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}
.hero-overlay.pref_hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}
.hero-content.pref_hero-content {
    position: absolute;
    z-index: 2;
    bottom: 2%;
    right: 1%;
    text-align: right;
}
.hero-content.pref_hero-content * {
    text-align:right;
}

.hero-description.pref_hero-description {
    font-size: 1.2rem;
    margin: 20px 0;
    color: #ddd;
}
.hero-description h1,.hero-description h2,.hero-description h3,.hero-description h4,.hero-description h5,.hero-description h6 {
    text-align:center;
    color: gold;
    font-size: clamp(1rem, 3vw, 2rem);
    margin:0;
}
.text-border {
    text-shadow: -2px -2px 0 #000000, 2px -2px 0 #000000, -2px 2px 0 #000000, 2px 2px 0 #000000;
}

.hero-description p {
    text-align:center;
    color: gold;
    font-size: clamp(0.7rem, 3vw, 0.9rem);
    margin:0;
}
p {
    margin:0;
}
/*@media (max-width: 767px) {
    .hero-image.pref_hero-image {
        transform: translate(-50%, -50%);
    } 
}*/
@media (max-width: 700px) {
    nav {
        gap: 10px;
        flex-direction: column-reverse;
    }
}
/************************************************************/

/*******SZOLGÁLTATÁSOK******************************************************/
/* Köralakú képek */
.circle-image img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    
    border: 1px solid gold;
}

/* Kártyák hover effektekkel */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Biztosítsuk, hogy a kártyák egyforma magasak legyenek */
.card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
}

.card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.services {
    background: transparent;
    border: 0;
    box-shadow: none;
}
/*.services h2 {
    background: #a5002d;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}*/
/*****************************************************/

/********************************************************/
/* FLIP CARD */
/* Flip Card Wrapper */
.flip-card {
    width: 100%;
    height: 340px; /* Rögzített magasság */
    perspective: 1000px; /* 3D hatás */
    position: relative;
}

/* Inner Container */
.flip-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s ease-in-out;
}

/* Flip Effect on Hover */
.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

/* Front and Back */
.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align:center;
    padding: 20px;
    /*border-radius: 10px;*/
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Front Side */
.flip-card-front {
    background: #ffe8bd;
    border: 1px solid gold;
}
.flip-card-front h1, .flip-card-front h2, .flip-card-front h3, .flip-card-front h4, .flip-card-front h5, .flip-card-front h6 {
    font-family: var(--font-family-subheader);
    font-weight:100;
}
/* Back Side */
.flip-card-back {
    background: var(--hover-gradient-background);
    transform: rotateY(180deg);
    text-align: center;
    color:gold;
    text-transform:uppercase;
    font-size:14px;
}

/* General Styling for Text and Buttons */
.card-title {
    font-size: clamp(1.2rem, 3vw, 0.9rem);
    font-weight: 300;
    margin-bottom: 10px;
    color: #a5002d;
}

.holiday-button {
    background: var(--hover-gradient-background);
    color: gold;
    padding: 10px 20px;
    /*border-radius: 5px;*/
    border: none;
    text-transform: uppercase;
    cursor: pointer;
    border: 1px solid #a5002d21;


    background-color: #540017;
    color: gold;
    border: 2px solid gold;
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.holiday-button:hover {
    background: gold;
    color: #a5002d;

    background-color: gold;
    color: #540017;
    transform: translateY(-3px); /* Gomb kiemelése */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
.row.g-4 {
    width:100%;
}

/***********************************************************/

/*********************************************************/
.more {
    text-align:center;
}
/*****************************************************/

/*****************************************************/
.about {
    text-align:left;
}
.about p {
    text-align:justify;
}
.about h1, .about h2, .about h3, .about h4, .about h5, .about h6 {
    font-size:24px;
    text-align:left;
    font-weight:400;
}
/*****************************************************/

/********************************************************/

.attraction-card {
display: flex;
flex-direction: column;
height: 100%; /* Kártya teljes magassága a szülő elemhez igazodik */
background-color: #ffe8bd;
/*border-radius: 10px;*/
overflow: hidden;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.attraction-card img {
width: 100%;
object-fit: cover;
max-height: 200px; /* Kép magasságának korlátozása */
}

.attraction-card .card-body {
display: flex;
flex-direction: column;
justify-content: space-between; /* Tartalom egyenletes elosztása */
flex-grow: 1; /* Kitölti a rendelkezésre álló teret */
padding: 20px;
}

.attraction-card .card-title {
font-family: var(--font-family-subheader);
color: #540017;
}

.attraction-card .card-text {
flex-grow: 1; /* Szöveg rugalmasan nyúlik */
/*font-size: 1rem;
color: #333;*/
margin-bottom: 15px;
text-align:justify;
}

.btn-custom {
background-color: #540017;
color: gold;
border: 2px solid gold;
text-transform: uppercase;
font-weight: bold;
text-decoration: none;
padding: 8px 12px;
transition: all 0.3s ease;
text-align: center;
}

.btn-custom:hover {
background-color: gold;
color: #540017;
transform: translateY(-3px);
}
.more-attractions {
margin-left:3%;
}
/***********************************************************/

/******************************************************************/
/* Általános beállítások */
.detailed-attraction {
background-color: #ffe8bd;
/*color: #333;*/
line-height: 1.8;
}

.section-title {
font-family: var(--font-family-header);
/*font-size: 3rem;
font-weight: bold;*/
color: #540017;
text-transform: uppercase;
}

.lead {
font-size: 1.2rem;
/*color: #555;*/
}

.subheading {
font-family: var(--font-family-subheader);
font-size: 1.8rem;
/*font-weight: bold;
color: #540017;*/
margin-bottom: 20px;
}

/* Kép és szöveg blokk */
.row img {
object-fit: cover;
max-height: 400px;
}

/* Galéria */
.gallery img {
object-fit: cover;
width: 100%;
transition: transform 0.3s ease;
}

.gallery img:hover {
transform: scale(1.05);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Hasznos információk */
.additional-info p {
font-size: 1.1rem;
font-weight: 500;
margin-bottom: 10px;
}

/*********************************************************************/

/***********************************************************/
/* Általános szekció beállítás */
.about-us {
    background-color: #ffe8bd; /* Világos háttér */
    line-height: 1.8;
}
.about-us h3 {
    font-size: 24px;
}
.about-us p {
    text-align:justify;
}
.section-title {
    font-family: var(--font-family-header);
    text-transform: uppercase;
}

/* Alcímek */
.subheading {
    font-family: var(--font-family-header);
    margin-bottom: 20px;
}

/* Kép és szöveg elrendezés */
.about-us img {
    max-height: 400px;
    object-fit: cover;
    width: 100%;
    /*border-radius: 10px;*/
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Bevezető szöveg */
.lead {
    font-size: 1.2rem;
    font-weight: 500;
}

/* Reszponzív igazítás */
@media (max-width: 768px) {
    .row {
        text-align: center;
    }

    .about-us img {
        margin-bottom: 20px;
    }
}

/*******************************************************/

/********************************************************/
/* Checkbox és Telefonszám mező */
.contact-section {
    background: #ffe8bd;
}

.form-check-label {
    font-size: 1rem;
}

.form-check-input {
    margin-right: 10px;
}

#phoneField {
    transition: all 0.3s ease;
}

.btn-custom {
    background-color: #540017;
    color: gold;
    border: 2px solid gold;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: gold;
    color: #540017;
    transform: translateY(-3px);
}

/**********************************************************/
/*******POLICY************************************************/
.policy-section {
    background-color: #ffe8bd;
    color: var(--text-dark);
}

.policy-section .section-title {
    color: var(--gradient-primary);
    margin-bottom: 1.5rem;
}

.policy-content p {
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align:left;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 0.75rem 1.5rem;
    color: #fff;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: var(--gradient-secondary);
}
