* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;

}

:root {
    --bg: #1a1a1a;
    --gold: #c9a84c;
    --white: #f5f5f5;
    --gray: #aaaaaa;
    --nav-bg: #111111;

}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--nav-bg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 60px;
    z-index: 1000;
    border-bottom: 1px solid #2a2a2a;

}

.logo img {
    height: 200px;         
    width: auto;
    margin-top: -60px;      
    margin-bottom: -60px;   
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    display: inline-block;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;

    transition: transform 0.3s ease, color 0.3s ease;

}

.nav-links a:hover {
    color: var(--gold);
    transform: scale(1.1);
    text-decoration: underline;
    text-underline-offset: 8px;


}
.navbar.scrolled {
  background-color: rgba(17, 17, 17, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero {
    position: relative;
    height: 100vh;
    background-image: url(images/bg\ comp.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 70px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:linear-gradient(to bottom,rgba(0,0,0,0.3), rgba(0,0,0,0.85));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 0 20px;

}

.hero-subtitle {
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;

}

.hero-title {
    font-family: 'Playfair display', serif;
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-desc {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;

}

.btn-primary {
    text-decoration: none;
    background-color: var(--gold);
    color: #111;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 1000;
    font-size: 1rem;
    transition: all 0.3s ease;

}

.btn-primary:hover {
    background-color: #b8922e;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(201,168,76,0.4);

}

.btn-primary:focus-visible{
  outline: 2px solid var(--white);
  outline-offset: 3px;
}
.btn-secondary {
    text-decoration: none;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    
}

.btn-secondary:hover {
    background-color: var(--gold);
    color: #111;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(201,168,76,0.4);
    
}

.btn-secondary:focus-visible{
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--white);
    transition: 0.3s;
}

.hamburger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
}

section {
  padding: 90px 60px;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-subtitle {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--white);
}


.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 10px 28px;
  border-radius: 4px;
  font-size: 0.95rem;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s;
}

.tab-btn:hover,
.tab-btn.active {
  background-color: var(--gold);
  color: #111;
  font-weight: 500;
}


.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}


.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}


.menu-card {
  background-color: #222222;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s;
}

.menu-card:hover {
  transform: translateY(-5px);
}

.menu-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.menu-info {
  padding: 15px;
}

.menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.menu-top h3 {
  font-size: 1rem;
  color: var(--white);
  font-weight: 500;
}

.price {
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
}

.menu-info p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}
.about {
  background-color: #111111;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}


.about-image {
  flex: 1;
  min-width: 0;
}

.about-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #2a2a2a;
}


.about-text {
  flex: 1;
  min-width: 0;
}

.about-text .section-title {
  margin-bottom: 20px;
}

.about-desc {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 15px;
}


.contact {
  background-color: #1a1a1a;
}

.contact-container {
  display: flex;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: flex-start;
}


.contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background-color: #222222;
  padding: 18px 20px;
  border-radius: 8px;
  border-left: 3px solid var(--gold);
}

.info-card i {
  color: var(--gold);
  font-size: 1.2rem;
  margin-top: 3px;
}

.info-card h4 {
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 5px;
  font-weight: 500;
}

.info-card p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}


.social-links {
  display: flex;
  gap: 15px;
  margin-top: 5px;
}

.social-links a {
  color: var(--white);
  background-color: #222222;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid #2a2a2a;
}

.social-links a:hover {
  background-color: var(--gold);
  color: #111;
  border-color: var(--gold);
}


.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 0.85rem;
  color: var(--gray);
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  background-color: #222222;
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  padding: 12px 15px;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.btn-submit {
  background-color: var(--gold);
  color: #111;
  border: none;
  padding: 13px;
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-submit:hover {
  background-color: #b8922e;
}


.footer {
  background-color: #111111;
  border-top: 1px solid #2a2a2a;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 60px 40px;
}


.footer-brand .footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 15px;
}
.footer-brand img{
  width: 200px;
  height: 200px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.8;
}


.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 18px;
  margin-left: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}


.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links ul li a {
  text-decoration: none;
  color: var(--gray);
  font-size: 0.88rem;
  transition: color 0.3s;
  font-weight: bold;
  margin-left: 10px;
}

.footer-links ul li a:hover {
  color: var(--gold);
}


.footer-contact p {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 12px;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact i {
  color: var(--gold);
  margin-top: 3px;
  min-width: 14px;
}


.footer-social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-social-icons a {
  color: var(--white);
  background-color: #1a1a1a;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid #2a2a2a;
  transition: all 0.3s;
}

.footer-social-icons a:hover {
  background-color: var(--gold);
  color: #111;
  border-color: var(--gold);
}


.footer-bottom {
  border-top: 1px solid #2a2a2a;
  text-align: center;
  padding: 20px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--gray);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-content.active {
  display: block;
  animation: fadeInUp 0.4s ease forwards; 
}

@media (max-width: 768px) {
    .navbar {
        padding: 18px 25px;
    }

    .hamburger {
        display: flex;
    }
    
.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0; 
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

    .nav-links {
        display: none;
        flex-direction: column;
        background-color: var(--nav-bg);
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        padding: 20px 25px;
        gap: 20px;
        border-top: 1px solid #2a2a2a;

    }

    .nav-links.open {
        display: flex;

    }

    .logo img {
      height: 80px;
      margin-top: 0;
      margin-bottom: 0;
    }

    

    .hero{
      padding-top: 150px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-desc {
        font-size: 0.9rem;
    }

    

    
    
    .section {
    padding: 70px 20px;
  }

  .section-title {
    font-size: 2rem;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }
   .about-container {
    flex-direction: column;
    gap: 35px;
  }

  .about-image img {
    height: 280px;
  }

  .about-stats {
    gap: 15px;
  }
  .menu-card img{
    height: 300px;
  }
  .contact-container {
    flex-direction: column;
    align-items: center;
    gap: 35px;
  }
   .footer-container {
    grid-template-columns: 1fr 1fr;
    padding: 40px 20px 30px;
    gap: 30px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

}

@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}


