
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #ffffff;
  color: #0A2472;
  font-family: '', 'Poppins', sans-serif;
}

/* NAVBAR */
.navbar {
  font-family:  'Poppins', sans-serif;
  width: 100%;
  font-size: 20px;
  padding: 13px 4vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffffdd;
  border-bottom: 1px solid #eee;
  position: fixed;
  top: 0;
  z-index: 20;
}



/* LOGO */
.logo {
  font-size: 22px;
  font-weight: 700;
  color: #0A2472;
}

.logo img {
  height: 60px;
  width: 60px;
  margin-left: 20px;
  border: 2px solid #DC338E;
  border-radius: 50%;
  object-fit: cover;
}

/* NAV LINKS */
nav {
  display: flex;
  gap: 25px;
}

nav a {
  font-size: 20px;
  font-weight: 600;
  color: #0A2472;
  text-decoration: none;
  transition: 0.3s;
}

nav a:hover {
  color: #DC338E;
}

/* HAMBURGER ICON */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #0A2472;
  border-radius: 5px;
}

/* MOBILE MENU HIDDEN */
#nav-links {
  transition: all 0.3s ease-in-out;
}

/* HERO SECTION */
.hero {
  position: relative;
  min-height: 100vh;
  background-image: url("./images/vegan-ice-cream-cones-colored-background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: flex-start;   /* left align */
  padding-left: 6vw;
  padding-right: 6vw;
  text-align: left;
}


/* HERO CONTENT PROPERLY ALIGNED */
.hero-content {
  position: relative;
  z-index: 5;

  max-width: 650px;     /* premium width */
  display: flex;
  flex-direction: column;
  gap: 20px;

  align-items: flex-start;       /* perfect left alignment */
  justify-content: center;
}

/* HEADING */
.hero-left h1 {
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 400;
  padding: 2px;
  line-height: 1.18;
  color: #001c71;
  margin-bottom: 10px;
}
/* PARAGRAPH */
.hero-right p {
  font-size: clamp(16px, 2.5vw, 20px);
  color: #333;
  opacity: 0.95;
  max-width: 520px;
  margin-bottom: 10px;
  line-height: 1.4;
}

/* BUTTON GROUP */
.button-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}

/* BUTTONS FIXED */
.btn {
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;   
  text-decoration: none;
  transition: 0.3s;
}

/* PRIMARY BUTTON */
.btn.primary {
  background: #DC338E;
  color: white;
}

.btn.primary:hover {
  background: #b7286b;
}

/* OUTLINE BUTTON */
.btn.outline {
  border: 2px solid #0A2472;
  color: #0A2472;
}

.btn.outline:hover {
  background: #0A2472;
  color: white;
}

