/* ======================
   Alapbeállítások
====================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: #fafafa;
  color: #333;
  text-align: center;
  line-height: 1.6;
  font-size: 16px;
}

/* ======================
   Header
====================== */
header {
  background-color: #ffffff;
  padding: 30px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

header h1 a {
  font-size: 2.8rem;
  color: #2c2c2c;
  text-decoration: none;
  letter-spacing: 2px;
  font-weight: 700;
  transition: color 0.3s;
}

header h1 a:hover {
  color: #ff6b6b;
}

header h2 {
  font-size: 1.8rem;
  color: #444;
  margin-top: 5px;
  font-weight: 500;
}

.header-subtitle {
  font-size: 1rem;
  color: #777;
  margin-top: 8px;
  font-weight: 400;
}

nav.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 15px;
  font-size: 0.95rem;
  color: #555;
  gap: 5px;
}

nav.contact-info a {
  color: #555;
  text-decoration: none;
  margin: 0 5px;
  transition: color 0.3s;
}

nav.contact-info a:hover {
  color: #ff6b6b;
}

/* ======================
   Sütemények kártyák
====================== */
.sweets-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 35px;
  padding: 30px 20px;
}

.sweet-card {
  background-color: #ffffff;
  border-radius: 25px;
  border: 1px solid #eee;
  padding: 20px;
  width: 320px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sweet-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.sweet-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 20px;
}

.sweet-info h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #2c2c2c;
  font-weight: 600;
}

.sweet-info p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 15px;
}

.sweet-info ul {
  list-style: disc inside;
  max-height: 180px; /* görgethetővé teszi a hosszú listákat */
  overflow-y: auto;
  padding-left: 15px;
  text-align: left;
}

.sweet-info ul li {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #444;
  transition: color 0.3s;
}

.sweet-info ul li:hover {
  color: #ff6b6b;
}

/* ======================
   Scroll to top
====================== */
.scroll-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scroll-to-top:hover {
  transform: scale(1.2);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.scroll-to-top i {
  color: #ff6b6b;
  font-size: 1.2rem;
}

/* ======================
   Footer / Delivery info
====================== */
.delivery-info {
  margin: 50px 0;
  font-size: 0.95rem;
  color: #555;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* ======================
   Responsive
====================== */
@media (min-width: 768px) {
  .sweets-wrapper {
    gap: 30px;
  }

  .sweet-card {
    width: 340px;
  }
}

@media (max-width: 500px) {
  .sweet-card {
    width: 90%;
  }
}
