/* =====================================================
   GLOBAL STYLES
   ===================================================== */
   * {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f4;
    color: #2b2b2b;
    overflow-x: hidden;
  }
  
  h1, h2 {
    font-weight: 600;
    color: #1e5631;
  }
  
  
  /* =====================================================
     HERO SECTION
     ===================================================== */
  .hero {
    position: relative;
    min-height: 100vh;
    padding: 60px 20px;
    background:
      linear-gradient(rgba(30, 86, 49, 0.65), rgba(30, 86, 49, 0.85)),
      url('https://images.unsplash.com/photo-1501004318641-b39e6451bec6?auto=format&fit=crop&w=1500&q=80')
      center / cover no-repeat;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-shadow: 0 1px 8px rgba(0,0,0,0.6);
  }
  
  .hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: url('https://www.transparenttextures.com/patterns/white-diamond.png');
    opacity: 0.1;
  }
  
  /* Logo */
  .hero .logo {
    width: min(220px, 65vw);
    margin-bottom: 20px;
    animation: floatLogo 4s ease-in-out infinite;
    filter: drop-shadow(0 2px 8px rgba(255,255,255,0.4));
  }
  
  @keyframes floatLogo {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
  }
  
  /* Hero Heading */
  .hero h1 {
    font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    margin-bottom: 15px;
    color: #fff;
    font-family: cursiva;
  }
  
  /* Boxed Hero Text */
  .text-box {
    max-width: 760px;
    margin: 0 auto 25px;
    padding: 18px 22px;
    border-radius: 14px;
  }
  
  .hero .text-box {
    color: #fff;
    backdrop-filter: blur(6px);
  }
  
  .text-box p {
    margin: 0;
    font-size: clamp(0.95rem, 2.8vw, 1.15rem);
    line-height: 1.6;
  }
  
  
  /* =====================================================
     EMAIL FORM (INLINE ALWAYS)
     ===================================================== */
  .email-form {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: stretch;
    max-width: 420px;
  }
  
  .email-form input {
    flex: 1;
    padding: 12px 18px;
    border: none;
    outline: none;
    border-radius: 30px 0 0 30px;
    min-width: 0;
  }
  
  .email-form button {
    padding: 12px 25px;
    background-color: #e6b325;
    border: none;
    border-radius: 0 30px 30px 0;
    color: #1e5631;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
  }
  
  .email-form button:hover {
    background-color: #f7d358;
    transform: scale(1.05);
  }
  
  
  /* =====================================================
     HERO SOCIAL ICONS
     ===================================================== */
  .hero-social {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
  }
  
  .hero-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
  }
  
  .hero-social a:hover {
    background: #e6b325;
    color: #1e5631;
    transform: translateY(-3px) scale(1.1);
  }
  
  
  /* =====================================================
     BRAND STORY
     ===================================================== */
  .brand-story {
    background: linear-gradient(180deg, #fdfcf8, #f6f6f0);
    padding: 90px 20px;
    text-align: center;
  }
  
  .brand-story h2 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
  }
  
  .brand-story p {
    max-width: 750px;
    margin: 20px auto;
    line-height: 1.7;
    color: #3d3d3d;
  }
  
  /* Gallery */
  .brand-gallery {
    margin-top: 35px;
  }
  
  .brand-gallery .gallery-img {
    width: 100%;
    height: 80%;
    border-radius: 10px;
    border: 2px solid #1e5631;
    transition: all 0.4s ease;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  }
  
  .brand-gallery .gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 22px rgba(30, 86, 49, 0.2);
  }
  
  
  /* =====================================================
     WHAT TO EXPECT
     ===================================================== */
  .expect {
    background: linear-gradient(180deg, #f7f9f6, #eef4ee);
    padding: 90px 20px;
    text-align: center;
  }
  
  .expect h2 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    margin-bottom: 50px;
  }
  
  .expect-card {
    height: 100%;
    padding: 30px 20px;
    border-radius: 15px;
    border: 2px solid #1e5631;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.4s ease;
  }
  
  .expect-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(30, 86, 49, 0.15);
  }
  
  .expect-card .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
  
  .expect-card h5 {
    color: #1e5631;
    font-weight: 600;
  }
  
  .expect-card p {
    color: #4b4b4b;
    line-height: 1.6;
  }
  
  
  /* =====================================================
     FOOTER
     ===================================================== */
  .footer {
    background: #1e5631;
    color: #fff;
    padding: 40px 20px 20px;
    text-align: center;
  }
  
  .footer .social-icons a {
    color: #e6b325;
    margin: 0 12px;
    font-size: 1.0rem;
    transition: all 0.3s ease;
  }
  
  .footer .social-icons a:hover {
    color: #fff;
    transform: scale(1.2);
  }
  
  
  /* =====================================================
     RESPONSIVE BREAKPOINTS
     ===================================================== */
  @media (max-width: 576px) {
    .hero {
      padding: 50px 15px;
    }
  
    .text-box {
      padding: 15px;
    }
  
    .email-form {
      max-width: 100%;
    }
  
    .hero-social a {
      width: 38px;
      height: 38px;
      font-size: 1.1rem;
    }
  }
  
  @media (max-width: 360px) {
    .hero h1 {
      font-size: 1.6rem;
    }
  }
  