@font-face {
  font-family: 'AkiraExpanded';
  src: url('fonts/Akira Expanded Demo.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Starjedi';
  src: url('fonts/Starjedi.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Soloist1';
  src: url('fonts/soloist1.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.starjedi {
  font-family: 'AkiraExpanded', Arial, sans-serif !important;
}

.soloist {
  font-family: 'Soloist1', Arial, sans-serif !important;
}

:root {
  --primary: #00B8FF;       /* bright cyan */
  --secondary: #00E5D4;     /* aqua teal */
  --gradient-start: #00B8FF;
  --gradient-end: #00E5D4;
  --text-dark: #111;
  --text-light: #fff;
  --bg: #ffffff;
  --card-bg: #f9f9f9;
  --shadow: rgba(0, 0, 0, 0.15);
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'CoolveticaRg', Arial, sans-serif;
  line-height: 1.6;
  background: var(--bg), repeating-linear-gradient(135deg, #e0f7fa 0px, #e0f7fa 8px, #fff 8px, #fff 16px);
  color: var(--text-dark);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* ================= HEADER ================= */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--text-light);
  cursor: pointer;
  margin-left: 1rem;
  z-index: 1002;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 1.2rem;
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
  color: var(--text-light);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header .logo img {
  height: 70px;
  width: auto;
  max-width: 110px;
  display: block;
  margin: 0 auto;
  padding: 0;
  object-fit: contain;
  background: transparent;
}

.header nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2rem;
}

.header nav a {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 500;
  transition: color 0.3s ease;
  font-family: 'Montserrat', Arial, sans-serif;
  position: relative;
  overflow: hidden;
}

.header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1.5px;
  background: var(--secondary);
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
}

.header nav a:hover::after {
  transform: scaleX(1);
}

.header nav a:hover {
  color: #000;
}

/* ================= HERO ================= */
.hero {
  position: relative;
  color: var(--text-light);
  text-align: center;
  min-height: 100vh;
  height: 100vh;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-video-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
  z-index: 2;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 2.5rem 2rem;
  border-radius: 0;
  display: inline-block;
  margin-top: 2rem;
}

.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto;
  font-family: 'CoolveticaRg', Arial, sans-serif;
}

/* ================= SECTION TITLES ================= */
.about h2,
.services h2,
.featured-drinks h2,
.testimonials h2,
.cta h2,
section h2 {
  font-family: 'Soloist1';
  font-size: 2.2rem;
  margin-bottom: 2.2rem;
  margin-top: 0.5rem;
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
  background-clip: text;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

/* ================= ABOUT ================= */
.about {
  padding: 5rem 2rem;
  text-align: center;
}

.about p {
  max-width: 750px;
  margin: 1rem auto 0;
  font-size: 1.1rem;
  color: #555;
  font-family: 'CoolveticaRg', Arial, sans-serif;
}

/* ================= SERVICES ================= */
.services {
  padding: 5rem 2rem;
  background: #f9f9f9;
}

.services h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
  color: var(--primary);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card,
.menu-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  transition: transform 0.3s cubic-bezier(.4,0,.2,1), box-shadow 0.3s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
}

.service-card:hover,
.menu-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 16px 32px rgba(0,0,0,0.18);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #eee;
}

.service-card .content {
  padding: 1.5rem;
  text-align: left;
  flex: 1;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
  font-weight: bold;
}

.service-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* ================= NEWS SECTION ================= */
.news-section {
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 5rem 2rem;
  background: #f9f9f9;
  box-sizing: border-box;
  overflow: hidden;
}

.news-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: var(--primary);
}

.news-multi-grid {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: stretch;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 1rem;
}

.news-card {
  flex: 0 0 300px;
  max-height: calc(100vh - 150px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 1rem;
  overflow: hidden;
}

.news-card .news-img-wrap {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
  overflow: hidden;
}

.news-card .news-img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  background: #fafafa;
  object-fit: contain;
}

.news-card .news-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.news-card h3 {
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 0.2rem;
  text-align: center;
}

.news-card p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 0.2rem;
  font-family: 'CoolveticaRg', Arial, sans-serif;
  text-align: center;
}

.news-card .btn {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 0.5rem 1.1rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  transition: background 0.2s;
  margin-top: 0.5rem;
}

.news-card .btn:hover {
  background: var(--secondary);
}

/* ================= FEATURED DRINKS ================= */
.featured-drinks {
  padding: 5rem 2rem;
  background: var(--card-bg);
  text-align: center;
}

