/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body, html {
    height: 100%;
    font-family: 'Cormorant Garamond', serif;
    scroll-behavior: smooth;
  }
  /* Navbar Styles */
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10, 10, 10, 0.45); /* dark, semi-transparent */
    backdrop-filter: blur(8px);         /* blurred background effect */
    -webkit-backdrop-filter: blur(8px); /* Safari support */
    padding: 0 30px;
    position: fixed;
    top: 0;
    width: 100%;
    height: 120px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* deeper shadow */
    z-index: 1000;
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
  }
  
  .navbar .logo {
    display: flex;
    align-items: center;
    flex: 0;
    margin-left: 60px;
  }
  
  .navbar .logo img {
    height: 260px;
    margin-top: 10px;
  }
  
  .nav-buttons {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-right: 60px;
  }
  
  .nav-buttons .nav-item {
    display: flex;
    align-items: center;      /* vertically centers icon & text */
    justify-content: center;
    flex-direction: row;      /* icon and text side-by-side */
    text-decoration: none;
    color: white;
    font-size: 18px;
    transition: none;
  }
  
  .nav-buttons .nav-item:hover {
    color: #98C78A;
  }
  
  .nav-buttons .nav-icon {
    width: 60px;               /* or keep 60px if you prefer big icons */
    height: 60px;
    object-fit: contain;
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInSlideLeft 0.6s forwards;
    margin-right: -4px;        /* brings icon and text closer */
    position: relative;
    top: 1px;                  /* adjust to vertically center icon if needed */
  }
  
  
  /* Fade-in from left */
  @keyframes fadeInSlideLeft {
    0% {
      opacity: 0;
      transform: translateX(-30px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  
  .nav-buttons .nav-text {
    opacity: 0;
    transform: translateX(-20px);
    white-space: nowrap;
    transition: all 0.3s ease;
    margin-left: 0;
    transition: opacity 0.3s ease, transform 0.3s ease, margin-left 0.3s ease, color 0s ease;
  }
  
  /* When .show-text is triggered after 1.5s */
  .nav-buttons .nav-item.show-text .nav-text {
    opacity: 1;
    transform: translateX(0);
    margin-left: 12px;
  }
  
  .contact-section {
    position: relative;
    overflow: hidden;
    margin-top: 110px;
    padding: 80px 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    z-index: 1;
  }
  
  .contact-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url('contact1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    animation: slideFadeLeft 0.7s ease-out forwards;
    opacity: 0;
  }
  .contact-section {
    padding: 60px 40px 100px; /* top, sides, bottom */
    background-color: #f7f7f7;
  }
  
  .contact-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    flex-wrap: wrap;
    gap: 60px;
  }
  
  .contact-intro {
    flex: 1;
    max-width: 600px;
    text-align: left;
  }
  
  .contact-intro h2 {
    font-size: 3rem;
    font-weight: 700;
    font-style: italic;
    color: #2F6C3F;
    line-height: 1.2;
    margin-bottom: 2rem;
  }
  
  .contact-intro p {
    font-size: 1.6rem;
    font-style: italic;
    font-weight: 600;
    color: #2F6C3F;
    line-height: 1.9;
    margin-top: 2.7rem;
    text-align: left;
  }
  
  
  /* RIGHT side: form only */
  .contact-right {
    flex: 1;
    max-width: 500px;
  }
  
 /* Contact Form Refinement */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #4F8A60;
  outline: none;
  box-shadow: 0 0 10px rgba(120, 153, 74, 0.3);
}

.contact-form textarea {
  min-height: 300px;
  resize: vertical;
}

/* Button Alignment Fix */
.contact-form button {
  align-self: flex-start;
  padding: 0.8rem 1.5rem;
  border: none;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(to right, #2F6C3F, #4F8A60);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background: #0A481E;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


  @media (max-width: 768px) {
    .contact-layout {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .contact-intro h2 {
      font-size: 2.2rem;
    }
  
    .contact-right {
      margin-top: 2rem;
    }
  }
  
  @keyframes slideFadeLeft {
    0% {
      opacity: 0;
      transform: translateX(-60px) scale(1.02);
      filter: blur(6px);
    }
    100% {
      opacity: 1;
      transform: translateX(0) scale(1);
      filter: blur(0);
    }
  }

  .contact-motto {
    margin-top: 40px;
    padding: 30px 0 10px;
    font-size: 1.9rem;
    line-height: 1.6;
    font-style: italic;
    font-weight: 600;
    color: #2F6C3F;
    text-align: center;
  
    /* No background, no borders, just elegant spacing */
    background: none;
    border: none;
    box-shadow: none;
  
    /* Animation */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
  }
  
  .contact-motto.fade-in {
    opacity: 1;
    transform: translateY(0);
  }
  
  @media (max-width: 768px) {
    .contact-motto {
      font-size: 1.5rem;
      padding: 20px 10px 5px;
    }
  }
    
  .refined-footer {
    background-color: #fdfdfd;
    color: #2f2f2f;
    font-family: 'Segoe UI', sans-serif;
    font-size: 16px;
    padding: 60px 40px 30px;
  }
  
  .footer-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
  }
  
  .footer-col {
    flex: 1;
    min-width: 220px;
  }
  
  .footer-col.wide {
    flex: 2;
  }
  .footer-col strong {
    display: inline-block;
    margin-top: 16px;
  }
  
  
  .footer-col h4 {
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    font-weight: 600;
  }
  
  .footer-col p,
  .footer-col a {
    color: #2f2f2f;
    line-height: 1.6;
    text-decoration: none;
  }
  .footer-col p + h4 {
    margin-top: 24px; /* or whatever value feels right */
  }
  
  .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-col ul li {
    margin-bottom: 10px;
  }
  
  .footer-col a:hover {
    text-decoration: underline;
  }
  
  .footer-bar {
    border-top: 1px solid #ddd;
    margin-top: 50px;
    padding-top: 20px;
    text-align: center;
    font-size: 15px;
    color: #555;
  }
  /* ========================== */
/* 📱 PHONE-LIKE DEVICES ONLY */
/* ========================== */
@media screen and (orientation: portrait) and (max-width: 767px) {

  /* Navbar Adjustments */
  .navbar {
    flex-direction: column;
    height: auto;
    padding: 16px;
    align-items: flex-start;
  }

  .navbar .logo {
    margin-left: 0;
    margin-bottom: 10px;
  }

  .navbar .logo img {
    height: 140px;
  }

  .nav-buttons {
    flex-direction: column;
    gap: 12px;
    margin-right: 0;
    width: 100%;
  }

  .nav-buttons .nav-item {
    justify-content: flex-start;
    font-size: 16px;
  }

  .nav-buttons .nav-icon {
    width: 36px;
    height: 36px;
  }

  /* Contact Section */
  .contact-section {
    padding: 40px 20px;
  }

  .contact-layout {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 10px;
    gap: 40px;
  }

  .contact-intro {
    text-align: center;
  }

  .contact-intro h2 {
    font-size: 2rem;
    line-height: 1.4;
  }

  .contact-intro p {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    line-height: 1.6;
    text-align: center;
  }

  .contact-form {
    width: 100%;
  }

  .contact-form textarea {
    min-height: 200px;
  }

  .contact-form button {
    align-self: center;
  }

  .contact-motto {
    font-size: 1.4rem;
    padding: 20px 10px;
  }

  /* Footer Adjustments */
  .footer-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .footer-col {
    min-width: 100%;
  }

  .footer-col h4 {
    font-size: 18px;
  }

  .footer-bar {
    font-size: 14px;
  }
}

/* ======================================= */
/* 💻 TABLET & LAPTOPS (Landscape Devices) */
/* ======================================= */
@media screen and (orientation: landscape), screen and (min-width: 768px) {

  .contact-intro h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
  }

  .contact-intro p {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 1rem;
  }

  .contact-form button {
    font-size: 1rem;
  }

  .contact-motto {
    font-size: clamp(1.5rem, 2vw, 1.9rem);
  }

  .footer-col h4 {
    font-size: clamp(1rem, 1.1vw, 1.25rem);
  }

  .footer-bar {
    font-size: clamp(0.9rem, 1vw, 1rem);
  }
}

  