/* =============================== */
/* HERO VIDEO BANNER               */
/* =============================== */

.hero-video {
  position: relative;
  height: 50vh;
  overflow: hidden;
}

.hero-background-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-overlay {
  position: relative;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-overlay h2 {
  color: #e0b200;
  font-size: 48px;
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-overlay p {
  color: #f2f2f2;
  font-size: 20px;
}

/* =============================== */
/* CONTACT + ASSOCIATES – CLEAN    */
/* =============================== */

.contact-section {
  background: #0b0b0b;
  padding: 100px 30px;
  color: #f2f2f2;
  text-align: center;
}

.contact-section h3 {
  font-size: 42px;
  color: #ffcc00;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.main-contact {
  max-width: 800px;
  margin: 0 auto 60px;
}

.main-contact p {
  font-size: 18px;
  margin: 10px 0;
}

.main-contact a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.main-contact a:hover {
  color: #ffcc00;
}

.contact-actions {
  margin: 30px 0;
}

.cta-btn {
  display: inline-block;
  background: #e0b200;
  color: #000;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  margin: 5px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.cta-btn:hover {
  background: #ffcc00;
  transform: translateY(-2px);
}

.associates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.associate-card {
  background: #1a1a1a;
  padding: 25px 20px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}

.associate-card h4 {
  margin: 0 0 5px;
  font-size: 20px;
  color: #fff;
}

.associate-card .role {
  font-size: 14px;
  color: #e0b200;
  margin-bottom: 10px;
  font-style: italic;
}

.associate-card p {
  font-size: 16px;
  margin: 5px 0;
}

.associate-card a {
  color: #e0b200;
  text-decoration: none;
}

.associate-card a:hover {
  color: #ffcc00;
}

.associate-actions {
  margin-top: 12px;
}

.associate-actions .cta-btn {
  background: #000000;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 25px;
  margin: 3px;
}

.associate-actions .cta-btn:hover {
  background: #ffcc00;
}

@media (max-width: 768px) {
  .hero-overlay h2 {
    font-size: 32px;
  }

  .hero-overlay p {
    font-size: 16px;
  }

  .contact-section {
    padding: 60px 20px;
  }

  .contact-section h3 {
    font-size: 32px;
  }

  .main-contact p {
    font-size: 16px;
  }

  .associates-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .associate-card {
    text-align: center;
  }
}
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background-color: #0d0d0d;
  color: #ffffff;
}

header.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #1a1a1a;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid #333;
}

header h1 {
  font-size: 22px;
  color: #e0b200;
  margin: 0;
  flex: 1 1 auto;
}

header nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  flex: 1 1 auto;
  gap: 10px;
}

header nav a {
  color: #e0b200;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

header nav a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Mobilos fejléc */
@media (max-width: 600px) {
  header.navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 12px;
  }

  header h1 {
    font-size: 16px;
    margin-bottom: 4px;
  }

  header nav {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-top: 0;
    gap: 4px;
  }

  header nav a {
    margin: 0;
    font-size: 14px;
    padding: 2px 0;
  }
}

/* Hero section */
.hero {
  background-image: url('original.jpg');
  background-size: cover;
  background-position: center;
  height: auto;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
}

.hero h2 {
  font-size: 50px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.hero p {
  font-size: 20px;
  color: #dddddd;
  margin-top: 10px;
}

@media (max-width: 600px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }
}

/* Content sections */
.content-section {
  background-color: #1a1a1a;
  padding: 20px 10px;
  text-align: center;
}

.content-section h3 {
  font-size: 28px;
  color: #e0b200;
  margin-bottom: 20px;
}

.content-section p,
.content-section ul {
  font-size: 18px;
  color: #ffffff;
  margin: 10px 0;
}

.content-section ul {
  list-style: none;
  padding: 0;
}

.content-section ul li {
  margin: 10px 0;
}

/* CTA section */
.cta-section {
  background-color: #2a2a2a;
  padding: 40px 20px;
  text-align: center;
  color: #fff;
}

