body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
    background-size: cover;
    background: linear-gradient(to bottom, #fdfbfb, #78b2d0); /* light surf vibe */
  }
  
  /* Header */
  header {
    background-color: #c93331;
    color: white;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }
  
  header img {
    height: 60px;
  }
  nav a {
    color: white;
    text-decoration: none;
    margin-left: 1rem;
    font-weight: bold;
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    transition: background-color 0.2s ease;
  }
  
  nav a:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  }
  
  
  /* Hero Section */
  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 4rem 2rem 2rem;
    background: none;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .hero-img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 2rem;
  }
  
  .hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
  }
  
  .hero-text p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
  }

  /* Products */
  .product-section {
    padding: 3rem 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
  }
  .product {
    border: 2px solid #e53935;
    padding: 1rem;
    max-width: 300px;
    text-align: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.85);
    transition: transform 0.2s ease, box-shadow 0.3s ease;
  }
  .product:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  }
  .product img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
  }
  .product h3 {
    margin-bottom: 0.5rem;
  }
  .product p {
    font-size: 0.95rem;
  }
  .product button {
    margin-top: 1rem;
    background-color: #e53935;
    color: white;
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
  }
  .product button:hover {
    background-color: #d32f2f;
  }
  
  /* About Section */
  .about {
    padding: 3rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }
  .about h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  .about p {
    margin-bottom: 1rem;
  }
  
  /* FAQ Section */
  .faq {
    padding: 4rem 2rem;
    background-color: #fefefe;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.05);
  }
  
  .faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #e53935;
  }
  
  .faq-item {
    margin-bottom: 2rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
  }
  
  .faq-item h4 {
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1.2rem;
    color: #333;
  }
  
  .faq-item p {
    font-size: 1rem;
    color: #555;
  }
  
  
  /* Contact */
  .contact {
    padding: 3rem 2rem;
  }
  .contact h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2rem;
  }
  .contact-info {
    text-align: center;
    margin-top: 2rem;
  }
  .contact form {
    max-width: 500px;
    margin: 0 auto;
    padding: 1rem;
    background: #fefefe;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    flex: 1 1 400px;
  }
  .contact label {
    margin-top: 1rem;
    font-weight: bold;
  }
  .contact input,
  .contact textarea {
    padding: 0.75rem;
    margin-top: 0.25rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
  }
  .contact button {
    margin-top: 1.5rem;
    background-color: #e53935;
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
  }
  .contact button:hover {
    background-color: #d32f2f;
  }

  .contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    align-items: flex-start;
  }
  
  .contact-image {
    flex: 1 1 300px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  
  
  /* Footer */
  footer {
    background: #616567;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 3rem;
  }

  .contact-info a img:hover {
    transform: scale(1.1);
    transition: transform 0.2s ease;
  }

  html {
    scroll-padding-top: 100px; /* Match your header height */
    scroll-behavior: smooth;
  }

  .ingredients {
    max-width: 900px;
    margin: 4rem auto;
    padding: 2rem;
    text-align: center;
  }
  
  .ingredients h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #e53935;
  }
  
  .ingredient-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
    text-align: left;
  }
  
  .ingredient-card h3 {
    font-size: 1.9rem;
    margin-bottom: 1.25rem;
    color: #e53935;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  
  .ingredient-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .ingredient-card li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.5;
    color: #444;
  }
  
  .ingredient-card li::before {
    content: "•";
    color: #e53935;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1.4;
  }

  .ingredient-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
  }
  
  
  
  .about,
.faq,
.contact form {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
  
.surf-banner img {
  width: 90%;
  max-width: 1000px;
  height: 250px;
  object-fit: cover;
  object-position: middle;
  display: block;
  margin: 4rem auto;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}





  
  
  