/* styles.css */
body {
    margin: 0;
    padding: 0;
    background: url('https://napimanna.eu/feltoltes/uploads/kek1.webp') no-repeat center center fixed; 
    background-size: cover; /* A kép kitölti az egész képernyőt */
    font-family: Arial, sans-serif;
}
/* Töröld a korábbi header stílusokat, és használd ezt: */
header {
    background-image: url('https://napimanna.eu/feltoltes/uploads/kep.webp');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 150px; /* Kívánt magasság */
    width: 100%;
    max-width: 1000px; /* Megegyezik a .block-content szélességével */
    margin: 0 auto 0px; /* Fent-lent 0, oldalt auto (középre igazítás) */
    border-radius: 10px;
    position: relative;
    background-color: #f0f0f0;
    text-align: center;
    padding: 0; /* Biztos, hogy nincs belső tér */
    left: 0; /* Biztos, hogy nincs eltolás */
    right: 0; /* Biztos, hogy nincs eltolás */
}

/* Back to home gomb */
.back-to-home {
    display: inline-block;
    padding: 10px 20px;
    background-color: #9ACD32;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    position: absolute;
    top: 10px;
    right: 10px;
}


.wrapper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.block-content {
    width: 800px; /* Fixed width for the block */
    background-color:#B0C4DE; /* Gray background for the content block */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.container {
    max-width: 600px; /* Content width */
    margin: 0 auto;
    padding: 20px;
}

/* Központozó konténer */
.header-container {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 10px 0;
}

/* Fejléc konténer stílusok */
.header-container {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 10px 0;
  position: relative;
}

.header-banner {
  width: 100%;
  max-width: 600px;
  height: 50px;
  background-color: #228B22;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16);
  position: relative; /* Fontos a gomb pozicionálásához */
}

/* Főcím stílus */
.banner-title {
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  margin: 0;
  padding: 0 80px; /* Hely a gombnak */
}

/* Vissza gomb stílus */
.home-button {
  position: absolute;
  top: 5px;
  right: 10px;
  background-color: rgba(255,255,255,0.9);
  color: #228B22;
  border: none;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.home-button:hover {
  background-color: white;
  transform: translateY(-1px);
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

/* Reszponzív beállítások */
@media (max-width: 640px) {
  .header-banner {
    height: 45px;
  }
  
  .banner-title {
    font-size: 1.1rem;
    padding: 0 70px;
  }
  
  .home-button {
    top: 3px;
    right: 5px;
    padding: 3px 8px;
    font-size: 0.7rem;
  }
}

@media (max-width: 400px) {
  .banner-title {
    font-size: 1rem;
    padding: 0 60px;
  }
  
  .home-button {
    font-size: 0.6rem;
  }
}

.daily-verse {
    margin-bottom: 30px;
}

.verse-card {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.verse-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.verse-reference {
    font-family: 'Playfair Display', serif;
    color: #228B22; /* Forest green */
    margin-bottom: 20px;
}

.verse-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.verse-meditation {
    background-color: #f9f9f9;
    padding: 15px;
    border-left: 4px solid #228B22;
    margin-bottom: 20px;
}

.verse-meditation h3 {
    margin-top: 0;
    color: #228B22;
}

.verse-actions {
    display: flex;
    gap: 10px;
}

button {
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
}

.share-btn {
    background-color: #228B22;
    color: white;
}

.save-btn {
    background-color: #f0f0f0;
    color: #333;
}

.subscription {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: center;
}

.subscribe-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.subscribe-form input {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.subscribe-form button {
    background-color: #228B22;
    color: white;
    padding: 10px 20px;
}

.comments {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
}

.comment-form {
    margin-bottom: 30px;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.comment-form textarea {
    min-height: 100px;
    resize: vertical;
}

.comment-form button {
    background-color: #228B22;
    color: white;
    padding: 10px 20px;
}

.comments-list {
    margin-top: 20px;
}

.comment {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 14px;
    color: #666;
}

.comment-text {
    white-space: pre-line;
}

footer {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    color: #666;
    font-size: 14px;
}
@media (max-width: 640px) {
    header {
        height: 100px; /* Kisebb magasság mobilon */
    }
    
    /* Opcionális: a háttérkép pozíciójának finomhangolása */
    header {
        background-position: center 30%; /* A kép felső része jobban látszódjon */
    }
}
/* Responsive adjustments */
@media (max-width: 840px) {
    .block-content {
        width: 100%;
    }
    
    header img {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 15px;
    }
    
    .verse-header {
        flex-direction: column;
    }
    
    .name-day {
        margin-top: 5px;
    }
    
    .verse-actions {
        flex-direction: column;
    }
    
    .subscribe-form {
        flex-direction: column;
    }
}