.cta-section h3 {
  font-size: 22px;
  color: #e0b200;
  margin-bottom: 10px;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.cta-btn {
  background-color: #e0b200;
  color: black;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background-color: #ffcc00;
}

/* Footer */
footer {
  background-color: #0d0d0d;
  text-align: center;
  padding: 20px;
  font-size: 16px;
}

/* Offers section */
.offers {
  background-color: #1a1a1a;
  padding: 50px 20px;
  text-align: center;
  color: #fff;
}

.offers h2 {
  font-size: 36px;
  color: #e0b200;
  margin-bottom: 30px;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  justify-content: center;
}

.offer {
  display: inline-block;
  width: 300px;
  margin: 20px;
  padding: 15px;
  background-color: #2a2a2a;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  text-align: left;
  opacity: 0;
}

.offer img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.offer h3 {
  font-size: 24px;
  color: #e0b200;
  margin: 10px 0;
}

.offer p {
  font-size: 16px;
  margin: 5px 0;
  color: #ddd;
}

.offer strong {
  color: #fff;
}

@media (max-width: 600px) {
  .offer {
    width: 100%;
    max-width: 90%;
    margin: 15px auto;
  }

  .offer h3 {
    font-size: 20px;
  }

  .offer p {
    font-size: 14px;
  }

  .offers {
    padding: 30px 10px;
  }

  .offers h2 {
    font-size: 28px;
  }
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
}

.modal-content {
  background-color: #1a1a1a;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 600px;
  border-radius: 8px;
  color: #fff;
  position: relative;
  animation: slideIn 0.5s ease-out;
}

.close {
  color: #e0b200;
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #ffcc00;
}

/* Off-market section */
.off-market {
  background: rgba(0, 0, 0, 0.8);
  padding: 30px;
  text-align: center;
  color: white;
}

.off-market h3 {
  font-size: 20px;
  color: #e0b200;
  margin-bottom: 20px;
}

.off-market-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
  justify-content: center;
}

.locked {
  background: rgba(255, 255, 255, 0.2);
  padding: 20px;
  display: inline-block;
  border-radius: 8px;
}

.locked input {
  padding: 10px;
  margin: 10px;
  border: none;
  border-radius: 5px;
}

.locked button {
  padding: 10px 15px;
  background: #e0b200;
  border: none;
  color: black;
  cursor: pointer;
  border-radius: 5px;
}

.locked button:hover {
  background: #ffcc00;
}

.hidden {
  display: none;
}

#secret-content {
  background: rgba(255, 255, 255, 0.2);
  padding: 20px;
  border-radius: 8px;
}

/* Animációk */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
  from { transform: translateY(-50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Contact buttons */
.contact-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-btn {
  background-color: #e0b200;
  color: #000;
  padding: 12px 18px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: background 0.3s ease;
}

.contact-btn:hover {
  background-color: #ffcc00;
}

.contact-btn.whatsapp {
  background-color: #25D366;
  color: white;
}

.contact-btn.call {
  background-color: #e0b200;
  color: black;
}

/* WhatsApp icon floating */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  cursor: pointer;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.5));
  transition: transform 0.2s ease;
}

.whatsapp-float img:hover {
  transform: scale(1.1);
}

.hero-video {
  position: relative;
  width: 100%;
  height: 75vh;
  overflow: hidden;
}

.hero-background-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3); /* Optional overlay tint */
}

