/* ===== Alap változók (light mode) ===== */

/* ===== Light mode erősebb menü kontraszt ===== */
:root {
  --bg-color: #fdfdfd;
  --text-color: #222;
  --menu-bg: #fdfdfd;   /* világos, de kontrasztosabb a sima fehérnél */
  --menu-text: #222;
  --submenu-bg: #f7f7f7;
  --hover-bg: rgba(0, 200, 255, 0.15);
  --accent-color: #00c8ff;
  --accent-color2: #fff;
  --card-bg: #ffffff;
  --card-border: #ddd;
  --footer-bg: #f5f5f5;
  --footer-text: #222;
  --transition-speed: 0.3s;
  --header-bg: #f0f8fa;  /* menüvel harmonizáló */
  --topborder01: #eaeaea;
  --link-color: #3ec1d3;*
  --link-hover-color: #0077b6;
  --main-menu-color: #3ec1d3;
  --light-shadow-01: rgba(0, 0, 0, 0.6);
  
  --light-shadow-02: rgba(0, 0, 0, 0.4);
  --section-bg: url("https://tihany.w6.hu/public/img/bg-vv.jpg") no-repeat center center/cover;
  --section-bg-lv: url("https://sziszi.w6.hu/public/img/bg-latnivalok-01.jpg") no-repeat center center/cover;
}

span.toplinkcolor {
	color:var(--main-menu-color) !important;
}


/* ===== Dark mód ===== */
body.dark-mode {
  --bg-color: #121212;
  --text-color: #f5f5f5;
  /*--menu-bg: #1e1e1e;*/
  --menu-bg: #121212;
  --menu-text: #f5f5f5;
  --submenu-bg: #2a2a2a;
  --hover-bg: rgba(0, 200, 255, 0.25);
  --accent-color: #00e0ff;
  --accent-color2: #00e0ff;
  /*--card-bg: #1a1a1a;*/
  --card-bg: #121212;
  --card-border: #333;
  --footer-bg: #1a1a1a;
  --footer-text: #f5f5f5;
  --header-bg: #1a1a1a; /* sötétben enyhén sötétebb */
  --topborder01: #010101;  
  --link-color: #4cc9f0;         /* világos kék, jól látszik sötét háttéren */
  --link-hover-color: #90e0ef;   /* még világosabb hover */
  --main-menu-color: #3ec1d3;
  --light-shadow-01: rgba(0, 200, 255, 0);
  
  --light-shadow-02: rgba(0, 0, 0, 0.6);
  --section-bg: url("https://tihany.w6.hu/public/img/bg-vv-dark.jpg") no-repeat center center/cover;
  --section-bg-lv: url("https://sziszi.w6.hu/public/img/bg-latnivalok-01-dark.jpg") no-repeat center center/cover;
}

html {
  height: 100%;
  background: var(--bg-color) !important;
  color: var(--text-color) !important;
  transition: background var(--transition-speed), color var(--transition-speed);
}

body {
  /*height: 100%;*/
  background: var(--bg-color) !important;
  color: var(--text-color) !important;
  transition: background var(--transition-speed), color var(--transition-speed);
}



