/* Reset and Basic Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(to bottom, #0541d8, #000080);
  overflow-x: hidden;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
section {
  position: relative;
  width: 100%;
  height: auto; 
  overflow: hidden;
}

/* Wavy Borders */
section .wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: url('../imgs/wave.png');
  background-size: 1000px 100px;
}
section .wave.wave1 {
  animation: animate 30s linear infinite;
  z-index: 1000;
  opacity: 1;
  animation-delay: 0s;
  bottom: 0;
}
@keyframes animate {
  0% {
      background-position-x: 0;
  }
  100% {
      background-position-x: 1000px;
  }
}
section .wave.wave2 {
  animation: animate2 15s linear infinite;
  z-index: 999;
  opacity: 0.5;
  animation-delay: -5s;
  bottom: 10px;
}
@keyframes animate2 {
  0% {
      background-position-x: 0;
  }
  100% {
      background-position-x: -1000px;
  }
}
section .wave.wave4 {
  animation: animate2 5s linear infinite;
  z-index: 997;
  opacity: 0.7;
  animation-delay: -2s;
  bottom: 20px;
}
section .wave.wave3 {
  animation: animate 20s linear infinite;
  z-index: 998;
  opacity: 0.2;
  animation-delay: -2s;
  bottom: 15px;
}
@media (min-width: 769px) {
  .burger-menu {
    display: none;
  }
  .vertical-nav {
    display: block;
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 80px;
    background: lightgrey;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-radius: 10px 0 0 10px;
    transition: opacity 0.5s ease, transform 0.5s ease;
    opacity: 1;
    visibility: visible;
  }
  .vertical-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
  }
  .vertical-nav a {
    color: #FF4500;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
  }
  .vertical-nav a:hover {
    color: #FF6347;
  }
  .vertical-nav a span {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .vertical-nav a:hover span {
    transform: translateY(-5px);
    opacity: 0.7;
  }
}
@media (max-width: 768px) {
  .burger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10001;
  }
  .burger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #FF4500;
    transition: all 0.3s ease;
  }
  .burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger-menu.active span:nth-child(2) {
    opacity: 0;
  }
  .burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .vertical-nav {
    display: block; 
    position: fixed;
    top: 0;
    right: -80px; 
    width: 80px;
    height: 100vh;
    background: lightgrey;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-radius: 0;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .vertical-nav.active {
    right: 0;
  }
  .vertical-nav ul {
    list-style: none;
    padding-top: 60px; 
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .vertical-nav a {
    color: #FF4500;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
  }
  .vertical-nav a:hover {
    color: #FF6347;
  }
  .vertical-nav a span {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .vertical-nav a:hover span {
    transform: translateY(-5px);
    opacity: 0.7;
  }

  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .nav-overlay.active {
    opacity: 1;
    pointer-events: all;
  }
}

.hero { 
  background-size: cover;
  background-position: center;
  min-height: 100vh; 
  display: flex;
  align-items: center;
  color: #791000;
  position: relative;
  z-index: 1;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero-content {
  max-width: 600px;
  text-align: center;
  margin: 0 auto;
}
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: #f17244;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: lightgrey;
}
.cta-button {
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
  text-decoration: none;
  transition: background-color 0.3s;
}
.cta-button:hover {
  background-color: #FF6347;
}
.about {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, rgb(255, 255, 255), transparent);
  z-index: 1;
}

.liquid-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #0a192f00 0%, #172a4500 100%);
  z-index: 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  position: relative;
  z-index: 1;
}
.about-media {
  position: relative;
  min-height: 600px;
}
.logo-reflection {
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 40px;
  background: linear-gradient(to top, rgba(255,255,255,0.1), transparent);
  border-radius: 50%;
  filter: blur(5px);
}
.decorative-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.3;
}
.circle-1 {
  width: 300px;
  height: 300px;
  background: lightgrey;
  top: 20%;
  left: 10%;
  animation: pulse 4s infinite;
}
.circle-2 {
  width: 200px;
  height: 200px;
  background: #ff4500;
  bottom: 15%;
  right: 15%;
  animation: pulse 5s infinite;
}
.ingredients-showcase {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none; 
  z-index: 1;
}

.about-text {
  position: relative;
  padding-left: 3rem;
}
.about-text p {
  color: white;
}
.section-title {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 2rem;
  position: relative;
  color: #ff4400;
}
.section-title span {
  color: rgb(255, 255, 255);
  font-weight: 300;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}
