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

:root {
  --primary: #ff6b35;
  --secondary: #004e89;
  --dark: #1a1a1a;
  --light: #f7f7f7;
  --accent: #ffd23f;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark);
  line-height: 1.6;
}

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

.navbar {
  background: var(--dark);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

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

.logo {
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: bold;
}

.logo-container {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  cursor: pointer;
}

.logo-container .logo,
.logo-container .location {
  color: var(--accent);
  transition: none;
}

.logo-container:visited .logo,
.logo-container:visited .location,
.logo-container:hover .logo,
.logo-container:hover .location,
.logo-container:active .logo,
.logo-container:active .location,
.logo-container:focus .logo,
.logo-container:focus .location {
  color: var(--accent);
}

.logo-container,
.logo-container:link,
.logo-container:visited,
.logo-container:hover,
.logo-container:active {
  text-decoration: none;
  color: inherit;
}



.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--light);
  text-decoration: none;
  transition: color 0.3s;
}

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

.hero {
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../img/9.jpeg') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-top: 60px;
}

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

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.hero-logo {
  margin-bottom: 2rem;
  animation: fadeInScale 1s ease-in-out;
}

.hero-logo img {
  max-width: 400px;
  width: 90%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .hero-logo img {
    max-width: 280px;
  }
}


.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255,107,53,0.4);
}

.about {
  padding: 5rem 0;
  background: var(--light);
}

.about h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--secondary);
}

.about-content p {
  text-align: center;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

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

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

.feature h3 {
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.gallery {
  padding: 5rem 0;
}

.gallery h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--secondary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  height: 300px;
}

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

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

.contact {
  padding: 5rem 0;
  background: var(--dark);
  color: white;
}

.contact h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--accent);
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  text-align: center;
}

.info-block h3 {
  color: var(--accent);
  margin-bottom: 1rem;
}

.info-block p {
  margin-bottom: 0.5rem;
}

footer {
  background: #0a0a0a;
  color: var(--light);
  text-align: center;
  padding: 2rem 0;
}

@media (max-width: 768px) {
  .nav-links {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .hero-content h2 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

.logo-container {
  display: flex;
  flex-direction: column;
}

.location {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: normal;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  cursor: pointer;
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
  object-fit: contain;
}

.close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #f1f1f1;
  font-size: 50px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: var(--accent);
}

#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  font-size: 1.2rem;
}

.modal-content,
#caption {
  animation: zoom 0.3s;
}

@keyframes zoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.happy-hour {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: white;
}

.happy-hour h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--accent);
}

.happy-hour-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.happy-hour-time {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.happy-hour-content p:last-child {
  font-size: 1.2rem;
  line-height: 1.8;
}

.hero-subtitle {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero-description {
  max-width: 900px;
  margin: 0 auto 2rem;
  padding: 0 20px;
}

.hero-description p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  text-align: center;
}

@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-description p {
    font-size: 0.9rem;
  }
}

.hero-subtitle {
  font-size: 1.8rem;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-description {
  max-width: 1000px;
  margin: 0 auto 2.5rem;
  padding: 0 20px;
}

.hero-text-box {
  background: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  border-radius: 10px;
  backdrop-filter: blur(5px);
  border: 2px solid rgba(255, 210, 63, 0.3);
}

.hero-description p {
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 1.2rem;
  text-align: center;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
  font-weight: 500;
}

.hero-description p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-text-box {
    padding: 1.5rem;
  }

  .hero-description p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}

.about-text-intro {
  text-align: center;
  font-size: 1.1rem;
  max-width: 900px;
  margin: 0 auto 3rem;
  line-height: 1.8;
  color: var(--dark);
}

.about-info-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.info-box {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border-left: 4px solid var(--primary);
}

.info-box h3 {
  color: var(--secondary);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.info-box p {
  margin-bottom: 1rem;
  line-height: 1.7;
  text-align: left;
}

.info-box p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .about-text-intro {
    font-size: 1rem;
  }

  .about-info-boxes {
    grid-template-columns: 1fr;
  }
}

