:root {
  --primary-color: #ff6f61; /* Coral color for accents */
  --secondary-color: #ffffff; /* White for text */
  --background-color: #1e0602; /* Deep, rich background color */
  --font-heading: 'Great Vibes', cursive;
  --font-body: 'Poppins', sans-serif;
}

/* Styles for the new top-right buttons */
.top-right-buttons {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  gap: 15px; /* Space between buttons */
}

.top-right-buttons a {
  color: var(--secondary-color); /* White text */
  text-decoration: none;
  font-size: 1rem;
  padding: 10px 15px;
  background-color: rgba(255, 255, 255, 0.1); /* Transparent background */
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.top-right-buttons a:hover {
  background-color: rgba(255, 255, 255, 0.3);
  color: #1E0602; /* New dark color */
}

.header-phone {
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  padding: 10px 0;
  background: transparent;
}

.header-phone i {
  color: var(--secondary-color);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .header-phone {
    font-size: 0.9rem;
    padding: 8px 0;
  }
  
  /* Optional: Show just icon on very small screens */
  @media (max-width: 480px) {
    .header-phone span {
      display: none;
    }
  }
}

 /* Top right buttons */
 .top-right-buttons {
  right: 10px;
  top: 10px;
  gap: 8px;
  padding-left: 80px;
}

.top-right-buttons a {
  padding: 8px 10px;
  font-size: 0.9rem;
}








/* Reset and base styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    color: #F5F5F0;
    background-color: #1E0602;
    line-height: 1.6;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  

  
  /* Hero Section */
  .hero {
    padding: 200px 0 100px;
    text-align: center;
    background-image: url('drink-3 (1).jpg');
    background-size: cover;
    background-position: center;
    position: relative;
  }
  
  .hero::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1E0602;
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
    background-color: #1e060240;
    padding: 20px;
  }
  
  .hero span {
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
  }
  
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    margin-bottom: 20px;
    color: #F5F5F0;
  }
  
  .hero p {
    max-width: 600px;
    margin: 0 auto;
    color: rgba(245, 245, 240, 0.8);
    font-size: 18px;
  }
  
  /* Our Story Section */
  .our-story {
    padding: 100px 0;
  }
  
  .story-container {
    display: flex;
    align-items: center;
    gap: 50px;
  }
  
  .story-image {
    flex: 1;
  }
  
  .story-image img {
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
  
  .story-content {
    flex: 1;
  }
  
  .story-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 30px;
    position: relative;
  }
  
  .story-content h2::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #ffffff;
  }
  
  .story-content p {
    margin-bottom: 20px;
    color: rgba(245, 245, 240, 0.9);
  }
  
  /* Philosophy Section */
  .philosophy {
    padding: 100px 0;
    background-color: #1E0602;
  }
  
  .philosophy h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
  }
  
  .philosophy h2::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background-color: #ffffff;
  }
  
  .philosophy-cards {
    display: flex;
    justify-content: space-between;
    gap: 30px;
  }
  
  .philosophy-card {
    flex: 1;
    background-color: #4a393663;
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s, border 0.3s;
  }
  
  .philosophy-card:hover {
    transform: translateY(-10px);
    border: 1px solid #ffffff;
  }
  
  .philosophy-card i {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 20px;
    display: block;
  }
  
  .philosophy-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 15px;
  }
  
  .philosophy-card p {
    color: rgba(245, 245, 240, 0.8);
  }
  
  /* Team Section */
  .team {
    padding: 100px 0;
  }
  
  .team h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
  }
  
  .team h2::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background-color: #ffffff;
  }
  
  .team-members {
    display: flex;
    justify-content: space-between;
    gap: 30px;
  }
  
  .team-member {
    flex: 1;
    text-align: center;
  }
  
  .member-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
  
  .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .team-member h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 5px;
  }
  
  .team-member span {
    display: block;
    color: rgba(245, 245, 240, 0.6);
    margin-bottom: 15px;
  }
  
  .team-member p {
    color: rgba(245, 245, 240, 0.8);
    max-width: 280px;
    margin: 0 auto;
  }
  
 
  /* CTA Section */
  .cta {
    padding: 120px 0;
    text-align: center;
    background-image: url('IMG_7954\ \(1\).jpg');
    background-size: cover;
    background-position: center;
    position: relative;
  }
  
  .cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1e06024f;
  }
  
  .cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 20px;
  }
  
  .cta p {
    color: rgba(245, 245, 240, 0.9);
    margin-bottom: 30px;
    font-size: 18px;
  }
  
  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 16px;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .btn-primary {
    background-color: #f8f8f8;
    color: #011013;
    font-weight: 500;
  }
  
  .btn-primary:hover {
    background-color: #F0E6C0;
  }
  
  .btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
  }
  
  .btn-secondary:hover {
    color: #F0E6C0;
    border-color: #F0E6C0;
  }
  

  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .story-container,
    .philosophy-cards,
    .team-members {
      flex-direction: column;
    }
    
    .story-image {
      margin-bottom: 40px;
    }
    
    .philosophy-card,
    .team-member {
      margin-bottom: 30px;
    }
    
    .achievement {
      flex: 1 0 100%;
    }
    
   
  }
  
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 40px;
    }
    
    .nav-links {
      display: none;
    }
    
    .footer-column {
      flex: 1 0 100%;
    }
    
    .cta-buttons {
      flex-direction: column;
      align-items: center;
    }
    
    .btn {
      width: 100%;
      max-width: 250px;
      text-align: center;
      margin-bottom: 15px;
    }
  }

   /* Footer Styling */
/* Footer Styling */
/* Footer Styling */
 /* Footer Styling */
 footer {
  background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent black for footer */
  color: var(--secondary-color);
  padding: 20px;
  text-align: center;
}

footer .logo {
  font-family: var(--font-heading);
  font-size: 2rem;
}

footer .social-media a {
  color: var(--secondary-color);
  margin: 0 10px;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

footer .social-media a:hover {
  color: var(--primary-color);
}

footer .copyright {
  margin-top: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Footer Contact Info - Centered and Stacked */
.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 15px 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-item i {
  color: var(--primary-color);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .contact-info {
    margin: 12px 0;
  }
  
  .contact-item {
    font-size: 0.95rem;
  }
}