.hero-overlay h2 {
  font-size: 40px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.hero-overlay p {
  font-size: 20px;
  margin-top: 10px;
}
.footer {
  background: #111;
  color: #fff;
  padding: 40px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-top {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.footer-top a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.footer-top i {
  margin-right: 8px;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-column {
  flex: 1 1 200px;
}

.footer-column h4 {
  font-style: italic;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-column ul li a:hover {
  color: #fff;
}
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 40px auto 0 auto;
}

.newsletter form {
  display: flex;
  flex-direction: column;
}

.newsletter input[type="email"] {
  padding: 10px;
  border: none;
  margin-bottom: 10px;
  background-color: #eee;
  color: #000;
  border-radius: 5px;
}

.newsletter button {
  background: #fff;
  color: #000;
  border: none;
  padding: 10px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}

.newsletter .disclaimer {
  font-size: 12px;
  color: #aaa;
  margin-top: 10px;
}
 
    .offers-grid .offer img {
      width: 300px; 
      height: 150px; 
      object-fit: cover; 
      border-radius: 8px; 
      transition: all 0.3s ease-in-out;
    }

    
    .offers-grid .offer img:hover {
      transform: scale(1.05); 
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }
   
    button, .contact-btn, .cta-btn, .menu a {
      transition: all 0.3s ease-in-out;
      cursor: pointer;
    }

    
    button:hover, .contact-btn:hover, .cta-btn:hover, .menu a:hover {
      background-color: #e0b200; 
      color: black; 
      transform: scale(1.1); 
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5); 
    }
  
h1, .menu a, .cta-btn {
  color: black; 
}


body {
  background: linear-gradient(to bottom, #121212, #000000);
}


section {
  border: 2px solid #333333; 
}
.close-btn {
  background: none;
  border: none;
  color: #e0b200;
  font-size: 30px;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 20px;
  display: none; /* ALAPBÓL ELREJTJÜK */

}
/* Mobilnézetben megmutatjuk */
@media (max-width: 768px) {
  .close-btn {
    display: block;
  }
}


/* Alap Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: black;
  padding: 10px 40px; /* nagyobb padding, szellősebb */
  position: relative;
  z-index: 100;
}

.navbar h1 {
  color: #e0b200;
  font-size: 1.8rem;
  margin-right: 30px; /* jobbra egy kis extra hely */
}

/* Hamburger gomb */
.menu-toggle {
  background: none;
  color: #e0b200;
  font-size: 34px;
  border: none;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  display: none;
}

/* Menü alap desktopon elrejtve */
.menu {
  display: flex;
  gap: 30px;
}

.menu a {
  color: #e0b200;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
}

/* Mobilnézet */
@media (max-width: 768px) {

  .menu {
  flex-direction: column;
  background: black;
  position: fixed;
  top: 0;
  right: -300px; /* hidden outside the screen */
  height: 100%;
  width: 250px;
  padding: 30px 20px;
  gap: 20px;
  transition: right 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  z-index: 200;
  border-left: 2px solid #333;
  align-items: flex-start;
  justify-content: flex-start;
  pointer-events: none; 
}

  .menu a {
    font-size: 1.2rem;
    color: #e0b200;
    text-align: left;
  }

  .menu.open {
    left: 0;
    opacity: 1; 
  pointer-events: auto; 

  }

  .menu-toggle {
    display: block;
  }
}
.google-map {
  position: relative;
  padding-bottom: 56.25%; 
  height: 0;
  overflow: hidden;
}

.google-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.lightwidget-widget {
  width: 100%;
  height: auto;
  max-width: 100%;
}
html, body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  width: 100vw;
}
.offer-card {
  width: 95%;
  max-width: 1400px;
  margin: 40px auto;
  padding: 40px;
  background-color: #111;
  color: #e0b200;
  text-align: center;
  border-radius: 12px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 250px; /* vagy amekkora kell */
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.offer-card:hover {
  transform: scale(1.01);
  box-shadow: 0 0 25px rgba(224, 178, 0, 0.5);
}

.offer-card h2, .offer-card h4 {
  font-size: 32px;
  margin-bottom: 15px;
}

.offer-card p {
  font-size: 18px;
  margin: 8px 0;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .offer-card {
    padding: 12px;
    min-height: 120px;
  }

  .offer-card h2,
  .offer-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .offer-card p {
    font-size: 14px;
    margin: 5px 0;
  }
}
/* Premium-style Associates section */
.associates-section {
  padding: 80px 20px;
  background: #222;
  color:  #e0b200;
  text-align: center;
}

.associates-section h3 {
  font-size: 36px;               /* nagyobb méret */
  color: #e0b200;
  margin-bottom: 40px;
  text-align: center;            /* középre igazítás */
  font-family: 'Arial', sans-serif;  /* egységes betűtípus */
  font-weight: 600;              /* kicsit vastagabb, mint eddig */
  text-transform: uppercase;     /* ha szeretnéd, maradhat nagybetűs */
  letter-spacing: 1px;
}





.associates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  align-items: start;
}

.associate-card {
  background: #2c2c2c;
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.associate-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.8);
}

.associate-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 3px solid #444;
}