/* MOBILE FIXES — TRUE PREMIUM RESPONSIVE */
@media (max-width: 900px) {

  .navbar{
      height: 80px;
  }

  .hero {
    justify-content: center;
    padding-left: 4vw;
    padding-right: 4vw;
    text-align: center;
    background-position: center;
  }

  .hero-content {
    align-items: center;   /* center everything */
    text-align: center;
    max-width: 90%;
  }

  .hero-left h1 {
    text-align: center;
    font-size: clamp(30px, 7vw, 38px);
    line-height: 1;
  }

  .hero-right p {
    text-align: center;
    max-width: 90%;
  }

  .button-group {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 900px) {
  nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  #nav-links.show {
    display: flex;
    position: absolute;
    top: 65px;
    right: 5vw;
    flex-direction: column;
    gap: 18px;
    background: #ffffffdd;
    backdrop-filter: blur(5px);
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }

  .hero {
    background-position: center;
  }

  .hero-content {
    flex-direction: column;
    gap: 18px;
    padding-top: 40px;
    text-align: center;
    max-width: 900px;
  }

  .hero-left {
    width: 100%;
    text-align: center;
  }

  .hero-left h1 {
    text-align: center;
    font-weight: 600;
    font-size: 30px;
    line-height: 1.02;
  }

  .hero-right {
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .button-group {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .btn.primary {
    width: 100%;
    text-align: center;
  }
}


/* Menu Section */

.menu-section {
  padding: 80px 6vw;
  text-align: center;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #0A2472;
  background-clip: text;
}

.section-sub {
  font-size: 18px;
  color: #666;
  margin-bottom: 60px;
  font-weight: 500;
}

/* MENU GALLERY GRID - Beautiful & Responsive */
.menu-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  justify-content: center;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Menu Image Box Container */
.menu-img-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu-img-box {
  box-shadow: 0 10px 30px rgba(220, 51, 142, 0.15);
}

.menu-img-box:hover {
  box-shadow: 0 20px 50px rgba(220, 51, 142, 0.25);
  transform: translateY(-12px);
}

/* Images */
.menu-img-box img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 20px;
}

.menu-img-box:hover img {
  transform: scale(1.1);
  filter: brightness(0.9);
}

/* Image Overlay Effect */
.menu-img-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(220, 51, 142, 0.1), rgba(10, 36, 114, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 20px;
  pointer-events: none;
}

.menu-img-box:hover::after {
  opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .menu-gallery {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    padding: 0 15px;
  }

  .menu-img-box img {
    height: 340px;
  }
}

@media (max-width: 768px) {
  .menu-section {
    padding: 60px 5vw;
  }

  .section-title {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .section-sub {
    font-size: 16px;
    margin-bottom: 45px;
  }

  .menu-gallery {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 0 10px;
  }

  .menu-img-box {
    border-radius: 15px;
  }

  .menu-img-box img {
    height: 550px;
    border-radius: 15px;
  }

  .menu-img-box:hover {
    transform: translateY(-8px);
  }

  .menu-img-box::after {
    border-radius: 15px;
  }
}

@media (max-width: 480px) {
  .menu-section {
    padding: 50px 1vw;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .section-sub {
    font-size: 14px;
    margin-bottom: 35px;
  }

  .menu-gallery {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .menu-img-box img {
    height: 440px;
  }
}

/* POPUP fullscreen - Enhanced */
.menu-popup {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(5px);
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.menu-popup img {
  width: 90%;
  max-width: 800px;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  animation: zoomIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  object-fit: contain;
  max-height: 90vh;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .menu-popup img {
    width: 95%;
    max-width: 600px;
    border-radius: 15px;
  }
}

/* About Section */

.about-section {
  padding: 100px 6vw;
  background: #ffffff;
}

/* CONTAINER */
.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

/* TEXT CONTENT */
.about-content {
  flex: 1 1 480px;
}

.about-content h2 {
  font-size: clamp(32px, 5vw, 48px);
  color: #0A2472;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 600px;
}

/* BUTTON */
.about-btn {
  padding: 14px 35px;
  border-radius: 35px;
  font-size: 16px;
}

/* IMAGE */
.about-image {
  flex: 1 1 480px;
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 550px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  object-fit: cover;
}

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

  .about-section {
    padding: 70px 6vw;
  }

  .about-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .about-content h2 {
    text-align: center;
  }

  .about-content p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .about-btn {
    margin: 0 auto;
  }

  .about-image img {
    max-width: 400px;
  }
}

/* Contact */ 

/* CONTACT SECTION */
.contact-section {
  position: relative;
  width: 100%;
  padding: 120px 6vw;

  background-image: url("./images/contact\ us.jpg");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
}


/* CONTENT WRAPPER */
.contact-container {
  position: relative;
  z-index: 5;
  max-width: 550px;
}

/* CONTACT INFO CARD (Glass effect) */
.contact-info {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);

  padding: 40px 35px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.contact-info h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: #0A2472;
  margin-bottom: 15px;
}

.tagline {
  font-size: 18px;
  opacity: 0.75;
  margin-bottom: 25px;
}

.info-item {
  margin-bottom: 20px;
}

.info-item h4 {
  font-size: 18px;
  font-weight: 600;
  color: #DC338E;
  margin-bottom: 5px;
}

.info-item p {
  font-size: 16px;
  color: #0A2472;
  opacity: 0.9;
}

/* CONTACT BUTTON */
.contact-btn {
  margin-top: 20px;
  padding: 14px 32px;
  font-size: 16px;
  border-radius: 30px;
}

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

  .contact-section {
    padding: 70px 5vw;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* Make the container centered nicely */
  .contact-container {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }

  /* Make the glass card centered + perfect spacing */
  .contact-info {
    width: 100%;
    padding: 35px 25px;
    border-radius: 18px;
    text-align: center;
    backdrop-filter: blur(10px);
  }

  /* Heading */
  .contact-info h2 {
    text-align: center;
    font-size: 32px;
  }

  /* Tagline */
  .tagline {
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
  }

  /* Items center aligned */
  .info-item {
    margin-bottom: 20px;
    text-align: center;
  }

  .info-item h4 {
    margin-bottom: 5px;
    text-align: center;
  }

  .info-item p {
    text-align: center;
    line-height: 1.5;
  }

  /* Contact button */
  .contact-btn {
    display: block;
    margin: 25px auto 0;
    width: 100%;
    max-width: 300px;
  }
}


/* VIDEO SECTION */
.video-section {
  padding: 100px 6vw;
  background: #ffffff;
}

.video-section .section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  color: #0A2472;
}

.video-section .section-sub {
  text-align: center;
  font-size: 18px;
  opacity: 0.75;
  margin-bottom: 50px;
}

/* GRID LAYOUT */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* VIDEO CARDS */
.video-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.video-card img {
  width: 100%;
  display: block;
  transition: 0.3s;
}

/* HOVER EFFECT */
.video-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.7);
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;

  background: rgba(0,0,0,0.45);
  color: #fff;
  font-size: 18px;
  opacity: 0;
  transition: 0.3s;
}

.video-card:hover .video-overlay {
  opacity: 1;
}

/* WHATSAPP FLOATING BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  z-index: 999;

  background: #25D366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;

  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  transition: 0.3s ease;
}

.whatsapp-float img {
  width: 34px;
  height: 34px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
}
@keyframes waBounce {
  0% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}

.whatsapp-float {
  animation: waBounce 2.2s infinite ease-in-out;
}