/* ===== Header finom háttér ===== */
/*
header {
  background: var(--header-bg);
  transition: background var(--transition-speed);
}
*/
/*
header {
  background: var(--header-bg);
  transition: background var(--transition-speed);
  
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
*/
header {
  background: var(--header-bg);
  transition: background var(--transition-speed);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100; /* kisebb, mint a menü */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

header.hidden {
  transform: translateY(-100%);
  box-shadow: none;
}

header.visible {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}




.hero {
  position: relative;
  width: 100%;
  height: 750px; /* alap nagy kijelzőn */
  background: url('https://sziszi.w6.hu/public/img/h1.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

/* Szöveges tartalom középre */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.hero .btn {
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  background: var(--accent-color);
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.hero .btn:hover {
  background: #0066cc; /* kicsit sötétebb a kéknél */
  transform: scale(1.05);
}

/* Kisebb kijelzők – magasságot arányból számoljuk */
@media (max-width: 992px) {
  .hero {
    padding-top:120px !important;
	height: auto;
    aspect-ratio: 5 / 1; /* 1:5 arány */
  }
}

.page-title-spec {
  position: relative;
  width: 100%;
  height: 250px;
  background: url('https://tihany.w6.hu/public/img/page-title-bg.png') center bottom no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /*color: white;*/
  color: var(--accent-color);
  /*background: var(--bg-color) !important;*/
  overflow: hidden;
}

/* Szöveg */
.page-title-content {
  position: relative;
  z-index: 2;
}

.page-title-spec h2 {
  font-size: 3rem;
  margin: 0;
}

.page-title-spec p {
  font-size: 1.2rem;
  margin-top: 10px;
}

.container {
  background: var(--card-bg);
  /* border: 1px solid var(--card-border);  <<< kivéve */
  border-radius: 0;
  padding: 1rem;
  /*margin: 1rem auto;*/
  color: var(--text-color);
  transition: background var(--transition-speed), color var(--transition-speed);
}

.shadows {
  /*background: var(--bg-container);
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;*/

  /* Csak oldalakra árnyék */
  /*
  box-shadow: -5px 0 15px -5px rgba(0,0,0,0.15),
               5px 0 15px -5px rgba(0,0,0,0.15);
	*/
}

div.topborder01 {
	border-top:var(--topborder01) solid 1px;
}

.myfull-width-bg {
  width: 100%;
  background: var(--menu-bg);
  color: var(--menu-text);
  transition: background var(--transition-speed), color var(--transition-speed);
}

.logo img {
  display: block;
}

.hamburger {
  font-size: 26px;
  padding: 10px 15px;
  cursor: pointer;
  color: var(--menu-text);
  display: none;
  transition: transform var(--transition-speed);
}
.hamburger:hover {
  transform: scale(1.1);
}

.theme-toggle {
  cursor: pointer;
  font-size: 22px;
  margin-left: 15px;
  display: inline-block;
  transition: transform var(--transition-speed), color var(--transition-speed);
}

.theme-toggle:hover {
  transform: rotate(180deg);
  color: var(--accent-color);
}





/* ===== Desktop menü ===== */

.side-menu {
  position: static;
  width: auto;
  height: auto;
  background: none;
  overflow: visible;
  padding-top: 0;
}

.side-menu ul.menu {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  list-style: none;
}

.side-menu li {
  position: relative;
  border: none;
}

/* Menü linkek */

.side-menu a {
  padding: 8px 14px;
  color: var(--menu-text);
  text-decoration: none;
  display: block;
  white-space: nowrap;
  position: relative;
  border-radius: 5px;
  background: rgba(0,0,0,0.04);
  transition: background var(--transition-speed), color var(--transition-speed);
}

.side-menu a:hover {
  background: var(--hover-bg);
  color: var(--accent-color);
}


/* Hover animáció – aláhúzás */

.side-menu a::after {
  content: "";
  position: absolute;
  left: 14px;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width var(--transition-speed);
}
.side-menu a:hover::after {
  width: calc(100% - 28px);
}


/* ===== Desktop almenü ===== */
/*
.side-menu .submenu {
  display: none;
  position: absolute;
  background: var(--submenu-bg);
  top: 100%;
  left: 0;
  min-width: 160px;
  z-index: 10;
  list-style: none;
  margin: 0;
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--transition-speed), transform var(--transition-speed);
}
*/
.side-menu .submenu {
  display: none;
  position: absolute;
  background: var(--submenu-bg);
  top: 100%;
  left: 0;
  min-width: 180px;
  z-index: 10;
  list-style: none;
  margin: 0;
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--transition-speed), transform var(--transition-speed);
}
.side-menu li:hover > .submenu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* ===== 3. szintű almenü (jobbra nyílik) ===== */
.side-menu .submenu .submenu {
  top: 0;
  left: 100%; /* jobbra nyílik az előzőtől */
  transform: translateX(10px);
  opacity: 0;
  transition: opacity var(--transition-speed), transform var(--transition-speed);
}

.side-menu .submenu li:hover > .submenu {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

/* ===== Submenük belseje ===== */
.side-menu .submenu li {
  border-bottom: 1px solid var(--card-border);
}

.side-menu .submenu a {
  padding: 10px 14px;
  background: none;
  border-radius: 0;
  font-size: 0.95rem;
}


/*
.side-menu li:hover .submenu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.side-menu .submenu li {
  border-bottom: 1px solid var(--card-border);
}

.side-menu .submenu a {
  border-radius: 0;
}
*/


.menu .icon {
  margin-right: 6px;
  font-size: 18px;
  vertical-align: middle;
}


/* ===== Mobil nézet ===== */
@media (max-width: 1000px) {
  .hamburger {
    display: block;
  }
	/*
  .side-menu {
    position: fixed;
    top: 0;
    right: -260px;
    width: 260px;
    height: 100%;
    background: var(--menu-bg);
    color: var(--menu-text);
    overflow-y: auto;
    transition: right var(--transition-speed);
    z-index: 1000;
    padding-top: 60px;
  }  
  */
  .side-menu {
    position: fixed;
    top: 0;
    right: -260px;
    width: 260px;
    height: 100vh; /* <<< mindig teljes magasság */
    background: var(--menu-bg);
    color: var(--menu-text);
    overflow-y: auto;
    transition: right var(--transition-speed);
    z-index: 2000; /* <<< mindig a header felett */
    padding-top: 60px; /* hogy ne lógjon a logó alá */
  }

  .side-menu ul.menu {
    display: block;
  }

  .side-menu li {
    border-bottom: 1px solid var(--card-border);
  }

  .submenu {
    display: none;
    position: static;
    background: var(--submenu-bg);
    border-radius: 0;
    box-shadow: none;
  }

  .side-menu .open + .submenu {
    display: block;
  }
}

/* ===== Overlay ===== */
/*
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  z-index: 900;
}
*/
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.6);
  display: none;
  z-index: 1500; /* <<< a side-menu alatt, de a header felett */
}


/* ===== Footer ===== */
footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  text-align: center;
  /*padding: 15px;*/
  border: none; /* biztos ami biztos */
  transition: background var(--transition-speed), color var(--transition-speed);
}

div.img-wrap-vl {
	padding:15px;
	display:block;
}

.teaser-contact-icon .border-icon {
    border: 4px solid #fff;
    border-radius: 50%;
    display: inline-block;
    font-size: 65px;
    height: 2.5em;
    padding: 4px;
    width: 2.5em;
}

/* Alap link stílus */
a {
  position: relative;
  text-decoration: none !important;
  color: var(--link-color) !important;
  transition: color 0.3s ease;
}

/* Animált vonal (pseudo-element) */
a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: var(--link-color);
  transition: width 0.3s ease;
}