.swiper {
  width: 90%;
  margin: 3rem auto;
  padding-bottom: 3rem;
}

.swiper-slide.drink {
  position: relative;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px var(--shadow);
  transition: transform 0.45s cubic-bezier(.23,1,.32,1), box-shadow 0.45s cubic-bezier(.23,1,.32,1);
  opacity: 0;
  animation: zoomIn 0.8s cubic-bezier(.23,1,.32,1) forwards;
}

.swiper-slide.drink:hover {
  transform: scale(1.18);
  z-index: 2;
  box-shadow: 0 20px 48px var(--shadow);
}

.swiper-slide.drink img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.swiper-slide.drink h3 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 1rem;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--text-light);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.2)
  );
  text-align: left;
}

/* Swiper navigation */
.swiper-button-next,
.swiper-button-prev {
  color: var(--primary);
  transition: color 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: var(--secondary);
}

/* Swiper pagination */
.swiper-pagination-bullet {
  background: var(--primary);
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  background: var(--secondary);
  opacity: 1;
}

/* ================= TESTIMONIALS ================= */
.testimonials {
  padding: 5rem 2rem;
  background: #fff;
  text-align: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.testimonial {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px var(--shadow);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  margin-bottom: 2rem;
  font-family: 'CoolveticaRg', Arial, sans-serif;
  opacity: 0;
  animation: slideUp 1.1s cubic-bezier(.23,1,.32,1) forwards;
}

.testimonial-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 2px solid var(--primary);
  cursor: pointer;
  opacity: 0;
  animation: fadeIn 1.2s ease forwards;
  animation-delay: 0.2s;
}

.testimonial-text {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px var(--shadow);
  font-style: italic;
}

/* Modal for full image popup */
.modal-img-bg {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
}

.modal-img-bg.active {
  display: flex;
}

.modal-img-bg img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 16px;
  box-shadow: 0 8px 32px var(--shadow);
}

.modal-img-bg .close-modal {
  position: absolute;
  top: 32px;
  right: 48px;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  background: none;
  border: none;
  z-index: 10001;
}

.testimonial span {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
  color: var(--primary);
}

/* ================= CTA ================= */
.cta {
  padding: 3rem 1.5rem;
  text-align: center;
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
  color: var(--text-light);
  margin-bottom: 0;
  padding-bottom: 1rem;
}

.cta h2 {
  background: none;
  -webkit-text-fill-color: var(--text-light);
  color: var(--text-light);
  margin-bottom: 0.8rem;
}

.cta p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  font-family: 'CoolveticaRg', Arial, sans-serif;
}

.cta .btn {
  display: inline-block;
  padding: 0.95rem 2.4rem;
  border-radius: 40px;
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.cta .btn:hover {
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.14);
  transform: translateY(-4px) scale(1.06);
}

/* ================= MENU PAGE ================= */
.menu {
  padding: 5rem 2rem;
  background: #fff;
}

.menu h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 0.1rem;
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.menu-category {
  font-size: 1.8rem;
  margin: 2rem 0 1rem;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
  padding-bottom: 5px;
}

.menu-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
  justify-content: center;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.menu-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px var(--shadow);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-width: 180px;
  max-width: 220px;
  min-height: 240px;
  margin: 0 auto;
  padding: 1rem 0.7rem 1.2rem 0.7rem;
}

.menu-card img {
  width: 100%;
  aspect-ratio: 1/1;
  max-width: 140px;
  object-fit: contain;
  display: block;
  margin: 0 auto 1rem auto;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  background: #fafafa;
  padding: 4px;
}

.menu-card .content {
  padding: 1.2rem;
}

.menu-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.menu-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0.8rem;
  font-family: 'CoolveticaRg', Arial, sans-serif;
}

.menu-card .price {
  font-size: 0.9rem;
  color: #333;
  display: flex;
  justify-content: space-between;
}

/* ================= FOOTER ================= */
.footer {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
  color: var(--text-light);
  font-size: 0.95rem;
  margin-top: 0;
  padding-top: 1rem;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.3rem;
}

.footer-phone {
  margin-top: 0.7rem;
  font-size: 1.08rem;
  color: #fff;
  font-weight: bold;
}

.social-icon {
  display: inline-block;
  margin: 0 0.5rem;
  vertical-align: middle;
  transition: transform 0.2s;
}

.social-icon:hover {
  transform: scale(1.15);
}

