@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #13201d;
  background-color: #ece7de;
}

.layout-container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  line-height: 1.15;
  margin: 0;
}

p {
  margin: 0;
}

img {
  max-width: 100%;
  display: block;
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: linear-gradient(
    to bottom,
    rgba(29, 18, 18, 0.9) 50%,
    #14110e 100%
  );

  

  backdrop-filter: blur(6px);
}
.site-navbar {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.site-brand-logo {
  width: 100px;
  height: 80px;
  display: flex;
  align-items: center;
}

.site-brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.site-brand-text {
  font-size: 35px;
  font-weight: 400;
  color: #edf7f0;
  letter-spacing: -0.5px;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.site-nav a {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 18px;
  color: #edf7f0;
  font-weight: 400;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.site-nav a:hover {
  background-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}


.site-main {
  min-height: 60vh;
}


.site-footer{
  background:#ECE7DE;
  padding:80px 0;
}

.footer-card{
  max-width:1000px;  
  margin:auto;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 16px 32px rgba(0,0,0,0.08);
}

.footer-header{
  height:80px;   
  background: linear-gradient(135deg, #5fb43a 0%, #2d6037 100%);
}

.footer-content{
  background:#f4efe7;
  padding:30px 40px 35px 40px;   
}

.footer-top-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:30px;
  border-bottom:1px solid rgba(0,0,0,0.08);
  padding-bottom:25px;
}

.footer-tag{
  letter-spacing:2px;
  font-size:13px;
  font-weight:700;
  color:#2d6037;
}

.footer-intro h2{
  font-size:32px;  
  color:#173330;
}

.footer-back-to-top{
  background:#2d6037;
  color:white;
  padding:12px 18px;
  border-radius:12px;
  font-weight:600;
  transition: background 0.3s ease; 
}

.footer-back-to-top:hover{
  background:#5fb43a;
  color:white;

}


.footer-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;   
}

.footer-column h3{
  font-size:28px;
  margin-bottom:18px;
}

.footer-column ul li{
  margin-bottom:14px;
  font-size:18px;
}


@media (max-width: 992px) {
  .site-navbar {
    min-height: auto;
    padding: 18px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .site-brand-text {
    font-size: 30px;
  }

  .site-brand-logo {
    width: 66px;
    height: 50px;
  }

  .site-nav ul {
    gap: 6px;
  }

  .site-nav a {
    font-size: 16px;
    padding: 8px 12px;
  }

  .footer-grid {
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .site-header {
    position: relative;
  }

  .site-navbar {
    align-items: center;
    text-align: center;
  }

  .site-nav ul {
    justify-content: center;
  }

  .footer-main {
    padding: 50px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-column h3 {
    font-size: 24px;
  }

  .footer-column ul li {
    font-size: 17px;
  }
}
.site-footer {
  border-top: 1px solid rgba(0,0,0,0.08);
}

.footer-column a {
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #5fb43a; 
}


