/* GOOGLE FONTS IMPORT */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;700&display=swap');

/* ALAP STÍLUS */
body {
  font-family: 'Dancing Script', cursive;
  font-size: 22px;
  line-height: 1.6;
  margin: 0;
  color: #222;
  text-align: center;
  min-height: 100vh;
  background: linear-gradient(to bottom, #ffffff, #c0e4ed);
}

/* NAVIGÁCIÓ */
nav {
  background: rgba(192, 228, 237, 0.85);
  padding: 15px;
  border-bottom: 2px solid #98c6d0;
  position: relative;
  z-index: 10;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 22px;
  margin: 0;
  padding: 0;
}

nav a {
  color: #004466;
  text-decoration: none;
  font-weight: bold;
  font-size: 22px;
  padding: 10px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.6);
  transition: all 0.25s ease;
}

nav a:hover,
nav a:focus {
  background: #98c6d0;
  color: white;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  outline: none;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #004466;
  padding: 10px 20px;
}

/* MAIN TARTALOM */
main {
  padding: 20px;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

/* HOME CARD */
.home-card {
  background: rgba(255,255,255,0.95);
  border-radius: 15px;
  padding: 30px;
  max-width: 900px;
  margin: 30px auto;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  animation: fadeInUp 1s ease;
  text-align: center;
}

.home-card .home-content {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  flex-wrap: wrap;
}

.home-card .home-content .home-image {
  max-width: 350px;
  width: 100%;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-card .home-content .home-image:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.home-card .home-content .home-text {
  flex: 1;
  text-align: left;
}

/* Gépelő kép stílus */
#typing-image {
  display: none;
  margin: 20px auto;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-sizing: border-box;
}

/* CONTACT CARD */
.contact-card {
  background: rgba(255,255,255,0.95);
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  width: 90%;
  margin: 40px auto;
  box-sizing: border-box;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: fadeInUp 1s ease;
}

.contact-card input,
.contact-card textarea {
  font-family: 'Dancing Script', cursive;
  font-size: 20px;
  padding: 12px;
  border-radius: 10px;
  border: 2px solid #98c6d0;
  width: 100%;
  box-sizing: border-box;
  transition: all 0.25s ease;
}

.contact-card input:hover,
.contact-card textarea:hover,
.contact-card input:focus,
.contact-card textarea:focus {
  border-color: #004466;
  outline: 3px solid #004466;
  box-shadow: 0 0 10px rgba(0,68,102,0.4);
  transform: scale(1.01);
}

.contact-card textarea { resize: vertical; }

.submit-btn {
  font-family: 'Dancing Script', cursive;
  font-size: 22px;
  background: rgba(255,255,255,0.7);
  border: 2px solid #98c6d0;
  border-radius: 25px;
  color: #004466;
  padding: 12px 25px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.submit-btn:hover,
.submit-btn:focus {
  background: #98c6d0;
  color: white;
  transform: scale(1.04);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.submit-btn:active {
  transform: scale(0.98);
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* CTA GOMB */
.cta-button {
  display: inline-block;
  font-family: 'Dancing Script', cursive;
  font-size: 24px;
  color: #fff;
  background-color: #98c6d0;
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 15px;
}

.cta-button:hover {
  background-color: #004466;
  transform: scale(1.05);
}

/* MEDIA SECTION */
.media-section {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* GALÉRIA KÉPEK */
.gallery-thumbnails {
  flex: 1;
  max-width: 600px;
}

.gallery-thumbnails .gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.gallery-thumbnails .gallery a img {
  width: 120px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-thumbnails .gallery a img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

/* VIDEÓK */
.video-section {
  flex: 1;
  max-width: 400px;
}

.video-gallery {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.video-gallery img {
  width: 250px;
  height: auto;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.video-gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

/* LIGHTBOX */
#lightbox {
  position: fixed;
  top:0; left:0;
  width:100%; height:100%;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

/* COOKIE BANNER */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 68, 102, 0.9);
  color: white;
  padding: 15px 10px;
  text-align: center;
  z-index: 9999;
  display: none;
}

#cookie-banner p {
  display: inline-block;
  margin: 0;
  font-size: 16px;
  margin-right: 10px;
}

#cookie-banner button {
  background: #98c6d0;
  color: #004466;
  border: none;
  padding: 8px 15px;
  font-size: 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.25s ease;
}

#cookie-banner button:hover {
  background: #004466;
  color: white;
}

/* TYPING EFFECT */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* FOOTER */
#site-footer {
  background: rgba(192, 228, 237, 0.95);
  color: #004466;
  text-align: center;
  padding: 30px 15px;
  font-size: 14px;
  border-top: 2px solid #98c6d0;
}

#site-footer .footer-logo {
  max-width: 120px;
  height: auto;
  margin-bottom: 15px;
}

/* MOBIL */
@media (max-width: 768px) {
  .menu-toggle { display: block; }

  nav ul.nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
    background: rgba(192, 228, 237, 0.95);
    padding: 0;
    z-index: 999;
  }

  nav ul.nav-links.active { display: flex; }

  nav ul.nav-links li {
    text-align: center;
    padding: 12px 0;
    border-bottom: 1px solid #98c6d0;
  }

  nav ul.nav-links li:last-child { border-bottom: none; }

  nav a { font-size: 18px; padding: 10px 0; }

  .home-card .home-content { flex-direction: column; align-items: center; text-align: center; }
  .home-card .home-content .home-image { max-width: 90%; }
  .home-card .home-content .home-text { text-align: center; }

  .contact-card { width: 90%; }

  .media-section {
    flex-direction: column;
    align-items: center;
  }

  .gallery-thumbnails { max-width: 100%; }
  .video-section { max-width: 100%; }
  .gallery-thumbnails .gallery a img { width: 80px; height: 60px; }
  .video-gallery img { width: 100%; height: auto; }

  #typing-image { max-width: 100%; height: auto; display: block; margin: 20px auto; }
}