@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&family=Limelight&display=swap');

:root {
  /* Logo Colors */
  --primary-color: #111111; 
  --secondary-color: #ffffff; /* White background */
  --accent-color: #FEED00; /* Blueprint Yellow */
  --accent-hover: #e6c000;
  --accent-red: #E63946;
  
  --text-dark: #212529;
  --text-light: #495057;
  --white: #ffffff;
  --border-color: #eeeeee;
  
  --font-heading: 'Limelight', cursive;
  --font-body: 'Nunito', sans-serif;
}

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

html, body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--secondary-color);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-color);
}

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

/* Typography & Buttons */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.8rem;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--accent-red);
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px; /* Pill shaped to match logo */
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}

.btn-large {
  padding: 16px 40px;
  font-size: 1.1rem;
}

.btn-primary {
  background-color: var(--accent-color);
  color: #111;
  box-shadow: 0 4px 10px rgba(255, 213, 0, 0.4);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 213, 0, 0.5);
}

.btn-secondary {
  background-color: var(--accent-red);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: #cc333e;
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-outline-light {
  border-color: var(--white);
  color: var(--white);
  background: transparent;
}

.btn-outline-light:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

.btn-text {
  color: var(--accent-red);
  padding: 0;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-weight: 700;
}

.btn-text:hover {
  color: #cc333e;
  text-decoration: underline;
}

.center-btn {
  text-align: center;
  margin-top: 40px;
}

/* 1. Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.3s ease;
  background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0));
}

header.scrolled {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 10px 0;
}

header.scrolled .nav-links a { color: var(--primary-color); }
header.scrolled .btn-outline { border-color: var(--primary-color); color: var(--primary-color); }

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

.logo img {
  height: 60px;
}

.nav-links ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: color 0.3s ease;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  font-family: var(--font-heading);
}

header.scrolled .nav-links a {
  text-shadow: none;
}

.nav-links a:hover {
  color: var(--accent-color);
}

.header-ctas {
  display: flex;
  align-items: center;
  gap: 15px;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 10px;
}

.lang-switcher a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  opacity: 0.7;
  transition: opacity 0.3s, color 0.3s;
}

.lang-switcher a:hover {
  opacity: 1;
}

.lang-switcher a.active {
  opacity: 1;
  border-bottom: 2px solid var(--accent-color);
}

header.scrolled .lang-switcher a {
  color: var(--primary-color);
}

header.scrolled .lang-switcher a.active {
  border-bottom: 2px solid var(--accent-red);
}

.header-ctas .btn-outline {
  border-color: var(--white);
  color: var(--white);
}

header.scrolled .header-ctas .btn-outline {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
}
header.scrolled .mobile-menu-btn { color: var(--primary-color); }

/* 2. Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
}

.hero-slider .slide {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: hero-fade 15s infinite;
}

.hero-slider .slide:nth-child(1) {
  opacity: 1;
  animation-delay: 0s;
}
.hero-slider .slide:nth-child(2) {
  animation-delay: 5s;
}
.hero-slider .slide:nth-child(3) {
  animation-delay: 10s;
}

@keyframes hero-fade {
  0% { opacity: 1; }
  25% { opacity: 1; }
  33% { opacity: 0; }
  92% { opacity: 0; }
  100% { opacity: 1; }
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* 0.5 Transparency */
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1100px;
  padding: 0 20px;
  margin-top: 50px;
}

.hero h1 {
  color: var(--white);
  font-size: 4.5rem;
  line-height: 1.3;
  margin-bottom: 30px;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

.hero p {
  color: var(--white);
  font-size: 1.3rem;
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 45px;
  text-shadow: 1px 1px 8px rgba(0,0,0,0.9);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.hero-optional {
  display: flex;
  justify-content: center;
  gap: 30px;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-optional span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-optional i {
  color: var(--accent-color);
}

/* 3. Quick Action Bar */
.quick-actions {
  padding: 100px 0;
  position: relative;
  z-index: 10;
  background-color: var(--primary-color);
  color: var(--white);
}

.quick-action-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.action-card {
  background: transparent;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.action-card:hover {
  transform: translateY(-5px);
}

.action-card .icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.action-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--white);
}

.action-card p {
  color: #aaaaaa;
  margin-bottom: 20px;
  font-family: var(--font-body);
}

/* 4. About */
.about {
  padding: 100px 0;
  background-color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.about-content h2 {
  font-size: 3rem;
  margin-bottom: 25px;
}

.about-content p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.about-content .btn {
  margin-top: 20px;
}

/* 5. Menu Highlights */
.menu-highlights {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.category-title {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--accent-red);
  border-bottom: 2px dashed var(--border-color);
  padding-bottom: 10px;
}

.menu-item {
  margin-bottom: 25px;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 5px;
}

.menu-item-header h4 {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
  padding-right: 15px;
}

.price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--primary-color);
  white-space: nowrap;
}

.menu-item-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.4;
  margin: 0;
}

