body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #2c5363 /*#f8f9fa*/;
}
.hero {
    background: url('galery/tenger_kicsi4.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 30px;
    margin-bottom: 20px;
/*    display: flex;
    flex-direction: column;
    justify-content: center;

*/
    height: 250px;
    position: relative;
}
.hero h1 {
    text-align: left;
    margin-left: 10px;
    font-size: 3 rem;
    color: white;
}
.hero h2 {
    text-align: left;
    margin-left: 10px;
    font-size: 1.5rem;
    color: #d5f7f5 /*#d8e2dc*/;
}


.nav-buttons {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.nav-buttons .btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}
/* gombok a header - ben*/
.btn-home {
    background-color: #40c9a2;
    color: white;
}

.btn-secondary {
    background-color: #f8f9fa;
    color: black;
}

.btn-contact {
    background-color: #40c9a2;
    color: white;
}
/* hover funkció: amikor az égérrel a gomb felett állk */
.nav-buttons .btn:hover {
    background-color: #c8bfb4;  /*  Box színe háttér a hover-re */
    color: black;  /* Fekete szöveg */
}

.icon {
    font-size: 1.2rem;
}


.box {
    text-align: left;
    background: #c8bfb4;
    padding: 20px;
    margin: 0px 0px;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: 10px solid #2c5363;
}
.box h3{
    text-align: center;
}

.box img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}
.box .special-img {
    width: 50%;
    height: auto;
    border-radius: 5px;
}

/*LINKEK*/  
a {
    text-decoration: none; /* Aláhúzás eltávolítása */
    color: inherit; /* Örökli a szülő szövegszínt */
  }
/* A div-link (a teljes doboz kattintható) */
.link-div {
    display: block; /* A div teljes mérete kattintható lesz */
  }

  
.footer {
    background: #343a40;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}