/* === ANIMATION KEYFRAMES === */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.fade-in {
  animation: fadeIn 1s ease forwards;
}

.slide-up {
  animation: slideUp 1s cubic-bezier(.23,1,.32,1) forwards;
}

.zoom-in {
  animation: zoomIn 0.8s cubic-bezier(.23,1,.32,1) forwards;
}

/* ================= MEDIA QUERIES ================= */
@media (min-width: 701px) {
  .menu-card {
    flex: 0 1 calc(25% - 2rem);
    max-width: calc(25% - 2rem);
    min-width: 180px;
    box-sizing: border-box;
  }
}

@media (max-width: 1100px) and (min-width: 901px) {
  .menu-card {
    flex: 0 1 calc(33.333% - 2rem);
    max-width: calc(33.333% - 2rem);
  }
}

@media (max-width: 900px) and (min-width: 701px) {
  .menu-card {
    flex: 0 1 calc(50% - 2rem);
    max-width: calc(50% - 2rem);
  }
}

@media (max-width: 900px) {
  .container {
    padding: 0 1rem;
    max-width: 100vw;
  }
  .header {
    flex-direction: row;
    padding: 1rem 1rem;
  }
  .header nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 70vw;
    height: 100vh;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    box-shadow: -2px 0 16px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(.4,0,.2,1);
    z-index: 1001;
  }
  .header nav.open {
    transform: translateX(0);
  }
  .header nav ul {
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 4rem;
    width: 100%;
    align-items: flex-start;
    padding-left: 2rem;
  }
  .header nav a {
    font-size: 1.25rem;
    color: var(--text-light);
    padding: 0.5rem 0;
  }
  .nav-toggle {
    display: block;
  }
  .news-multi-grid {
    flex-direction: column;
    gap: 1.2rem;
    padding: 0.5rem;
    align-items: center;
  }
  .news-card {
    max-width: 98vw;
    min-width: 0;
    padding: 1.2rem 0.5rem;
  }
  .news-card .news-img {
    max-width: 100vw;
    width: 100%;
    margin-bottom: 1rem;
  }
}

@media (max-width: 700px) {
  .hero {
    padding: 4rem 0.5rem;
  }
  .hero-content {
    padding: 1.2rem 0.5rem;
    font-size: 1rem;
  }
  .hero h1 {
    font-size: 2.1rem;
  }
  .about {
    padding: 2.5rem 0.5rem;
  }
  .about h2 {
    font-size: 1.5rem;
  }
  .service-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .service-card {
    padding: 1.2rem 0.5rem;
    min-width: 0;
    max-width: 100vw;
  }
  .featured-drinks {
    padding: 1.5rem 0.2rem;
  }
  .swiper {
    width: 100vw;
    margin: 0.5rem auto;
    padding-bottom: 1.2rem;
  }
  .swiper-slide.drink {
    min-width: 140px;
    max-width: 85vw;
    padding: 0.2rem;
    box-shadow: 0 2px 8px var(--shadow);
  }
  .swiper-slide.drink img {
    height: 160px;
    border-radius: 8px 8px 0 0;
    object-fit: cover;
  }
  .swiper-slide.drink h3 {
    font-size: 1rem;
    padding: 0.6rem 0.5rem;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .testimonial {
    padding: 1.2rem 0.5rem;
    min-width: 0;
    max-width: 100vw;
  }
  .menu-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }
  .menu-card {
    flex: unset !important;
    max-width: unset !important;
    min-width: 0 !important;
    box-sizing: border-box;
    justify-self: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 1.2rem 0.5rem;
  }
  .cta {
    padding: 1.2rem 0.3rem !important;
    text-align: center;
  }
  .cta h2 {
    font-size: 1.3rem !important;
    margin-bottom: 0.7rem;
    word-break: break-word;
  }
  .cta p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .cta .btn {
    width: 100%;
    max-width: 320px;
    font-size: 1rem;
    margin: 0 auto 1.2rem auto;
    display: block;
  }
  .cta .location {
    margin-top: 2rem !important;
    padding: 0.5rem;
    font-size: 0.98rem;
  }

  .footer {
    padding: 1rem 0.5rem;
    font-size: 0.9rem;
    padding-top: 0.5rem;
    padding-bottom: 0.8rem;
  }
  .footer-social {
    gap: 0.6rem;
  }
  .footer-phone {
    margin-top: 0;
    font-size: 1rem;
  }
}