/* ========== GLOBAL RESET ========== */
* { box-sizing: border-box; }

body{
  margin:0;
  font-family:Poppins, Arial, sans-serif;
  background:#f4f6f4;
  color:#333;
}

/* ========== HEADER ========== */
.site-header{
  position: relative;
  color:#fff;
  padding:20px;
  min-height:260px;
  overflow:hidden;

  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

/* Soft dark overlay (natural look) */
.site-header::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.35);
  z-index:0;
}

/* Keep content above overlay */
.site-header *{
  position: relative;
  z-index:1;
}

/* Header images per page */
.home-header{background-image:url("../images/header1.jpg");}
.products-header{background-image:url("../images/header2.jpg");}
.tourism-header{background-image:url("../images/header3.jpg");}
.about-header{background-image:url("../images/header1.jpg");}
.contact-header{background-image:url("../images/header3.jpg");}

/* Clean readable text */
.site-header h1,
.site-header h2,
.site-header p,
.site-header span,
.site-header a{
  text-shadow:0 2px 4px rgba(0,0,0,0.45);
}

/* ========== NAVBAR ========== */
.nav-container{
  max-width:1100px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:1.3rem;
  font-weight:600;
}

.logo img{
  height:60px;
  background:#fff;
  padding:6px;
  border-radius:8px;
}

nav{
  display:flex;
  gap:18px;
}

nav a{
  color:#fff;
  text-decoration:none;
  padding:6px 10px;
  border-radius:6px;
  font-weight:500;
}

nav a:hover{
  background:rgba(255,255,255,0.2);
}

nav a.active{
  background:#1b5e20;
}

.menu-toggle{
  display:none;
  font-size:1.8rem;
  cursor:pointer;
}

.lang-btn{
  background:#fff;
  color:#2f7d32;
  border:none;
  padding:6px 10px;
  border-radius:6px;
  font-weight:600;
  cursor:pointer;
}

/* ========== CONTENT HELPERS ========== */
.section{
  max-width:1100px;
  margin:auto;
  padding:40px 20px;
}

.page-title{
  text-align:center;
  margin-top:15px;
}

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:25px;
}

.card{
  background:#fff;
  padding:25px;
  border-radius:12px;
  box-shadow:0 6px 18px rgba(0,0,0,.08);
}

.btn{
  display:inline-block;
  margin-top:15px;
  padding:10px 18px;
  background:#2f7d32;
  color:#fff;
  text-decoration:none;
  border-radius:6px;
}

/* ========== FOOTER ========== */
footer{
  background:#1b5e20;
  color:#fff;
  text-align:center;
  padding:15px;
}

/* ========== MOBILE ========== */
@media(max-width:768px){
  .menu-toggle{
    display:block;
  }

  nav{
    display:none;
    flex-direction:column;
    background:rgba(0,0,0,0.8);
    position:absolute;
    right:20px;
    top:70px;
    padding:15px;
    border-radius:10px;
  }

  nav.show{
    display:flex;
  }

  .logo img{
    height:48px;
  }
}