.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  
  border: 1px solid rgba(255,215,0,0.1);
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff4500;
  margin-bottom: 0.5rem;
}
.lead-text {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  position: relative;
  padding-left: 2rem;
  border-left: 3px solid #ff4500;
}
.lead-texts {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  position: relative;
  padding-left: 2rem;
}
.signature {
  margin-top: 3rem;
  text-align: right;
}
.signature img {
  width: 180px;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}
.floating-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.logo-main {
  width: 280px;
  filter: drop-shadow(0 0 15px lightgrey);
}
.founder-title {
  color: #ffd700;
  font-size: 0.9rem;
  letter-spacing: 2px;
}
@keyframes float {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-20px); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}
@keyframes sway {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}
@media (max-width: 768px) {
  .about-grid {
      grid-template-columns: 1fr;
  }

  .about-text {
    position: relative;
    padding-left: 0rem;
  }
  .about-media {
      min-height: 400px;
      margin-bottom: 3rem;
  }
  .section-title {
      font-size: 2.5rem;
  }
  .stats-grid {
      grid-template-columns: 1fr;
  }
}

.portfolio {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.section-title {
  font-size: 3rem;
  text-align: center;
  color: #ff4500;
  margin-bottom: 4rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  z-index: 2;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

.portfolio-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.portfolio-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg,
    rgba(255, 69, 0, 0.1) 0%,
    rgba(255, 215, 0, 0.1) 100%);
  z-index: 1;
}

.portfolio-item:hover {
  transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.portfolio-image {
  height: 400px;
  position: relative;
  transition: height 0.4s ease;
}

.animated-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, #fd4604 0%, transparent 100%);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.overlay h3{
  font-family: "Lobster", serif;
  font-weight: 400;
  font-style: normal;
}
.portfolio-item:hover .overlay {
  transform: translateY(0);
}

.details {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #FFFACD;
  padding: 2rem;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 3;
}

