/*
  Alapértelmezett stílusok a "Nézzük Át!" weboldalhoz.
  Használ modern, letisztult kinézetet, élénk színekkel és tágas elrendezéssel.
*/

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  color: #f5f5f5;
  background-color: #0a102a;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

/* Logo styles: display the uploaded logo image next to the brand name */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
}

.logo-img {
  height: 42px;
  width: auto;
}

/* Highlight only the "Át!" part in the brand name */
.logo span {
  color: #00e676;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #00e676;
}

/* Hero section */
.hero {
  /* Use the user-provided cover image as the hero background */
  background-image: url('519492189_122093026424959189_7112896885793679657_n.jpg');
  background-size: cover;
  background-position: center;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #fff;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #e0e0e0;
}

.cta-btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  background-color: #00e676;
  color: #0a102a;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #00c853;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #00e676;
  text-align: center;
}

/* About */
.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
}

.about-text {
  flex: 1;
}

.about-text p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Services */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.card {
  background-color: #12255e;
  padding: 1.5rem;
  border-radius: 10px;
  flex: 1 1 280px;
  max-width: 320px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #00e676;
}

.card p {
  color: #e0e0e0;
  line-height: 1.4;
}

/* Prices */
.price-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.price-item {
  background-color: #12255e;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.price-item h4 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: #00e676;
}

.price-item p {
  color: #e0e0e0;
}

/* Lists */
.why ul {
  list-style: none;
  padding-left: 1rem;
}

.why ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  color: #e0e0e0;
}

.why ul li::before {
  content: '\2022';
  color: #00e676;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2rem;
  line-height: 1.2;
}

/* Contact */
.contact-info {
  text-align: center;
  margin-top: 1rem;
}

/* Testimonials */
.testimonials {
  background-color: #0d1c45;
}

.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.testimonial {
  background-color: #12255e;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  flex: 1 1 280px;
  max-width: 320px;
  color: #e0e0e0;
  line-height: 1.5;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial span {
  display: block;
  font-weight: 600;
  color: #00e676;
}

/* FAQ */
.faq {
  background-color: #0d1c45;
}

.faq h3 {
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: #00e676;
}

.faq p {
  color: #e0e0e0;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.faq-item:not(:last-child) {
  border-bottom: 1px solid #1f336c;
  padding-bottom: 1.5rem;
}

/* Contact Form */
.contact-form-container {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.contact-form {
  max-width: 500px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem 1rem;
  border: 1px solid #334880;
  border-radius: 5px;
  background-color: #12255e;
  color: #e0e0e0;
  font-family: 'Montserrat', sans-serif;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9aa7d0;
}

.contact-form button {
  padding: 0.8rem 1.5rem;
  background-color: #00e676;
  color: #0a102a;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #00c853;
}

.contact-info p {
  margin: 0.5rem 0;
  color: #e0e0e0;
}

.contact-info a {
  color: #00e676;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  background-color: #090e24;
  text-align: center;
  padding: 1.5rem 0;
}

.footer p {
  margin: 0;
  color: #888fac;
  font-size: 0.9rem;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .about-content {
    flex-direction: column;
  }
}