/* Alapértelmezett beállítások */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Calibri', sans-serif;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Fejléc stílusok */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

.menu {
  display: flex;
  gap: 15px;
}

.menu a {
  font-weight: bold;
  color: #fff;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: #75cbed; /* Brand szín */
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 3px 0;
}

@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 10px;
    border-radius: 5px;
  }

  .menu.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}

/* Globális spacing a fejléc alatt */
body > *:not(header) {
  margin-top: 60px;
}

/* Hős szekció */
.hero {
  height: 100vh;
  background: url('https://picsum.photos/1920/1080?random=1') no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.hero button {
  padding: 10px 20px;
  font-size: 1.2rem;
  color: white;
  background: #75cbed; /* Brand szín */
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.hero button:hover {
  background: #333; /* Sötétebb szürke */
}

/* Kártyák függőleges elrendezése */
.product-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 50px 20px;
}

.product-item {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
}

.product-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.product-info {
  padding: 15px;
  text-align: center;
}

.product-info h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.product-info p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #666;
}

.product-info button {
  padding: 10px 20px;
  font-size: 1rem;
  color: white;
  background: #75cbed; /* Brand szín */
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.product-info button:hover {
  background: #333;
}

/* Kapcsolat szekció */
#contact {
  padding: 50px 20px;
  text-align: center;
  background-color: #f4f4f4;
}

#contact h1 {
  margin-bottom: 20px;
}

#contact p {
  margin-bottom: 10px;
}

#contact form {
  max-width: 600px;
  margin: 0 auto;
}

#contact form input,
#contact form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#contact form button {
  padding: 10px 20px;
  background: #75cbed;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

#contact form button:hover {
  background: #333;
}

/* Lábléc */
footer {
  background-color: #333; /* Sötétebb szürke */
  color: white;
  text-align: center;
  padding: 20px;
}

.footer-links {
  margin-bottom: 15px;
}

.footer-links a {
  color: #75cbed; /* Brand szín */
  margin: 0 10px;
  text-decoration: none;
}

.footer-links a:hover {
  color: white;
}

.social-media a {
  color: white;
  margin: 0 10px;
  font-size: 1.5rem;
}

.social-media a:hover {
  color: #75cbed;
}
