
@import url('https://fonts.googleapis.com/css2?family=Paytone+One&family=Quicksand:wght@400;500;600;700&display=swap');

:root {
  --space-blue: #131C2F;
  --space-yellow: #FFD675;
  --space-coral: #FF8C7C;
  --space-teal: #4CD0C7;
  --space-purple: #9D75F3;
  --muted: #242f48;
}

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

body {
  background-color: var(--space-blue);
  color: white;
  min-height: 100vh;
  overflow-x: hidden;
font-family: 'Quicksand', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Paytone One', sans-serif;
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span{
    font-family: inherit;
}

/* Star background */
.star-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.star {
  position: absolute;
  border-radius: 50%;
  background-color: white;
  opacity: 0.7;
  animation: twinkle 3s infinite ease-in-out;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 0.3; }
}

/* Planet animations */
.planet {
  position: absolute;
  border-radius: 50%;
  animation: float 6s infinite ease-in-out;
}

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

/* Card styling */
.cosmic-card {
  position: relative;
  background-color: rgba(36, 47, 72, 0.5);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--muted);
  overflow: hidden;
  margin-bottom: 2rem;
}

.cosmic-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background-color: rgba(76, 208, 199, 0.1);
  filter: blur(40px);
}

.cosmic-card::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background-color: rgba(255, 140, 124, 0.1);
  filter: blur(40px);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

