/* ========== CSS Variables for Theme ========== */
:root {
  --primary-color:  #2e7d32;
  --accent-color: #f0a500;
  --bg-color: #f5fff8;
  --text-color: #222;
  --white: #fff;
  --section-bg: #eafaf0;
  --font-main: 'Segoe UI', sans-serif;
}

/* ========== Global Reset ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-main);
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
}

/* ========== Navbar ========== */
.navbar {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.nav-logo {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
}

.logo {
  width: 40px;
  height: 40px;
  background: url("Logo.png") no-repeat center/cover;
  margin-right: 10px;
  border-radius: 50%;
}

.nav-items {
  display: flex;
  gap: 15px;
}
.nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 300;  
  position: relative;
  padding: 6px 10px;
  border-radius: 5px;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  background-color: rgba(255, 255, 255, 0.2);
}

/* ========== Hero Section ========== */
.hero-section {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  background-color: black;
}

.video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========== Seasonal Cards Section ========== */
.inner-section {
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  background-color: var(--section-bg);
}

.box {
  width: 90%;
  max-width: 1200px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box:hover {
  transform: scale(1.01);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.box-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px;
}

.box-img {
  width: 48%;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
}

.summer {
  background-image: url('summer.jpg');
}
.rainy {
  background-image: url('rainy.jpg');
}
.winter {
  background-image: url('winter.jpg');
}

.message {
  width: 48%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.message h1 {
  color: var(--primary-color);
  font-size: 28px;
}
.message h2 {
  color: #444;
  font-size: 20px;
}
.message a {
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}
.message a:hover {
  color: var(--primary-color);
}

/* ========== Divider Line ========== */
.divider {
  height: 2px;
  background-color: #ccc;
  margin: 40px auto;
  width: 90%;
  border: none;
}

/* ========== About Section ========== */
.about {
  background-color: var(--white);
  padding: 40px 20px;
  text-align: center;
  font-size: 18px;
  color: #333;
  line-height: 1.7;
}

/* ========== Footer ========== */
.footer {
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
  padding: 20px;
  font-size: 14px;
  border-top: 2px solid #ffffff33;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
  .box-content {
    flex-direction: column;
    gap: 20px;
  }

  .box-img,
  .message {
    width: 100%;
  }

  .second-box {
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
  }
  .nav-item strong {
  color: #ffd700;
}


  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }
}