a:hover {
  color: var(--link-hover-color);
}

a:hover::after {
  width: 100%;
}

div.item-media img {
	width: 100%;
	max-width: 120px;
}


.item-content {
    padding-top: 23px;
}

.item-content p {
	padding:12px;
}

.item-content h6 {
	font-size:24px;
}



.content-block {
  max-width: 1200px;
  margin: 40px auto;
  text-align: center;
  padding: 20px;
}

.content-block h2 {
  font-size: 2.5rem;
  color: var(--accent-color); /* diamond kék */
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25); /* árnyék */
  margin-bottom: 20px;
}

.content-block h5 {
  font-size: 2rem;
  color: var(--accent-color); /* diamond kék */
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25); /* árnyék */
  margin-bottom: 20px;
}

.shadowinlightbluetext {
	color: var(--accent-color); /* diamond kék */
	display: inline-block;
	padding: 0 10px;
	background: var(--light-shadow-01);
	border-radius: 6px;
}
.shadowinlightbluetext2 {
	color: var(--accent-color2);
	display: block;
	padding: 0 10px;
	background: var(--light-shadow-02);
	border-radius: 6px;
}



body.light-mode .content-block h2 {
  /* világos módban extra kontraszt */
  -webkit-text-stroke: 1px #0077b6; /* vékony körvonal */
}

.content-block p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text-color);
  margin: 0 auto;
}