/* Header/Navbar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  transition: all 0.3s ease;
  padding: 1rem 0;
}

header.scrolled {
  background-color: rgba(19, 28, 47, 0.9);
  backdrop-filter: blur(8px);
  padding: 0.5rem 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  width: 48px;
}

.logo span {
  font-family: 'Paytone One', sans-serif;
  font-size: 1.25rem;
  color: white;
  margin-left: 0.5rem;
}

nav.desktop-nav {
  display: flex;
  align-items: center;
}

nav.desktop-nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

nav.desktop-nav a {
  font-weight: 500;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

nav.desktop-nav a:hover {
  color: var(--space-yellow);
}

.order-button {
  background-color: var(--space-yellow);
  color: var(--space-blue);
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  margin-left: 1.5rem;
  transition: all 0.3s ease;
}

.order-button:hover {
  background-color: rgba(255, 214, 117, 0.8);
  transform: translateY(-3px);
}

.order-button:active {
  transform: translateY(0);
}

.mobile-menu-button {
  background: transparent;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background-color: var(--space-blue);
  border-left: 1px solid var(--space-purple);
  padding: 4rem 1.5rem;
  transition: right 0.3s ease;
  z-index: 100;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
}

.mobile-nav a {
  font-size: 1.25rem;
  font-weight: 500;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: var(--space-yellow);
}

.mobile-nav .order-button {
  width: 100%;
  margin-top: 1rem;
  margin-left: 0;
}

.close-button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Footer */
footer {
  background-color: var(--space-blue);
  border-top: 1px solid #2a3452;
  padding: 3rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-logo img {
  width: 40px;
  height: 40px;
}

.footer-logo span {
  font-family: 'Paytone One', sans-serif;
  font-size: 1.125rem;
  color: white;
  margin-left: 0.5rem;
}

.footer-column h3 {
  color: var(--space-coral);
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  color: #a0a0a0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--space-yellow);
}

.footer-bottom {
  border-top: 1px solid #2a3452;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: #a0a0a0;
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-links a {
  color: #a0a0a0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--space-yellow);
}

/* Button styling */
.button {
  display: inline-block;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
}

.button-primary {
  background-color: var(--space-yellow);
  color: var(--space-blue);
}

.button-primary:hover {
  background-color: rgba(255, 214, 117, 0.8);
  transform: translateY(-3px);
}

.button-secondary {
  background-color: transparent;
  border: 1px solid var(--space-coral);
  color: var(--space-coral);
}

.button-secondary:hover {
  background-color: rgba(255, 140, 124, 0.1);
  transform: translateY(-3px);
}

.button:active {
  transform: translateY(0);
}

/* Hero section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 4rem;
  position: relative;
}

.hero-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4rem;
}

.hero-text {
  text-align: left;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  line-height: 4rem;
  max-width: 31rem;
}

.accent-coral {
  color: var(--space-coral);
  font-family: inherit;
}

.accent-yellow {
  color: var(--space-yellow);
  font-family: inherit;
}

.hero p {
  font-size: 1.25rem;
  color: #fff;
  max-width: 32rem;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-image {
  position: relative;
  animation: float 6s infinite ease-in-out;
}

.hero-image img {
  max-width: 100%;
  width: 320px;
}

/* Features section */
.section {
  padding: 5rem 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.125rem;
  color: #ccc;
  max-width: 36rem;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  text-align: center;
}

.feature-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.feature-icon.coral {
  background-color: rgba(255, 140, 124, 0.2);
  color: var(--space-coral);
}

.feature-icon.yellow {
  background-color: rgba(255, 214, 117, 0.2);
  color: var(--space-yellow);
}

.feature-icon.teal {
  background-color: rgba(76, 208, 199, 0.2);
  color: var(--space-teal);
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

/* Products/Menu section */
.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.product-card {
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: scale(1.05);
}

.product-image {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}

.product-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.7s ease-in-out;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-badges {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-new {
  background-color: var(--space-teal);
  color: white;
}

.badge-limited {
  background-color: var(--space-coral);
  color: white;
}

.product-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.product-description {
  color: #ccc;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--space-yellow);
}

.product-button {
  background-color: var(--space-coral);
  color: white;
  font-size: 0.875rem;
  padding: 0.375rem 0.75rem;
}

.product-button:hover {
  background-color: rgba(255, 140, 124, 0.8);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  height: 100%;
}

.stars {
  display: flex;
  margin-bottom: 1rem;
}

.star-icon {
  color: var(--space-yellow);
  fill: var(--space-yellow);
  width: 1rem;
  height: 1rem;
}

.testimonial-text {
  font-style: italic;
  color: #ccc;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--space-coral);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-right: 0.75rem;
}

.author-avatar.teal {
  background-color: var(--space-teal);
}

.author-avatar.yellow {
  background-color: var(--space-yellow);
  color: var(--space-blue);
}

.author-name {
  font-weight: 700;
}

.author-location {
  font-size: 0.875rem;
  color: #999;
}

/* CTA section */
.cta {
  margin: 3rem 0;
}

.cta-card {
  background-color: rgba(157, 117, 243, 0.2);
  text-align: center;
  padding: 3rem;
}

.cta-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta-text {
  font-size: 1.25rem;
  color: #ccc;
  max-width: 36rem;
  margin: 0 auto;
  margin-bottom: 2rem;
}

/* Contact page */
.contact-section {
  padding-top: 8rem;
  padding-bottom: 5rem;
}

.contact-title {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.contact-info {
  height: 100%;
}

.info-section {
  margin-bottom: 2rem;
}

.info-section h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.info-section p {
  color: #ccc;
}

.form-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--space-teal);
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.25rem;
  color: white;
  font-weight: 500;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid #2a3452;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  margin-bottom: 1rem;
}

.form-textarea {
  width: 100%;
  min-height: 150px;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid #2a3452;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  margin-bottom: 1.5rem;
  resize: vertical;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-button {
  width: 100%;
  background-color: var(--space-yellow);
  color: var(--space-blue);
  font-weight: 700;
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-button:hover {
  background-color: rgba(255, 214, 117, 0.8);
  transform: translateY(-3px);
}

.form-button:active {
  transform: translateY(0);
}

/* FAQ section */
.faq-section {
  padding: 5rem 0;
}

.faq-title {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-item {
  margin-bottom: 2rem;
}

.faq-question {
  font-size: 1.25rem;
  color: var(--space-yellow);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: #ccc;
}

.faq-separator {
  height: 1px;
  background-color: #2a3452;
  margin: 2rem 0;
}

/* Map section */
.map-section {
  padding: 5rem 0;
}

.map-title {
  text-align: center;
  margin-bottom: 3rem;
}

.map-container {
  position: relative;
  aspect-ratio: 16/9;
  background-color: var(--space-blue);
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.marker {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.marker-pulse {
  width: 64px;
  height: 64px;
  background-color: rgba(255, 214, 117, 0.2);
  border-radius: 50%;
  animation: pulse 2s infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.7; }
  50% { transform: scale(1.05); opacity: 0.4; }
  100% { transform: scale(0.95); opacity: 0.7; }
}

.marker-dot {
  width: 32px;
  height: 32px;
  background-color: var(--space-yellow);
  border-radius: 50%;
}

.marker-label {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 1rem;
  white-space: nowrap;
  color: var(--space-yellow);
  font-family: 'Paytone One', sans-serif;
}

/* About page */
.about-section {
  padding-top: 8rem;
  padding-bottom: 5rem;
}

.about-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.about-image {
    height: 200px;
    width:100%;
    background: url(/common/images/FBC.JPG) no-repeat top center fixed;
    background-size: cover;
}

.about-content h2 {
  font-size: 1.875rem;
  color: var(--space-yellow);
  margin-bottom: 1rem;
}

.mission-section {
  padding: 5rem 0;
}

.mission-quote {
  font-size: 1.5rem;
  font-style: italic;
  color: #ccc;
  text-align: center;
  margin-bottom: 1.5rem;
}

.team-section {
  padding: 5rem 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.team-card {
  text-align: center;
}

.team-avatar {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.avatar-teal {
  background-color: rgba(76, 208, 199, 0.2);
  border: 4px solid rgba(76, 208, 199, 0.3);
}

.avatar-teal span {
  color: var(--space-teal);
}

.avatar-coral {
  background-color: rgba(255, 140, 124, 0.2);
  border: 4px solid rgba(255, 140, 124, 0.3);
}

.avatar-coral span {
  color: var(--space-coral);
}

.avatar-yellow {
  background-color: rgba(255, 214, 117, 0.2);
  border: 4px solid rgba(255, 214, 117, 0.3);
}

.avatar-yellow span {
  color: var(--space-yellow);
}

.team-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--space-yellow);
  margin-bottom: 0.75rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.facts-section {
  padding: 5rem 0;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
}

.fact-card {
  text-align: center;
}

.fact-number {
  font-size: 3rem;
  font-family: 'Paytone One', sans-serif;
  margin-bottom: 1rem;
}

.fact-yellow {
  color: var(--space-yellow);
}

.fact-teal {
  color: var(--space-teal);
}

.fact-coral {
  color: var(--space-coral);
}

.fact-purple {
  color: var(--space-purple);
}

/* Menu page */
.menu-section {
  padding-top: 8rem;
  padding-bottom: 5rem;
}

.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  background-color: rgba(19, 28, 47, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid #2a3452;
  border-radius: 0.5rem;
  padding: 0.5rem;
}

.tab {
  padding: 0.75rem 1.5rem;
  border-radius: 0.25rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab:hover {
  background-color: rgba(255, 214, 117, 0.1);
}

.tab.active {
  background-color: var(--space-yellow);
  color: var(--space-blue);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.custom-order {
  padding: 5rem 0;
  background-color: rgba(19, 28, 47, 0.5);
}

/* Toast notification */
.toast-container {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 1000;
}

.toast {
  background-color: white;
  color: #333;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-top: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  min-width: 300px;
  max-width: 400px;
  transform: translateX(110%);
  transition: transform 0.3s ease;
}

.toast.show {
  transform: translateX(0);
}

.toast-title {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

/* Responsive styles */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  h1 {
    font-size: 2.5rem !important;
  }
  
  .section-title h2, 
  .cta-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  nav.desktop-nav,
  .desktop-order {
    display: none;
  }
  
  .mobile-menu-button {
    display: block;
  }
  
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  
  .products-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
  
  .about-card {
    flex-direction: column;
    text-align: center;
  }
  
  h1 {
    font-size: 2rem !important;
  }
}

@media (max-width: 576px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .tabs {
    flex-wrap: wrap;
  }
  
  .hero p,
  .section-title p,
  .cta-text {
    font-size: 1rem;
  }
}

/* 404 page */
.not-found {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.not-found-content {
  text-align: center;
  max-width: 400px;
}

.not-found-title {
  font-size: 6rem;
  color: var(--space-yellow);
  margin-bottom: 1rem;
}

.not-found-subtitle {
  font-size: 1.5rem;
  color: var(--space-coral);
  margin-bottom: 1rem;
}

/* Overlay for mobile menu */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}
