/* Reset och grundläggande stilar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #fafafa;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.nav-open {
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  height: 70px;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}

.nav-brand h1 {
  color: #017963;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: #4a5568;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 15px;
}

.nav-link:hover {
  color: #017963;
  background-color: rgba(1, 121, 99, 0.08);
}

.nav-link.active {
  color: #017963;
  background-color: rgba(1, 121, 99, 0.12);
  font-weight: 600;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #017963;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #017963 0%, #019a7a 100%);
  color: white;
  padding: 6rem 0 1rem;
  display: flex;
  align-items: center;
  min-height: 80vh;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.hero-content {
  max-width: 50rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  margin-left: 10rem;
  position: relative;
  z-index: 2;
  width: 50%;
}

.hero-image-container {
  position: absolute;
  right: 2%;
  top: 56%;
  transform: translateY(-50%);
  z-index: 1;
  width: 32rem;
  height: 32rem;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.hero-actions-mobile {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

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

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 2.5rem;
  margin-top: 4.5rem;
  line-height: 1.1;
  text-align: left;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  color: white;
}

.brand-name {
  color: #ffc042;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background: #017963;
  color: white;
  border: 2px solid #017963;
}

.btn-primary:hover {
  background: #015a4a;
  border-color: #015a4a;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(1, 121, 99, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
}

/* Sections */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Menu Section */
.menu-section {
  max-width: 60rem;
  margin: 0 auto;
}

.menu-categories {
  display: grid;
  gap: 3rem;
}

.category-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.category-card:hover {
  border-color: rgba(1, 121, 99, 0.2);
  box-shadow: 0 4px 16px rgba(1, 121, 99, 0.08);
}

.category-title {
  font-size: 1.5rem;
  color: #017963;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.menu-items {
  display: grid;
  gap: 1rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  gap: 1.5rem;
  transition: all 0.2s ease;
}

.menu-item:hover {
  background-color: rgba(1, 121, 99, 0.02);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item-info h4 {
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 1.1rem;
}

.menu-item-info p {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.5;
}

.menu-item-info .prep-time {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #017963;
  font-weight: 500;
}

.menu-item-info .allergens {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #6c757d;
  font-style: italic;
}

.menu-item-image {
  flex-shrink: 0;
  width: 10rem;
  height: 10rem;
  border-radius: 4px;
  overflow: hidden;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
}

.menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.menu-item-image img:hover {
  transform: scale(1.02);
}

.menu-item.no-image {
  align-items: center;
}

.menu-item.has-image {
  align-items: flex-start;
}

.menu-item-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #017963;
  flex-shrink: 0;
  background: rgba(1, 121, 99, 0.08);
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

/* Loading */
.loading {
  text-align: center;
  padding: 4rem 0;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #017963;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Locations Section */
.locations-section {
  background: #ffffff;
}

.location-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid #e9ecef;
}

.location-card h3 {
  color: #017963;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.location-card p {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.location-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.location-item {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.location-item h4 {
  color: #017963;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.location-item p {
  color: #6c757d;
  font-size: 0.9rem;
  margin: 0;
}

.location-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.status-indicator {
  width: 12px;
  height: 12px;
  background: #ffc042;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

/* About Section */
.about-section {
  background: #f8f9fa;
  max-width: 60rem;
  margin: 0 auto;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.about-text {
  max-width: 50rem;
  margin: 0 auto;
}
.about-text h3 {
  color: #017963;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.about-text p {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.about-features {
  padding: 2rem;
}

.about-features h3 {
  color: #017963;
  margin-bottom: 2rem;
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
}

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

.feature {
  text-align: center;
  padding: 2rem;
  border-radius: 8px;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
}

.feature h4 {
  color: #017963;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.feature p {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.about-text p {
  margin-bottom: 1.5rem;
  color: #6c757d;
}

.about-features {
  display: grid;
  gap: 2rem;
}

.feature {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
}

.feature h4 {
  color: #017963;
  margin-bottom: 0.5rem;
}

/* Contact Section */
.contact-section {
  background: #fafafa;
  max-width: 60rem;
  margin: 0 auto;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-info h3 {
  color: #017963;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-icon {
  font-size: 1.2rem;
}

.contact-form h3 {
  color: #017963;
  margin-bottom: 2rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #eee;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #017963;
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  color: #017963;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.25rem 0;
}

.footer-links a:hover {
  color: #017963;
}

.footer-contact h3 {
  color: #017963;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-contact .contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: #9ca3af;
}

.footer-contact .contact-item:last-child {
  margin-bottom: 0;
}

.footer-contact .contact-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #374151;
  color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 80px 0 20px;
    transition: right 0.3s ease;
    z-index: 1000;
  }

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

  .nav-overlay.open {
    display: block;
  }

  .nav-link {
    padding: 16px 20px;
    margin: 4px 0;
    border-radius: 8px;
    font-size: 16px;
    text-align: left;
    border-bottom: 1px solid #f8f9fa;
  }

  .hero {
    flex-direction: column;
    padding: 2rem 0;
    min-height: auto;
    max-height: 70vh;
  }

  .hero-image-container {
    order: 1;
    position: relative;
    right: auto;
    top: 1.5rem;
    transform: none;
    margin: 0 auto;
    width: 30rem;
    height: 30rem;
  }

  .hero-overlay {
    display: flex;
  }

  .hero-actions {
    display: none;
  }

  .hero-content {
    order: 2;
    width: 100%;
    margin-left: 0;
    padding: 0 2rem;
    align-items: center;
    text-align: center;
    max-width: 100%;
  }

  .hero-title {
    display: none;
  }

  .menu-section {
    max-width: 100%;
  }
  .menu-item-image {
    width: 6rem;
    height: 6rem;
  }

  .menu-item-price {
    font-size: 1rem;
  }

  .menu-item-info p {
    font-size: 0.8rem;
    line-height: 1.5;
  }
  .menu-item-info .allergens {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .about-content {
    gap: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .feature {
    padding: 1rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-contact {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 2rem;
    margin-top: 0;
  }

  .hero-image-container {
    width: 20rem;
    height: 20rem;
    margin-bottom: 1.5rem;
  }

  .hero-actions-mobile .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
    max-width: 28rem;
  }

  .btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}
