@import url('https://fonts.googleapis.com/css2?family=Elms+Sans:ital,wght@0,100..900;1,100..900&family=Epunda+Slab:ital,wght@0,300..900;1,300..900&family=Google+Sans+Code:ital,wght@0,300..800;1,300..800&family=Playwrite+US+Trad:wght@100..400&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #f1eacb;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Epunda Slab', Arial, sans-serif;
    background-color: #fff;
    color: #333;
    text-decoration: none !important;
}

a{
    text-decoration: none !important;
}

.container{
    padding: 10px;
    background: #cfb698;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #3c3b27;
    padding: 15px 100px;
    color: #e6e4d7;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.navbar:hover {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

/* Logo */
.logo {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
    color: #e6e4d7;
    transition: color 0.3s ease;
}

.logo:hover {
    color: #c6c6a4;
}

/* Nav Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    color: #e6e4d7;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #c6c6a4;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #c6c6a4;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Button */
.login-btn {
    background-color: #c6c6a4;
    color: #3c3b27;
    border: none;
    padding: 8px 22px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.login-btn:hover {
    background-color: #d5d5a6;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: #e6e4d7;
    transition: color 0.3s ease;
}

.menu-toggle:hover {
    color: #c6c6a4;
}


/* Hero Section */

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(80%);
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(80%);
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #fff;
    max-width: 500px;
}

.primary-btn {
    margin-top: 15px;
    background-color: #b9b992;
    color: #3c3b27;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.dot {
    height: 12px;
    width: 12px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #e2e6cf;
}

.dot:hover {
    background-color: #fff;
}


/* Philosophy Section */
.philosophy {
    text-align: center;
    padding: 70px 20px;
    background-color: #d5d1b6;
}

.philosophy h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #3d4633;
}

.cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.card .icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(45%) sepia(16%) saturate(359%) hue-rotate(57deg) brightness(90%) contrast(88%);
    transition: transform 0.3s ease;
}

.card:hover .icon img {
    transform: scale(1.1);
}

.card {
    background: #f4f2e5;
    width: 280px;
    padding: 35px 25px;
    border-radius: 14px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.card h3{
    color:#cfb698;
}

/* Garden Section */
.gardens {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 70px 50px;
    background-color: #d7d1b3;
}

.gardens .text {
    max-width: 400px;
}

.secondary-btn {
    margin-top: 15px;
    background-color: #3d4633;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
}

/* --- IMAGE GRID --- */
.garden-gallery {
    display: grid;
    grid-template-columns: 1.1fr 0.8fr 1.1fr;
    grid-template-rows: repeat(2, 180px); 
    gap: 15px;
    width: 100%;
    max-width: 700px;
    align-items: stretch;
}

.garden-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.garden-gallery img:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.garden-gallery .left {
    grid-column: 1;
    grid-row: 1 / 3;
}

.garden-gallery .top {
    grid-column: 2;
    grid-row: 1;
}

.garden-gallery .bottom {
    grid-column: 2;
    grid-row: 2;
}

.garden-gallery .right {
    grid-column: 3;
    grid-row: 1 / 3;
}


/*Footer */
.footer {
  background: #2f2e1f;
  color: #f4f2e7;
  font-family: 'Poppins', sans-serif;
  padding: 50px 20px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1.6fr 1fr 1fr; 
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}


.footer-column h3,
.footer-column h4 {
  color: #d6cfa5;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
  font-size: 14px;
  display: flex;
  /* align-items: center; */
  gap: 8px;
}

.footer-column ul li a {
  color: #d6cfa5;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #f3efd9
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a {
  font-size: 22px;
  color: #d6cfa5;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  color: #f7e9b7;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid #55533a;
  text-align: center;
  font-size: 13px;
  opacity: 0.8;
  margin-top: 40px;
  padding-top: 10px;
}

/* Responsive Styling */

@media (max-width: 768px) {

    .navbar {
        padding: 15px 20px;
        position: relative;
        z-index: 1000;
    }

    .menu-toggle {
        display: block;
        z-index: 1100; 
    }

    nav {
        width: 100%;
    }

    .nav-links {
    position: absolute;
    top: 60px; /* just below navbar */
    right: 0;
    width: 220px; /* make it thinner */
    background-color: #3c3b27;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 15px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 999;
  }

    .nav-links.active {
        max-height: 500px;
        opacity: 1;
    }

    .nav-links a {
        font-size: 16px;
    }

    .navbar .logo img {
        width: 140px;
    }

    .footer-container {
        text-align: center;
    }
    .footer-column ul li {
        justify-content: center;
    }
    .social-icons {
        justify-content: center;
    }
}
@media (max-width:1220px) {
    .garden-gallery {
        display: grid;
        grid-template-columns: 1.1fr 0.8fr 1.1fr;
        grid-template-rows: repeat(2, 180px); 
        gap: 15px;
        max-width: 100%;    
    }
    .gardens {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}
@media (max-width: 992px) {
    .footer-container {
    grid-template-columns: 1fr 1fr; 
  }
}

@media (max-width: 600px) {
    .garden-gallery {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .garden-gallery img {
        height: 160px;
    }

    .card {
        width: 90%;
        font-size: 1rem;
    }
    .footer-container {
    grid-template-columns: 1fr; 
  }
}
