/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
    --primary-color: #ff69b4;
    --secondary-color: #4a90e2;
    --background-color: #fff0f5;
    --text-color: #333;
    --border-radius: 15px;
    --font-family: 'Comic Neue', 'Comic Sans MS', cursive, sans-serif;
}

body {
  font-family: var(--font-family);
  background: linear-gradient(135deg, #D7BDE2, #AED6F1, #A3E4D7, #F9E79F, #F5B7B1);
  background-size: 400% 400%;
  animation: unicornGradient 30s ease infinite;
  color: var(--text-color);
  min-height: 100vh;
}

/* Animation */
@keyframes unicornGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Header Styles */
header {
  width: 100%;
  background-color: transparent;
  text-align: center;
  padding: 1rem 0;
}

.logo-container {
  max-width: 300px;
  margin: 0 auto;
}

.logo {
  max-width: 100%;
  height: auto;
}

/* Main Content Styles */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  width: 100%;
}

/* Section Styles */
section {
  padding: 4rem 2rem;
  margin: 2rem 0;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

section h2 {
  color: #222;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
#hero {
  background-image: url('../img/unicorn-bg.jpg');
  background-size: cover;
  background-position: center;
  color: #333;
  text-align: center;
  padding: 4rem 2rem;
  margin: 0 0 2rem;
  border-radius: 0;
  position: relative;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h2 {
  color: white;
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #D7BDE2, #AED6F1, #A3E4D7, #F9E79F, #F5B7B1);
  background-size: 200% 200%;
  color: #333;
  padding: 1rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.about-text {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text p {
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 1.1rem;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-img:hover {
  transform: scale(1.05);
}

.image-placeholder {
  width: 100%;
  height: 300px;
  background-color: #D7BDE2;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  color: #333;
}

/* Menu Section */
.menu-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.menu-category {
  flex: 1;
  min-width: 300px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.menu-category:hover {
  transform: scale(1.05);
}

.menu-category h3 {
  color: #222;
  margin-bottom: 1rem;
  text-align: center;
  font-size: 1.5rem;
}

.menu-category ul {
  list-style: none;
}

.menu-category ul li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px dashed #D7BDE2;
}

.menu-category ul li:last-child {
  border-bottom: none;
}

.item-name {
  font-weight: bold;
  color: #333;
}

.item-price {
  color: #666;
  font-weight: bold;
}

/* Gallery Section */
.gallery-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 1rem 0;
}

.gallery-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0.5rem;
  justify-content: flex-start;
}

.gallery-scroll::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.gallery-item {
  flex: 0 0 300px;
  height: 300px;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(155, 89, 182, 0.8);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.gallery-nav:hover {
  background-color: rgba(142, 68, 173, 0.9);
  transform: translateY(-50%) scale(1.1);
}

.gallery-nav.prev {
  left: 1rem;
}

.gallery-nav.next {
  right: 1rem;
}

.gallery-nav i {
  font-size: 1.2rem;
}

/* Footer */
footer {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 1rem;
  text-align: center;
  margin-top: 2rem;
  color: #333;
  font-size: 0.9rem;
}

footer p {
  margin-bottom: 0.5rem;
}

footer p:last-child {
  margin-bottom: 0;
}

/* Staff Login Button */
.staff-login {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: rgba(155, 89, 182, 0.7);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.staff-login i {
  font-size: 1.5rem;
}

.staff-login:hover {
  background-color: rgba(142, 68, 173, 0.8);
  transform: scale(1.1);
}

/* Image Modal Styles */
.image-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  cursor: pointer;
}

.image-modal.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  max-width: 90%;
  max-height: 90vh;
  position: relative;
}

.modal-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content h2 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1.2rem;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .about-text {
    min-width: 100%;
    padding: 0 1rem;
  }
  
  .about-text p {
    font-size: 1rem;
  }
  
  .about-image {
    min-width: 100%;
    margin-top: 1rem;
  }
  
  .about-img {
    max-width: 100%;
  }
  
  .gallery-item {
    flex: 0 0 250px;
    height: 250px;
  }
  
  .gallery-scroll {
    justify-content: flex-start;
  }
  
  .gallery-nav {
    width: 35px;
    height: 35px;
  }
  
  .gallery-nav.prev {
    left: 0.5rem;
  }
  
  .gallery-nav.next {
    right: 0.5rem;
  }
  
  .modal-content {
    max-width: 95%;
  }
  
  .modal-content img {
    max-height: 80vh;
  }
}

/* Additional mobile fixes */
@media (max-width: 480px) {
  .gallery-item {
    flex: 0 0 200px;
    height: 200px;
  }
  
  .menu-category {
    min-width: 100%;
  }
  
  .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
  
  .about-text p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .about-image {
    margin-top: 0.5rem;
  }
  
  section {
    padding: 3rem 1.5rem;
  }
  
  section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}

.digit {
  width: 40px;
  height: 40px;
  border: 2px solid #9B59B6;
  border-radius: 8px;
  text-align: center;
  font-size: 1.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: #333333;
}

/* Burger Customization Modal */
.burger-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.burger-modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 90%;
    width: 400px;
}

.burger-modal-content h3 {
    margin-bottom: 1.5rem;
    color: #333;
    font-size: 1.5rem;
}

.burger-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.burger-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 0.5rem;
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 150px;
}

.burger-option:hover {
    border-color: #ff6b6b;
    transform: translateY(-2px);
}

.burger-option img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.burger-option span {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
} 