.associate-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #fff;
}

.associate-card p {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #ccc;
}

.associate-card .role {
  font-style: italic;
  color:  #e0b200;
  margin-bottom: 12px;
}
.associate-buttons {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.associate-buttons .contact-btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

/* WhatsApp */
.associate-buttons .whatsapp {
  background-color: #25D366;
  color: white;
}

.associate-buttons .whatsapp:hover {
  background-color: #1ebe5d;
  transform: scale(1.05);
}

/* Call */
.associate-buttons .call {
  background-color: #e0b200;
  color: #000;
}

.associate-buttons .call:hover {
  background-color: #ffcc00;
  transform: scale(1.05);
}

/* Email */
.associate-buttons .email {
  background-color: #fff;
  color: #000;
}

.associate-buttons .email:hover {
  background-color: #e6e6e6;
  transform: scale(1.05);
}

/* Make buttons inline on desktop */
@media (min-width: 600px) {
  .associate-buttons {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .associate-buttons .contact-btn {
    min-width: 120px;
  }
}
.about-section {
  background-color: #1a1a1a;
  padding: 100px 20px 80px;
  color: #f2f2f2;
  text-align: center;
}

.about-section h2 {
  color: #e0b200;
  font-size: 42px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 45px;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
}

.about-section p {
  font-size: 20px;
  line-height: 1.9;
  max-width: 900px;
  margin: 0 auto 28px;
  color: #f5f5f5;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.about-section strong {
  color: #ffcc00;
  font-weight: 700;
}
.about-section p {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.cta-section {
  background-color: #1a1a1a;
  padding: 100px 20px 80px;
  text-align: center;
  color: #f2f2f2;
}

.cta-section h3 {
  font-size: 42px;
  color: #e0b200;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
}

.cta-section p {
  font-size: 20px;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #f5f5f5;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.cta-btn {
  background-color: #e0b200;
  color: black;
  padding: 14px 22px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  font-size: 16px;
}

.cta-btn:hover {
  background-color: #ffcc00;
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0,0,0,0.5);
}
.services-section {
  background-color: #1a1a1a;
  padding: 100px 20px 80px;
  text-align: center;
  color: #f2f2f2;
}

.services-section h2 {
  color: #e0b200;
  font-size: 40px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 60px;
  text-shadow: 1px 1px 8px rgba(0,0,0,0.5);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.service-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px 20px;
  border: 1px solid #333;
  border-radius: 12px;
  font-size: 18px;
  line-height: 1.6;
  color: #f5f5f5;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item span {
  font-size: 22px;
  color: #e0b200;
}

.service-item:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
  background: rgba(255, 255, 255, 0.08);
}
.elegant-footer .contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  justify-content: center;
  margin-top: 50px;
}

.elegant-footer .contact-card {
  background-color: #1e1e1e;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.elegant-footer .contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.elegant-footer .contact-card img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 3px solid #444;
  transition: transform 0.3s ease;
}

.elegant-footer .contact-card h4 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 6px;
}

.elegant-footer .contact-card .role {
  font-size: 14px;
  color: #e0b200;
  font-style: italic;
  margin-bottom: 10px;
}

.elegant-footer .contact-card p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 20px;
}

.elegant-footer .contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.elegant-footer .contact-buttons .contact-btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
  min-width: 120px;
  text-align: center;
}

.elegant-footer .contact-buttons .whatsapp {
  background-color: #25D366;
  color: white;
}
.elegant-footer .contact-buttons .whatsapp:hover {
  background-color: #1ebe5d;
  transform: scale(1.05);
}

.elegant-footer .contact-buttons .call {
  background-color: #e0b200;
  color: #000;
}
.elegant-footer .contact-buttons .call:hover {
  background-color: #ffcc00;
  transform: scale(1.05);
}

.elegant-footer .contact-buttons .email {
  background-color: #fff;
  color: #000;
}
.elegant-footer .contact-buttons .email:hover {
  background-color: #e6e6e6;
  transform: scale(1.05);
}

@media (min-width: 600px) {
  .elegant-footer .contact-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}
