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

:root {
  --sea-blue: #1a6985;
  --orange: #bfb108;
  --sky-blue: #87ceeb;
  --light-gray: #f5f5f5;
  --white: #ffffff;
  --dark: #333333;
}

html {
  scroll-padding-top: 75px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  overflow-x: hidden;
  animation: BodyFadeIn 2s linear;
}

@keyframes BodyFadeIn 
{
  from {opacity: 0;}
  to {opacity: 1;}
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

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

.btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: var(--orange);
  color: var(--white);
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title h2 {
  font-size: 36px;
  color: var(--sea-blue);
  display: inline-block;
  padding-bottom: 10px;
  position: relative;
}

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

/* Header Styles */
header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-size: 28px;
  font-weight: 800;
  color: var(--sea-blue);
}

.logo span {
  color: var(--orange);
}

nav ul {
  display: flex;
  list-style: none;
}

/* Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 32px;
  color: var(--sea-blue);
  cursor: pointer;
  z-index: 1100;
}

.hamburger-icon {
  display: inline-block;
  font-size: 32px;
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
    position: relative;
  }
  nav {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    width: 200px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 0 0 10px 10px;
    transition: max-height 0.3s ease;
    overflow: hidden;
  }
  .nav-list {
    display: none;
    flex-direction: column;
    padding: 20px 0;
  }
  .nav-list.active {
    display: flex;
  }
  nav ul li {
    margin: 0 0 20px 0;
    text-align: right;
    margin-left: 0;
    padding-right: 30px;
  }
  nav ul li:last-child {
    margin-bottom: 0;
  }
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  font-weight: 600;
  font-size: 16px;
  color: var(--dark);
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: var(--orange);
}

.mobile-menu-btn {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--sea-blue) 0%, var(--sky-blue) 100%);
  color: var(--white);
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/placeholder.svg?height=800&width=1600') center/cover no-repeat;
  opacity: 0.15;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* About Section */
.about {
  background-color: var(--white);
}

.about-container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-content {
  flex: 1;
}

.about-content h2 {
  color: var(--sea-blue);
  margin-bottom: 20px;
  font-size: 36px;
}

.about-content p {
  margin-bottom: 20px;
  color: #777;
}

/* Menu Section */
.menu {
  background-color: var(--light-gray);
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.menu-item {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.menu-item:hover {
  transform: translateY(-10px);
}

.menu-item-image {
  height: 200px;
  overflow: hidden;
}

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

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

.menu-item-content {
  padding: 20px;
}

.menu-item-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--sea-blue);
}

.menu-item-content p {
  color: #777;
  margin-bottom: 15px;
}

.menu-item-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--orange);
}

/* Testimonials Section */
.testimonials {
  background-color: var(--white);
}

.testimonial-container {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 20px 0;
  scrollbar-width: none;
}

.testimonial-container::-webkit-scrollbar {
  display: none;
}

.testimonial {
  background-color: var(--light-gray);
  padding: 30px;
  border-radius: 10px;
  min-width: 300px;
  flex: 0 0 calc(33.333% - 20px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  color: #555;
}

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

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.author-info h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: var(--sea-blue);
}

.author-info p {
  font-size: 14px;
  color: #777;
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, var(--sky-blue) 0%, var(--sea-blue) 100%);
  color: var(--white);
  position: relative;
}

.contact-container {
  display: flex;
  gap: 50px;
  align-items: center;
}

.contact-info {
  flex: 1;
}

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

.contact-details {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background-color: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.contact-item a:hover
{
  transform: scale(175%);
}

.contact-text h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.hours {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 10px;
}

.hours h3 {
  margin-bottom: 20px;
  font-size: 24px;
}

.hours-list {
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hours-list li:last-child {
  border-bottom: none;
}

/* Footer */
footer {
  background-color: var(--sea-blue);
  color: var(--white);
  padding: 50px 0 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.footer-logo {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 20px;
}

.footer-logo span {
  color: var(--orange);
}

.footer-about p {
  opacity: 0.8;
  margin-bottom: 20px;
}

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

.social-link {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--orange);
  transform: translateY(-5px);
}

.footer-links h3, .footer-newsletter h3 {
  font-size: 20px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h3::after, .footer-newsletter h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--orange);
}

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

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

.footer-links ul li a {
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-links ul li a:hover {
  opacity: 1;
  color: var(--orange);
  padding-left: 5px;
}

.footer-newsletter p {
  opacity: 0.8;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 30px 0 0 30px;
  outline: none;
}

.newsletter-form button {
  background-color: var(--orange);
  color: var(--white);
  border: none;
  padding: 0 20px;
  border-radius: 0 30px 30px 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #e86b15;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.7;
  font-size: 14px;
}

footer img {
  height: 30px;
  width: 30px;
  border: 3px solid #000;
  border-radius: 27px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
  }

  .contact-container {
    flex-direction: column;
  }

  .section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  nav ul {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero h1 {
    font-size: 36px;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .testimonial {
    flex: 0 0 calc(100% - 20px);
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 150px 0 80px;
  }

  .hero h1 {
    font-size: 30px;
  }

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