html {
    scroll-behavior: smooth;
  }
  /* normal */
  :root {
    --primary: #b88b4a;       
    --accent: #a3522f;        
    --bg-dark: #fdfaf3;       
    --bg-card: #f6f1e7;
    --header: rgba(253, 250, 243, 0.95); 
    --text-light: #2c2c2c;    
    --text-muted: #7a7a7a;    
    --font: 'Poppins', sans-serif;
  }

  /* dark */
/*  :root {
    --primary: #1f3a93;
    --accent: #d32f2f;
    --bg-dark: #121212;
    --bg-card: #1e1e1e;
    --header: rgba(49, 49, 49, 0.95);   
    --text-light: #f0f0f0;
    --text-muted: #bbb;
    --font: 'Poppins', sans-serif;
  }*/
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: var(--font);
    background-color: var(--bg-dark);
    color: var(--text-light);  
    line-height: 1.6;
  }
  
  a {
    text-decoration: none;
  }

  .container {
    width: 70%;

    margin: auto;
  }
  
  header.header {
    background: var(--header);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  
  .logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
    height: max-content;
  }
  
  .logo-img {
    height: 100px;
  }
  
  .logo-text {
    text-decoration: none;
    font-weight: bold;
    font-size: 3rem;
    color: var(--text-light);
  }
  
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
    font-size: 1.2rem;
  }
  
  .nav-links li a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
  }
  
  .nav-links li a:hover {
    color: var(--accent);
  }
  
  .burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }
  
  .burger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
  }
  
  .hero {
    height: 80vh;
    background: linear-gradient(to bottom right, var(--bg-dark), var(--bg-dark));
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
  }
  
  .hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
  
  .bg-image {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }
  
  .bg-image.active {
    opacity: 1;
  }
  
  .overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 25%;
    background: linear-gradient(to top, var(--bg-dark), rgba(255, 255, 255, 0));
    z-index: 1;
  }
  
  
  .hero-content {
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px var(--bg-dark);
  }
  
  .hero-content h2 {
    display: inline;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  
  .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: bolder;
}
  
  .hero-content .btn {
    padding: 0.7rem 1.5rem;
    background: var(--primary);
    color: white;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s, background 0.3s;
    display: inline-block;
  }
  
  .hero-content .btn:hover {
    transform: scale(1.05);
    background: var(--accent);
  }
  
  .section-dark {
    background-color: var(--bg-dark);
    padding: 4rem 0;
  }
  
  .section-cards {
    background: var(--bg-card);
    padding: 4rem 0;
  }

  .adress {
    text-align: center;
    width: fit-content;
  }
  
  .adress img {
    display: block;
    height: 2rem;
    margin-top: 0%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 10px;
    flex: 1 1 250px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
  }
  
  .card:hover {
    transform: translateY(-10px);
  }
  
  footer {
    background: var(--bg-card);
    color: var(--text-muted);
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .nav-links {
      position: absolute;
      top: 60px;
      right: 0;
      background: var(--bg-dark);
      flex-direction: column;
      width: 200px;
      display: none;
      padding: 1rem;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .burger {
      display: flex;
    }
  
    .cards {
      flex-direction: column;
    }
  }
  