/* style.css - VÉGLEGES VERZIÓ (Menü + Dobozok) */

/* ALAP BEÁLLÍTÁSOK */
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; margin: 0; padding: 0; background-color: #f9f9f9; color: #333; }

/* FEJLÉC */
header { background-color: #d88e3c; color: white; padding: 30px 20px; text-align: center; }
header h1 { margin: 0; font-size: 2.2em; }
header p { margin: 5px 0 0; opacity: 0.9; }

/* MENÜ (Hamburger/Szendvics mód) */
.topnav {
    overflow: hidden;
    background-color: #333;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

.topnav a:hover, .topnav a.active {
    background-color: #555;
    color: white;
}

/* A szendvics ikon alapból rejtve (asztali nézetben) */
.topnav .icon {
    display: none;
}

/* TARTALOM KERET */
.container { max-width: 1000px; margin: 30px auto; background: white; padding: 40px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); min-height: 400px; }

/* CÍMSOROK */
h2 { color: #d88e3c; border-bottom: 2px solid #eee; padding-bottom: 10px; margin-top: 0; }
h3 { color: #555; margin-top: 30px; border-left: 4px solid #d88e3c; padding-left: 10px; }

/* TÁBLÁZATOK (Árakhoz) */
table { width: 100%; border-collapse: collapse; margin: 20px 0; }
th, td { border: 1px solid #ddd; padding: 12px; text-align: left; }
th { background-color: #eee; }
.price { font-weight: bold; color: #d88e3c; }

/* RÁCSOK (Galéria, Kapcsolat) */
.gallery, .contact-grid { display: grid; gap: 20px; }
.gallery { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
.contact-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

/* ÁLLÁSHIRDETÉS KÁRTYA */
.job-card { border: 1px solid #ddd; padding: 20px; margin-bottom: 20px; border-left: 5px solid #28a745; background: #fff; }
.btn { display: inline-block; background: #d88e3c; color: white; padding: 8px 15px; text-decoration: none; border-radius: 3px; margin-top: 10px; transition: background 0.3s; }
.btn:hover { background: #c0762b; }

/* --- ÚJ RÉSZ: DOKUMENTUM DOBOZOK (Bemutatkozás oldalhoz) --- */
.info-cards {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap; /* Hogy mobilon egymás alá kerüljenek */
}

.info-card {
    flex: 1;
    min-width: 250px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px; /* Lekerekített sarok */
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05); /* Kis árnyék */
    transition: transform 0.2s, box-shadow 0.2s;
}

.info-card:hover {
    transform: translateY(-5px); /* Ha ráviszed az egeret, kicsit felemelkedik */
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
    border-color: #d88e3c;
}

.info-card h3 {
    margin-top: 0;
    color: #d88e3c;
    border: none;
    padding: 0;
}

.info-card p {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 20px;
}
/* --- ÚJ RÉSZ VÉGE --- */

/* LÁBLÉC */
footer { background-color: #333; color: #aaa; text-align: center; padding: 20px; margin-top: 40px; font-size: 0.9em; }

/* MOBIL NÉZET BEÁLLÍTÁSOK (Media Query) */
@media screen and (max-width: 900px) {
  /* Alapból elrejtjük a menüpontokat, kivéve az elsőt, ha akarjuk, de itt most mindent elrejt a script */
  .topnav a:not(:first-child) {display: none;}
  
  /* Megjelenítjük az ikont */
  .topnav a.icon {
    float: right;
    display: block;
    font-size: 25px;
    padding: 10px 20px;
  }
}

/* Amikor a Javascript hozzáadja a "responsive" class-t kattintáskor */
@media screen and (max-width: 900px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}