/* Premium bemutatkozó blokk (footer-bottom) */
.footer-bottom.premium-footer {
  background-color: #1a1a1a;
  padding: 100px 20px 80px;
  text-align: center;
  color: #f2f2f2;
}

.footer-bottom.premium-footer h3 {
  font-size: 42px;
  color: #e0b200;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
}

.footer-bottom.premium-footer p {
  font-size: 20px;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 20px;
  color: #f5f5f5;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.footer-bottom.premium-footer .copyright {
  color: #e0b200;
  font-size: 16px;
  margin-top: 40px;
  text-shadow: none;
}

@media (max-width: 768px) {
  .footer-bottom.premium-footer h3 {
    font-size: 28px;
  }

  .footer-bottom.premium-footer p {
    font-size: 16px;
    padding: 0 15px;
    text-align: left;
  }
}
/* ============================== */
/* ELEGANT FOOTER – fő linkes rész */
/* ============================== */

.footer.elegant-footer {
  background-color: #0d0d0d;
  padding: 100px 30px 80px;
  color: #f2f2f2;
  font-family: 'Poppins', sans-serif;
}

.footer.elegant-footer .footer-top {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
}

.footer.elegant-footer .footer-top a {
  color: #ddd;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.footer.elegant-footer .footer-top a:hover {
  color: #e0b200;
}

.footer.elegant-footer .footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer.elegant-footer .footer-column h3 {
  font-size: 20px;
  color: #e0b200;
  margin-bottom: 20px;
  text-transform: uppercase;
  border-bottom: 2px solid #333;
  padding-bottom: 10px;
  letter-spacing: 1px;
}

.footer.elegant-footer .footer-column ul {
  list-style: none;
  padding: 0;
}

.footer.elegant-footer .footer-column ul li {
  margin-bottom: 10px;
}

.footer.elegant-footer .footer-column ul li a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer.elegant-footer .footer-column ul li a:hover {
  color: #fff;
}

.footer.elegant-footer .newsletter form {
  display: flex;
  flex-direction: column;
}

.footer.elegant-footer .newsletter input[type="email"] {
  padding: 12px 15px;
  border: none;
  border-radius: 30px;
  margin-bottom: 10px;
  background: #fff;
  color: #000;
}

.footer.elegant-footer .newsletter button {
  background: #e0b200;
  color: #000;
  border: none;
  padding: 12px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.footer.elegant-footer .newsletter button:hover {
  background: #ffcc00;
  transform: scale(1.05);
}

.footer.elegant-footer .newsletter .disclaimer {
  font-size: 12px;
  color: #999;
  margin-top: 10px;
  line-height: 1.5;
  max-width: 300px;
}

@media (max-width: 768px) {
  .footer.elegant-footer {
    padding: 60px 20px;
  }

  .footer.elegant-footer .footer-columns {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer.elegant-footer .footer-column {
    margin-bottom: 30px;
  }

  .footer.elegant-footer .footer-column ul li {
    margin: 5px 0;
  }
}
/* ======================================== */
/* BIG PREMIUM BLOG SECTION – Latest Insights */
/* ======================================== */

.blog-section {
  background-color: #1a1a1a;
  padding: 120px 40px;
  color: #f2f2f2;
  text-align: center;
}

.blog-section h3 {
  font-size: 52px;
  color: #e0b200;
  margin-bottom: 70px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 800;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.7);
}

.blog-post {
  max-width: 1000px;
  margin: 0 auto 80px;
  background: #121212;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 60px rgba(0, 0, 0, 0.8);
}

.blog-post img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
}

.blog-post h4 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 700;
}

.blog-post p {
  font-size: 20px;
  line-height: 1.8;
  color: #ddd;
  margin-bottom: 30px;
}