img.img1 {
	width:100%;
	height:auto;
	margin:10px;
	border:#CCC solid 1px;
	border-radius:5px; 
	/*padding:3px;*/
}



/* ====== Review Card ====== */
.vv {
  width: 100%;
  background: var(--section-bg);
  padding: 80px 0;
}
.lv {
  width: 100%;
  background: var(--section-bg-lv);
  padding: 80px 0;
}
.review-card {
  max-width: 700px;
  margin: 0 auto;
  padding: 1.5rem;
  background: var(--card-bg);
  border-radius: 15px;
  box-shadow: var(--card-shadow);
  transition: background 0.3s, color 0.3s;
}
.review-card p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-color);
  margin-top: 10px;
}
.review-card small {
  color: var(--muted-text);
}
.review-card .quote {
  font-size: 3rem;
  color: var(--quote-color);
  line-height: 0;
}
/* Tartalom mindig overlay fölött legyen */
.vv > * {
  position: relative;
  z-index: 1;
}
.vv h2 {
  display: inline-block;
  background: rgba(0, 0, 0, 0.1); /* világos módban halvány szürke */
  padding: 0.5rem 1rem;
  border-radius: 8px;
  backdrop-filter: blur(4px); /* üveges hatás (ha támogatott) */
  transition: background 0.3s;
}
.lv > * {
  position: relative;
  z-index: 1;
}
.lv h2 {
  display: inline-block;
  background: rgba(0, 0, 0, 0.1); /* világos módban halvány szürke */
  padding: 0.5rem 1rem;
  border-radius: 8px;
  backdrop-filter: blur(4px); /* üveges hatás (ha támogatott) */
  transition: background 0.3s;
}








/* Booking section háttér */
.booking-section {
  background: var(--bg-color);
  color: var(--text-color);
  transition: background 0.3s, color 0.3s;
}
.booking-section h2 {
  color: var(--accent-color);
  text-shadow: 2px 2px 6px rgba(0,0,0,0.15);
}
/* Form inputok */
.booking-form .form-control,
.booking-form .form-select {
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  color: var(--text-color);
  transition: all 0.3s;
}
.booking-form .form-control:focus,
.booking-form .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 6px var(--accent-color);
  outline: none;
}
/* Textarea külön */
.booking-form textarea {
  resize: none;
}
/* Submit gomb */
.booking-form .submit-btn {
  background: var(--accent-color);
  color: #fff;
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.2s, background 0.3s;
}
.booking-form .submit-btn:hover {
  transform: translateY(-2px);
  background: #009ec7;
}
/* Dark mode finomabb kontraszt */
body.dark-mode .booking-form .form-control,
body.dark-mode .booking-form .form-select {
  background: #1e1e1e;
  color: #f5f5f5;
  border: 1px solid #333;
}
body.dark-mode .booking-form .form-control:focus,
body.dark-mode .booking-form .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 6px var(--accent-color);
}




/* Booking section – alap */
.booking-section {
  width: 100%;
  position: relative;
  padding: 80px 0;
  color: var(--text-color);
  transition: background 0.3s, color 0.3s;
  
  /* világos mód: világos gradient + finom pattern */
  background: linear-gradient(135deg, #f0f9ff, #e6f7fa);
}

body.dark-mode .booking-section {
  /* sötét mód: sötét gradient + pattern */
  background: linear-gradient(135deg, #0d1b2a, #1b263b);
}

/* Pattern overlay – világos */
.booking-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(0,200,255,0.08) 0, transparent 20%),
                    radial-gradient(circle at 80% 40%, rgba(0,200,255,0.07) 0, transparent 50%),
                    radial-gradient(circle at 40% 80%, rgba(0,200,255,0.09) 0, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

body.dark-mode .booking-section::before {
  background-image: radial-gradient(circle at 15% 25%, rgba(0,200,255,0.15) 0, transparent 35%),
                    radial-gradient(circle at 70% 35%, rgba(0,200,255,0.12) 0, transparent 40%),
                    radial-gradient(circle at 50% 75%, rgba(0,200,255,0.1) 0, transparent 45%);
}

/* Tartalom mindig a pattern fölött */
.booking-section .container {
  position: relative;
  z-index: 1;
}




