.about-hero{
    background-color: #DAC2A1;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 64px 0;
    position: relative;
    overflow: hidden;
    height: 500px;
    display: flex;
    align-items: center;
  }
  
  .about-hero__inner{
    position: relative;
    z-index: 1;
    text-align: center;
  }
  
  .about-hero h1{
    margin: 0;
    font-size: clamp(44px, 3vw, 44px);
    font-weight: 800;
    color: #1d1d1d;
  }
  
  .about-hero__subtitle{
    margin: 10px auto 0;
    max-width: 720px;
    color: rgba(0,0,0,0.55);
    line-height: 1.6;
    font-size: 24px;
  }
  
  .features {
  max-width: 1260px;
  margin: auto;
  padding: 40px 20px;
  display: flex;
  gap: 24px;
  justify-content: center;
}

.feature-card {
  flex: 1 1 300px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 30px;
  border: 2px solid #f4e0a5;
  border-radius: 14px;
  background: #F6EBCF;
  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-3px);
}

.feature-card .content .service-name {
  margin: 0;
  font-size: 20px;
  color: black;
}

.feature-card .content p {
  margin: 4px 0 0;
  font-size: 14px;
  color: #6b6b6b;
}

.pickup-section{
    background:#F6EBCF;
    padding:80px 20px;
    display:flex;
    justify-content:center;
  }
  
  .pickup-card{
    max-width:850px;
    width:100%;
    text-align:center;
    padding:60px 40px;
    background-image: url('/wp-content/uploads/bg-order.svg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius:18px;
  
    /* background:#271619; */
  
    color:white;
  }
  
  .pickup-icon{
    width:60px;
    height:60px;
    margin:auto;
    margin-bottom:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    border-radius:50%;
  }
  
  .pickup-card h2{
    font-size: clamp(24px, 3vw, 44px);
    color:#ffc107;
    margin-bottom:20px;
  }
  
  .pickup-desc{
    max-width:600px;
    margin:auto;
    color:#ddd;
    line-height:1.6;
    margin-bottom:25px;
    font-size: 16px;
  }
  
  .pickup-features{
    display:flex;
    justify-content:center;
    gap:30px;
    margin-bottom:30px;
    font-size:14px;
    color:#ddd;
  }

  .pickup-features span{
    display: flex;
    align-items: center;
    gap: 6px;
  }
  
  .pickup-btn{
    display:inline-block;
    background:#ffc107;
    color:black;
    font-size: 16px;
    padding:14px 28px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
    margin-bottom:25px;
    transition:0.3s;
  }
  
  .pickup-btn:hover{
    background:#ffcf3f;
  }
  
  .pickup-address{
    font-size:14px;
    color:#bbb;
  }

  .delivery-section{
    padding:80px 20px;
    text-align:center;
    background:#f5f0e3;
    }
    
    .delivery-title{
    font-size:40px;
    color:#7c0d1c;
    margin-bottom:10px;
    }
    
    .delivery-subtitle{
    color:#6b6b6b;
    margin-bottom:50px;
    font-size:16px;
    }
    
    .delivery-grid{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
    }
    
    .delivery-card{
    background:#F6EBCF;
    border:2px solid #f4e0a5;
    border-radius:12px;
    padding:40px 30px;
    width:300px;
    transition:0.3s;
    }
    
    .delivery-card:hover{
    transform:translateY(-5px);
    }
    
    .delivery-card img{
    height:40px;
    margin-bottom:15px;
    }
    
    .delivery-card .delivery-name{
    margin:10px 0;
    font-size:24px;
    font-weight: 500;
    color: #000;
    }
    
    .delivery-card p{
    font-size:16px;
    color:#777;
    margin-bottom:15px;
    }
    
    .delivery-card a{
    text-decoration:none;
    color:#7c0d1c;
    font-size: 16px;
    display: flex;
    justify-content: center;
    }

    .ordering-section{
        background:#F6EBCF;
        padding:80px 20px;
        display:flex;
        justify-content:center;
    }
        
    .ordering-card{
        background:#f4f1e9;
        padding:50px 60px;
        border-radius:10px;
        max-width:800px;
        width:100%;
        text-align:center;
        border: 1px solid #e8dcbd;
    }
        
    .ordering-card h2{
        margin-bottom:40px;
        font-size: clamp(24px, 3vw, 24px);
        color:#333;
    }
        
    .ordering-grid{
        display:flex;
        justify-content:space-between;
        gap:40px;
        text-align:left;
    }
        
    .hours h3{
        margin-bottom:15px;
        font-size:16px;
    }
        
    .hours p{
        margin:8px 0;
        font-size:14px;
        color:#7a0c16;
    }
        
    .hours span{
        font-weight:600;
        color:#333;
    }
        
    .divider{
        height:2px;
        background:#e0b52c;
        margin:30px 0;
    }
        
    .ordering-note{
        font-size:14px;
        color:#666;
    }
        


/* Tablet */
@media (max-width: 900px) {

    .about-hero__subtitle{
        font-size: 16px;
    }

    .features {
        gap: 14px;
    }

    .feature-card {
        align-items: baseline;
        flex-direction: column;
        font-size: 8px;
        padding: 12px;
    }

    .feature-card .content .service-name {
        font-size: 12px;
    }
    
    .feature-card .content p {
        font-size: 10px;
    }

    .pickup-card{
        padding:25px;
    }

    .pickup-icon img{
        width: 50px;
        height: 50px;
    }

    .pickup-desc{
        font-size: 10px;
    }

    .pickup-btn{
        font-size: 10px;
    }

    .pickup-features span{
        gap: 6px;
        font-size: 8px;
    }

    .pickup-features span img{
        width: 12px;
    }

    .pickup-address{
        font-size: 8px;
    }

    .delivery-grid{
        gap:20px;
    }
    
    .delivery-card{
        width:100%;
        max-width:350px;
    }

    .ordering-grid{
        flex-direction:column;
        text-align:center;
    }
        
    .hours{
        text-align:left;
    }

    .ordering-note{
        font-size: 10px;
    }

    .delivery-card .delivery-name{
        font-size:22px;
    }
        
    .delivery-card p,
    .delivery-card a{
        font-size: 14px;
    }

    .ordering-card{
        padding: 24px;
    }

    .feature-card .icon img{
        width: 20px;
        height: 20px;
    }

    .delivery-title{
      font-size: 32px;
    }

    .delivery-subtitle{
      font-size: 14px;
    }
  
}