.blog-post .cta-btn {
  display: inline-block;
  background: #e0b200;
  color: #000;
  padding: 14px 36px;
  border-radius: 40px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;
  font-size: 16px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.blog-post .cta-btn:hover {
  background: #ffcc00;
  transform: scale(1.07);
}

@media (max-width: 992px) {
  .blog-section h3 {
    font-size: 40px;
  }

  .blog-post {
    padding: 30px 20px;
  }

  .blog-post img {
    max-width: 100%;
  }

  .blog-post h4 {
    font-size: 26px;
  }

  .blog-post p {
    font-size: 18px;
    text-align: left;
  }

  .blog-post .cta-btn {
    padding: 12px 28px;
    font-size: 15px;
  }
}
.navbar {
  background: #0b0b0b;
  height: 80px; /* fix height! */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  position: relative;
  overflow: hidden; /* plusz tartalmat levág */
}

.navbar * {
  margin: 0;
  padding: 0;
  line-height: 1.2;
  box-sizing: border-box;
}

.navbar h1 {
  color: #e0b200;
  font-size: 28px;
  font-weight: 700;
}

.menu a {
  line-height: 1; /* fix link height */
}
/* =============== */
/* NAVBAR – Mobile Ready */
/* =============== */
header.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #1a1a1a;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid #333;
}
header.navbar h1 {
  color: #e0b200;
  font-size: 24px;
  margin: 0;
}

.menu {
  display: flex;
  gap: 25px;
}

.menu a {
  color:  #e0b200;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

 button:hover, .contact-btn:hover, .cta-btn:hover, .menu a:hover {
      background-color: #e0b200; 
      color: black; 
      transform: scale(1.1); 
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5); 
    }

.menu-toggle, .close-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

/* ===== Mobile burger nav ===== */
@media (max-width: 768px) {
  .menu {
    position: absolute;
    top: 80px;
    right: 0;
    width: 100%;
    background: #0b0b0b;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px 20px;
    display: none;
  }

  .menu.active {
    display: flex;
  }

  .menu-toggle, .close-btn {
    display: block;
  }

  .close-btn {
    align-self: flex-end;
  }
}


/* ===================== */
/* HERO VIDEO SECTION    */
/* ===================== */

.hero-video {
  position: relative;
  height: 50vh;
  overflow: hidden;
}

.hero-background-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.hero-overlay h2 {
  font-size: 42px;
  color: #e0b200;
  margin: 0 0 10px;
  letter-spacing: 2px;
}

.hero-overlay p {
  font-size: 18px;
  color: #f2f2f2;
  max-width: 800px;
}

/* ======================= */
/* CONTACT SECTION + ASSOCIATES */
/* ======================= */

.contact-section {
  background: #0b0b0b;
  padding: 80px 20px;
  color: #f2f2f2;
  text-align: center;
}

.contact-section h3 {
  font-size: 36px;
  color: #e0b200;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-section p {
  font-size: 18px;
  margin: 10px 0;
}

.contact-section a {
  color: #e0b200;
  text-decoration: none;
}

.contact-section a:hover {
  color: #ffcc00;
}

.contact-section .cta-btn {
  display: inline-block;
  background: #e0b200;
  color: #000;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 700;
  margin: 5px;
  transition: background 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.contact-section .cta-btn:hover {
  background: #ffcc00;
  transform: translateY(-2px);
}

.associates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 40px auto 0;
  text-align: left;
}

.associate-card {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}

.associate-card:hover {
  transform: translateY(-5px);
}

.associate-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.associate-card h4 {
  margin: 0 0 5px;
  font-size: 20px;
  color: #fff;
}

.associate-card .role {
  font-size: 14px;
  color: #e0b200;
  margin-bottom: 8px;
  font-style: italic;
}

.associate-card .bio {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 10px;
}

.associate-card p {
  font-size: 16px;
  margin: 5px 0;
}

.associate-actions {
  margin-top: 10px;
}

.associate-actions .cta-btn {
  background: #e0b200;
  padding: 8px 20px;
  font-size: 14px;
  border-radius: 25px;
  margin: 4px 2px;
}

.associate-actions .cta-btn:hover {
  background: #ffcc00;
  transform: scale(1.05);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .hero-overlay h2 {
    font-size: 28px;
  }

  .hero-overlay p {
    font-size: 16px;
  }

  .contact-section h3 {
    font-size: 28px;
  }

  .contact-section p {
    font-size: 16px;
  }

  .associates-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .associate-card {
    text-align: center;
  }

  .associate-card img {
    max-width: 80%;
  }
}