/* 6. Why Choose Us */
.why-choose-us {
  padding: 100px 0;
  background-color: var(--primary-color);
  color: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.feature-item {
  padding: 20px;
}

.feature-item i {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.feature-item h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--white);
}

.feature-item p {
  color: #aaaaaa;
}

/* 7. Gallery Masonry */
.gallery {
  padding: 100px 0;
  background-color: var(--white);
}

.gallery-grid-masonry {
  column-count: 3;
  column-gap: 20px;
}

.gallery-item-masonry {
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 20px;
  break-inside: avoid;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-item-masonry img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

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

/* 8. Reservation CTA */
.reservation-cta {
  position: relative;
  padding: 120px 0;
  background-image: url('../images/hero_bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  color: var(--white);
}

.cta-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.85); 
}

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

.cta-content h2 {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  font-weight: 300;
}

/* 11. Contact */
.contact {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-info {
  padding: 50px;
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.info-block {
  margin-bottom: 30px;
}

.info-block h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-color);
}

.info-block h3 i {
  color: var(--accent-red);
}

.info-block p {
  color: var(--text-light);
  line-height: 1.8;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}

/* 12. Footer */
footer {
  background-color: #111111;
  color: var(--white);
  padding: 80px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo p {
  color: #aaaaaa;
  margin-top: 15px;
  font-size: 1rem;
}

.footer-links h3, .footer-social h3 {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #aaaaaa;
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 600;
}

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

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s;
}

.social-icons a:hover {
  background: var(--accent-red);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #777777;
}

/* Responsive */
@media (max-width: 992px) {
  .quick-action-grid, .menu-grid {
    grid-template-columns: 1fr;
  }
  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .gallery-grid-masonry {
    column-count: 2;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .nav-links {
    position: fixed;
    top: 0; left: -100%;
    width: 80%; height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding-top: 100px;
    transition: 0.3s;
  }
  .nav-links ul {
    flex-direction: column;
    text-align: center;
  }
  .nav-links a {
    color: var(--primary-color);
  }
  .mobile-menu-btn {
    display: block;
  }
}

@media (max-width: 480px) {
  .gallery-grid-masonry {
    column-count: 1;
  }
}

/* 9. Reviews Section */
.reviews-section {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.reviews-swiper {
  padding-bottom: 70px !important;
}
.swiper-slide {
  height: auto !important;
}
.swiper-pagination {
  bottom: 10px !important;
}
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
}
.swiper-pagination-bullet-active {
  background-color: var(--accent-red) !important;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.review-card {
  background: var(--white);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  position: relative;
  transition: transform 0.3s;
  height: 100%;
  box-sizing: border-box;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* 10. Blueprint Tabs & Navigation */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 25px;
  background: var(--white);
  border: 2px solid var(--primary-color);
  border-radius: 30px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--primary-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn:hover, .tab-btn.active {
  background: var(--primary-color);
  color: var(--accent-color);
}

.tab-pane {
  display: none;
  animation: fadeIn 0.5s ease;
}

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

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--primary-color);
  z-index: 2000;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.mobile-sticky-bar a {
  flex: 1;
  text-align: center;
  padding: 15px 0;
  color: var(--white);
  font-family: var(--font-heading);
  text-decoration: none;
  font-size: 1.1rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.mobile-sticky-bar a:last-child {
  border-right: none;
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .mobile-sticky-bar {
    display: flex;
  }
  body {
    padding-bottom: 60px;
  }
}

.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
}

.reviewer-info h4 {
  margin: 0;
  font-family: var(--font-body);
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 700;
}

.reviewer-info .review-date {
  font-size: 0.85rem;
  color: var(--text-light);
}

.review-stars {
  color: #FFB400; /* Google yellow */
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.review-text {
  color: var(--text-light);
  font-style: italic;
  line-height: 1.6;
}

.google-icon {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 1.5rem;
}

@media (max-width: 992px) {
  .review-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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