/* Reset and basic styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    height: 100%;
    font-family: "Arial", sans-serif;
    color: #fff; /* Default text color */
  }
  
  /* Header (absolute position over hero) */
  .site-header {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
  }
  
  /* Logo image styling */
  .logo img {
    max-height: 100px; /* Adjust the size as needed */
  }
  
  /* Social media links styling */
  .site-nav a {
    text-decoration: none;
    color: #fff;
    font-size: 24px;
    margin: 0 10px;
    transition: color 0.3s ease;
  }
  
  .site-nav a:hover {
    color: #0077b5;
  }
  
  /* Hero Section (full viewport height) */
  .hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url("leaves.avif") no-repeat center center/cover;
  }
  
  /* Dark overlay to make text stand out */
  .hero::before {
    content: "";
    position: absolute;
    top: 0; 
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
  }
  
  /* Hero content in the center-left */
  .hero-content {
    position: relative;
    z-index: 2; /* Above overlay */
    top: 50%;
    transform: translateY(-50%);
    margin-left: 10%;
    max-width: 600px;
    text-align: left;
  }
  
  .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
  }
  
  .hero-content h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: normal;
    color: #f1f1f1;
  }
  
  /* Buttons in the hero section */
  .hero-buttons a.btn {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 2px solid #fff;
    padding: 10px 20px;
    margin-right: 10px;
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  
  .hero-buttons a.btn:hover {
    background: #fff;
    color: #000;
  }
  
  /* Scroll-down indicator on the right side */
  .scroll-down {
    position: absolute;
    right: 2%;
    bottom: 5%;
    z-index: 2;
    font-size: 1rem;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
  }
  
  .scroll-down span {
    cursor: pointer;
    transition: opacity 0.3s ease;
  }
  
  .scroll-down span:hover {
    opacity: 0.7;
  }
  
  