/* Decorative Elements */
.section-decor {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

/* Decorative Bubbles */
.decor-bubble {
  position: absolute;
  border-radius: 50%;
  background: lightgrey ; 
  animation: float linear infinite;

  z-index: 1 !important;
}


.bubble-1 {
  width: 150px;
  height: 150px;
  top: 10%;
  left: 5%;
  animation-duration: 8s;
  animation-name: float-up-left;
}


.bubble-2 {
  width: 100px;
  height: 100px;
  top: 70%;
  right: 10%;
  animation-duration: 10s;
  animation-name: float-down-right;
}

.bubble-3 {
  width: 200px;
  height: 200px;
  bottom: 10px;
  left: 60%;
  animation-duration: 12s;
  animation-name: float-up;
}

.bubble-4 {
  width: 120px;
  height: 120px;
  top: 20%;
  right: 5%;
  animation-duration: 9s;
  animation-name: float-left;
}

.bubble-5 {
  width: 80px;
  height: 80px;
  top: 50%;
  left: 20%;
  animation-duration: 7s;
  animation-name: float-down-left;
}

.bubble-6 {
  width: 180px;
  height: 180px;
  bottom: 20%;
  right: 20%;
  animation-duration: 11s;
  animation-name: float-up-right;
}

@keyframes float-up-left {
  0% { transform: translate(0, 0); }
  50% { transform: translate(-50px, -50px); }
  100% { transform: translate(0, 0); }
}

@keyframes float-down-right {
  0% { transform: translate(0, 0); }
  50% { transform: translate(50px, 50px); }
  100% { transform: translate(0, 0); }
}

@keyframes float-up {
  0% { transform: translateY(0); }
  50% { transform: translateY(-100px); }
  100% { transform: translateY(0); }
}

@keyframes float-left {
  0% { transform: translateX(0); }
  50% { transform: translateX(-100px); }
  100% { transform: translateX(0); }
}

@keyframes float-down-left {
  0% { transform: translate(0, 0); }
  50% { transform: translate(-50px, 50px); }
  100% { transform: translate(0, 0); }
}

@keyframes float-up-right {
  0% { transform: translate(0, 0); }
  50% { transform: translate(50px, -50px); }
  100% { transform: translate(0, 0); }
}
.modal {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.7);
}
.modal-content {
  background-color: #FFFACD;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #FF4500;
  width: 80%;
  max-width: 400px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transform: scale(0.1);
  opacity: 0;
  transition: transform 0.5s, opacity 0.5s;
}
.modal-content.show {
  transform: scale(1);
  opacity: 1;
}
.close-button {
  color: #FF4500;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
.close-button:hover,
.close-button:focus {
  color: #FF6347;
  text-decoration: none;
  cursor: pointer;
}
.modal-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 10px;
}
.modal h2 {
  color: #FF4500;
  margin-bottom: 1rem;
}
.modal p {
  color: #333;
  margin-bottom: 0.5rem;
}
.modal p:last-child {
  font-weight: bold;
  color: #FF4500;
}
.contact {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.contact-decor {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.decor-circle {
  position: absolute;
  border-radius: 50%;

  opacity: 0.3;
  animation: pulse 8s infinite;
}

.decor-wave {
  position: absolute;
  width: 200%;
  height: 100px;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M0 50 Q 25 30 50 50 T 100 50 L100 100 L0 100" fill="%23F9F9F9" opacity="1"/></svg>');
  bottom: 0;
  left: 0;
  animation: wave 15s linear infinite;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.contact-info {
  background: rgba(255, 255, 255, 0.9);
  padding: 2.5rem;
  border-radius: 20px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: #FF4500;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.info-content h3 {
  color: #FF4500;
  margin-bottom: 0.5rem;
}

.animated-form {
  background: rgba(255, 255, 255, 0.9);
  padding: 2.5rem;
  border-radius: 20px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
  position: relative;
  margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 2px solid #ddd;
  border-radius: 0;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.form-group label {
  position: absolute;
  left: 0;
  top: 1rem;
  color: #666;
  pointer-events: none;
  transition: all 0.3s ease;
}

.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label {
  top: -0.5rem;
  font-size: 0.8rem;
  color: #FF4500;
}

.underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #FF4500;
  transition: width 0.3s ease;
}

.form-group input:focus ~ .underline,
.form-group textarea:focus ~ .underline {
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  box-shadow: none;
  border-bottom-color: #ddd; 
}
.form-group input:focus ~ .underline,
.form-group textarea:focus ~ .underline {
  width: 100%;
  background: #FF4500;
}
.cta-button {
  position: relative;
  overflow: hidden;
  border: none;
  background: #FF4500;
  color: white;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button .liquid {
  position: absolute;
  top: -80px;
  left: 0;
  width: 100%;
  height: 200px;
  transition: all 0.3s ease;
  transform: translateY(0);
}

.cta-button:hover .liquid {
  transform: translateY(80px);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@keyframes wave {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-info,
  .animated-form {
    padding: 1.5rem;
  }
}
.footer {
  position: relative;
  background: #F9F9F9; /* Matches navbar color */
  color: #333; /* Dark text for contrast */
  padding: 4rem 0 2rem;
  overflow: hidden;
  z-index: 1;
}

.footer-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);

}

.shape-1 {
  width: 400px;
  height: 400px;
  top: -20%;
  left: -10%;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: float 25s infinite linear;
}

.shape-2 {
  width: 300px;
  height: 300px;
  bottom: -15%;
  right: -8%;
  border-radius: 67% 33% 56% 44% / 37% 68% 32% 63%;
  animation: float 20s infinite linear reverse;
}

.shape-3 {
  width: 200px;
  height: 200px;
  top: 30%;
  right: 20%;
  border-radius: 50%;
  animation: pulse 4s infinite ease-in-out;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.brand-logo {
  position: relative;
  margin-bottom: 1.5rem;
}

.logo-text {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #FF4500; /* Orange for brand consistency */
}

.logo-glow {
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, #FF4500 0%, transparent 70%);
  top: -10%;
  left: -10%;
  opacity: 0.3;

  z-index: -1;
}

.tagline {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 2rem;
}
.social-links {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: #fff; /* White background for better contrast */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Soft shadow */
  transition: all 0.3s ease-in-out;
}
.social-icon svg {
  width: 20px;
  height: 20px;
  fill: #333; /* Darker icons for contrast */
  transition: fill 0.3s ease-in-out;
}

.social-icon:hover {
  background: #FF4500;
  transform: translateY(-3px);
}
.social-icon:hover svg {
  fill: #fff; /* White icon on hover */
}
.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
  color: #FF4500; /* Orange headings */
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #FF4500;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #333; /* Dark text for contrast */
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #FF4500; /* Orange on hover */
  padding-left: 5px;
}

.online-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.status-indicator {
  width: 10px;
  height: 10px;
  background: #4CAF50; /* Green for online status */
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.online-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.online-link {
  color: #FF4500; /* Orange links */
  text-decoration: none;
  transition: all 0.3s ease;
}

.online-link:hover {
  color: #FF6347; /* Lighter orange on hover */
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  opacity: 0.7;
  font-size: 0.9rem;
  color: #333; /* Dark text for contrast */
}

.legal-links {
  display: flex;
  gap: 1.5rem;
}

.legal-links a {
  color: #333; /* Dark text for contrast */
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.legal-links a:hover {
  color: #FF4500; /* Orange on hover */
}

.overlay h3 {
  font-size: 1.2rem;
  color: lightgrey;
}
.overlay p {
color: lightgrey;
  font-size: 0.9rem;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(10px, -10px) rotate(5deg); }
  50% { transform: translate(-10px, 10px) rotate(-5deg); }
  75% { transform: translate(5px, 5px) rotate(3deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}


/* Responsive Design */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  
  .portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.portfolio-item {
    width: 100%;
}
.hero {
  min-height: 100vh;
  height: 100vh;
  padding: 20px;
}

.hero-content {
  width: 90%;
  max-width: none;
  text-align: center;
  margin-top: -10vh; /* Adjust vertical centering */
}

.hero h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.cta-button {
  padding: 12px 24px;
  font-size: 1rem;
}

/* Adjust wave animations if needed */
.wave {
  height: 80px;
}
.hero-content {
    padding: 0 20px;
}
.portfolio-grid {
    gap: 1rem;
}
.portfolio-item {
    width: 100%;
}
.portfolio-image img {
    height: 200px;
}
.overlay {
    padding: 0.8rem;
}
.overlay h3 {
  font-size: 1.2rem;
  color: lightgrey;
}
.overlay p {
color: lightgrey;
  font-size: 0.9rem;
}
#contact-form {
    padding: 20px;
}
.modal-content {
    width: 90%;
}
}
  


@media (max-width: 480px) {
  .hero h1 {
      font-size: 2rem;
  }
  .hero p {
      font-size: 1rem;
  }
  .hero-content {
      padding: 0 20px;
  }
  .portfolio-grid {
      gap: 1rem;
      
  }
  .portfolio-item {
      width: 100%;
      
  }
  .portfolio-image img {
      height: 200px;
  }
  .overlay {
      padding: 0.8rem;
  }
  .overlay h3 {
      font-size: 1.2rem;
      color: lightgrey;
  }
  .overlay p {
    color: lightgrey;
      font-size: 0.9rem;
  }
  #contact-form {
      padding: 20px;
  }
  .modal-content {
      width: 90%;
  }
}
.particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.drink-particle {
  width: 40px !important;
  height: 40px !important;
  opacity: 0.5;
  transform: translate(-50%, -50%);
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.ingredient-overlay {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to top, #d34410 0%, transparent 100%);
  padding: 1rem 2rem;
  border-radius: 15px;
  z-index: 1000;
  text-align: center;
  font-weight: bold;
  color: rgb(255, 255, 255);
}
@keyframes particle-float {
  0%, 100% {
    transform: translate(-50%, -50%) scale(0.8) rotate(0deg);
    opacity: 0.8;
  }
  50% {
    transform: translate(-50%, -50%) scale(1) rotate(180deg);
    opacity: 1;
  }
}

@keyframes particle-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
/* Mobile Responsive Images */
@media (max-width: 768px) {
  .portfolio-item {
    width: 100% !important;
    height: auto !important;
    margin: 1rem 0 !important;
  }

  .portfolio-image {
    height: 250px !important; /* Reduced height for mobile */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .animated-image {
    width: 60% !important;
    height: auto !important;
    object-fit: contain !important;
    transform: none !important;
    clip-path: none !important;
  }

  /* Center particles */
  .particle-canvas {
    justify-content: center !important;
    align-items: center !important;
  }
}
/* Add these rules to your existing .portfolio-item.expanded styles */
.portfolio-item.expanded {
  transform: translateY(-20px) scale(1.05);
  z-index: 10;
  pointer-events: none; /* Add this to disable hover */
}

.portfolio-item.expanded::after {
  opacity: 0 !important; /* Force hide hover effect */
  transition: opacity 0.2s ease !important;
}

.portfolio-item.expanded .details {
  top: 0;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.2);
}

/* Add transition for smooth hover effect */
.portfolio-item::after {
  transition: opacity 0.3s ease, transform 0.3s ease !important;
}
@media (max-width: 768px) {
  .portfolio-item.expanded {
    pointer-events: none;
  }

  .portfolio-item.expanded::after {
    opacity: 0 !important;
    transition: opacity 0.2s ease !important;
  }

  /* Force hide hover effect on mobile */
  .portfolio-item.expanded .portfolio-image::after {
    opacity: 0 !important;
  }

  .portfolio-item.expanded {
    transform: translateY(-10px) scale(1.03); 
    z-index: 10;
  }
}
