/* ===== CSS Variables & Reset ===== */
:root {
  --gold: #E8A826;
  --gold-light: #F5C842;
  --gold-dark: #C48A1A;
  --black: #0A0A0A;
  --black-light: #1A1A1A;
  --black-mid: #2A2A2A;
  --white: #FFFFFF;
  --white-off: #F5F5F0;
  --gray: #888888;
  --gray-light: #CCCCCC;
  --font-heading: 'Georgia', 'Times New Roman', serif;
  --font-body: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --transition: 0.3s ease;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

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

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

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(232, 168, 38, 0.15);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-light);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--black);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.1) 40%,
    rgba(0, 0, 0, 0.1) 60%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-logo {
  width: 700px;
  max-width: 90vw;
  height: auto;
  margin-bottom: 32px;
  filter: drop-shadow(0 4px 30px rgba(232, 168, 38, 0.3));
  animation: fadeInUp 1s ease;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gray-light);
  margin-bottom: 40px;
  letter-spacing: 2px;
  animation: fadeInUp 1s ease 0.2s both;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 4px;
  transition: var(--transition);
  cursor: pointer;
  margin: 8px;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border: 2px solid var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 168, 38, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  text-align: center;
}

/* ===== Sections ===== */
.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--black-light);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 60px;
  color: var(--white);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 16px auto 0;
}

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

.about-text p {
  color: var(--gray-light);
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-text strong {
  color: var(--gold);
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-photo {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid var(--black-mid);
  transition: var(--transition);
}

.about-photo:hover {
  border-color: var(--gold);
}

/* ===== Menu ===== */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.menu-tab {
  background: var(--black-mid);
  color: var(--gray-light);
  border: 1px solid var(--black-mid);
  padding: 10px 24px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.menu-tab:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.menu-tab.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.menu-category {
  display: none;
}

.menu-category.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

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

.menu-item {
  background: var(--black);
  border: 1px solid var(--black-mid);
  border-radius: 8px;
  padding: 24px;
  transition: var(--transition);
}

.menu-item:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 168, 38, 0.08);
}

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

.menu-item-header h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--white);
}

.menu-price {
  font-weight: 700;
  color: var(--gold);
  font-size: 1.1rem;
  white-space: nowrap;
}

.menu-item p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.menu-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.menu-tag.veg {
  background: rgba(34, 139, 34, 0.15);
  color: #4CAF50;
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.menu-tag.non-veg {
  background: rgba(200, 50, 50, 0.15);
  color: #E57373;
  border: 1px solid rgba(229, 115, 115, 0.3);
}

/* ===== Specials ===== */
.specials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.special-card {
  background: var(--black-light);
  border: 1px solid var(--black-mid);
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.special-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.special-card.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(232, 168, 38, 0.08), var(--black-light));
}

.special-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.special-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.special-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--white);
}

.special-card p {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.special-price {
  font-weight: 700;
  color: var(--gold);
  font-size: 1.2rem;
}

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--black-mid);
  transition: var(--transition);
  cursor: pointer;
}

.gallery-item:hover {
  border-color: var(--gold);
  transform: scale(1.02);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

/* ===== Testimonials ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: var(--black-light);
  border: 1px solid var(--black-mid);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--gold);
}

.testimonial-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  margin-bottom: 16px;
}

.testimonial-avatar-placeholder {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black-mid);
  color: var(--gold);
  font-size: 1.6rem;
  font-weight: 700;
}

.stars {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 16px;
  letter-spacing: 4px;
}

.testimonial-card p {
  color: var(--gray-light);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 16px;
}

.testimonial-author {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-item {
  margin-bottom: 28px;
}

.contact-item h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--gold);
}

.contact-item p {
  color: var(--gray-light);
  line-height: 1.8;
}

.contact-form-wrapper h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: var(--white);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--black-mid);
  border: 1px solid #333;
  color: var(--white);
  padding: 14px 16px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(232, 168, 38, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--gray);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ===== Footer ===== */
.footer {
  background: var(--black);
  border-top: 1px solid var(--black-mid);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-logo {
  height: 44px;
  width: auto;
  margin-bottom: 16px;
  object-fit: contain;
}

.footer-brand p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-links h4,
.footer-social h4 {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-links a {
  color: var(--gray);
  transition: var(--transition);
  font-size: 0.9rem;
}

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

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--black-mid);
  border: 1px solid #333;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--gray-light);
  text-decoration: none;
  transition: var(--transition);
}

.social-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  flex-shrink: 0;
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(232, 168, 38, 0.1);
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--black-mid);
  color: var(--gray);
  font-size: 0.85rem;
}

/* ===== Animations ===== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* ===== Accessibility: Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ===== Responsive: Tablet Landscape (max-width: 1024px) ===== */
@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }

  .specials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .special-card {
    padding: 32px 20px;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-links a {
    font-size: 0.8rem;
    letter-spacing: 1px;
  }
}

/* ===== Responsive: Tablet Portrait (max-width: 968px) ===== */
@media (max-width: 968px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-photo {
    height: 300px;
  }

  .specials-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
    margin: 0 auto;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }


  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .hero-logo {
    width: 600px;
  }

  .section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 2.2rem;
    margin-bottom: 48px;
  }
}

/* ===== Responsive: Mobile (max-width: 768px) ===== */
@media (max-width: 768px) {
  /* --- Navbar --- */
  .nav-container {
    height: 60px;
  }

  .nav-logo img {
    height: 38px;
  }

  .nav-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
  }

  .nav-toggle span {
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-links {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 0;
    display: none;
    border-bottom: 1px solid var(--black-mid);
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links.active {
    display: flex;
    animation: fadeIn 0.3s ease;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 14px 24px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a:active {
    color: var(--gold);
    background: rgba(232, 168, 38, 0.05);
  }

  /* --- Hero --- */
  .hero {
    min-height: 100svh;
    padding: 80px 16px 60px;
  }

  .hero-logo {
    width: 500px;
  }

  .hero-tagline {
    font-size: 1.1rem;
    margin-bottom: 32px;
    letter-spacing: 1px;
    padding: 0 8px;
  }

  .hero-content .btn {
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 8px auto;
  }

  /* --- Sections --- */
  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }

  /* --- About --- */
  .about-text p {
    font-size: 1rem;
  }

  .about-stats {
    justify-content: center;
    gap: 28px;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .about-photo {
    height: 250px;
  }

  /* --- Menu --- */
  .menu-tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
    padding-right: 24px;
    gap: 8px;
    scrollbar-width: none;
  }

  .menu-tabs::-webkit-scrollbar {
    display: none;
  }

  .menu-tab {
    flex-shrink: 0;
    scroll-snap-align: start;
    padding: 10px 20px;
    font-size: 0.85rem;
    min-height: 44px;
  }

  .menu-item {
    padding: 20px;
  }

  .menu-item-header h3 {
    font-size: 1.05rem;
    flex: 1;
    margin-right: 12px;
  }

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

  /* --- Specials --- */
  .specials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .special-card {
    padding: 32px 24px;
  }

  /* --- Gallery --- */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gallery-item img {
    height: 200px;
  }

  /* --- Testimonials --- */
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }


  .testimonial-card {
    padding: 24px;
  }

  /* --- Contact --- */
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 16px;
    font-size: 16px; /* prevents iOS zoom on focus */
    min-height: 48px;
  }

  .contact-form select {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  /* --- Footer --- */
  .footer {
    padding: 40px 0 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-brand p {
    max-width: none;
  }

  .social-links {
    align-items: center;
  }

  .social-link {
    justify-content: center;
    font-size: 0.95rem;
  }

  /* --- Buttons general --- */
  .btn {
    padding: 14px 28px;
    font-size: 0.85rem;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* ===== Responsive: Small Phone (max-width: 480px) ===== */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 70px 12px 50px;
  }

  .hero-logo {
    width: 400px;
  }

  .hero-tagline {
    font-size: 0.95rem;
    letter-spacing: 0.5px;
  }

  .section {
    padding: 48px 0;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 32px;
  }

  .section-title::after {
    width: 40px;
    margin-top: 12px;
  }

  .about-stats {
    flex-direction: column;
    gap: 20px;
  }

  .about-photo {
    height: 200px;
  }

  .menu-item {
    padding: 16px;
  }

  .menu-item-header {
    flex-wrap: wrap;
    gap: 4px;
  }

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

  .menu-item p {
    font-size: 0.85rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .special-card {
    padding: 28px 20px;
  }

  .special-icon {
    font-size: 2.5rem;
  }

  .special-card h3 {
    font-size: 1.15rem;
  }

  .special-price {
    font-size: 1.05rem;
  }

  .gallery-item img {
    height: 180px;
  }

  .testimonial-card p {
    font-size: 0.9rem;
  }

  .contact-item h3 {
    font-size: 1rem;
  }

  .contact-form-wrapper h3 {
    font-size: 1.25rem;
  }

  .footer-logo {
    height: 40px;
  }

  .footer-bottom {
    font-size: 0.8rem;
  }
}

/* ===== Touch Device Enhancements ===== */
@media (hover: none) and (pointer: coarse) {
  /* Remove hover transforms that feel janky on touch */
  .menu-item:hover,
  .special-card:hover,
  .gallery-item:hover {
    transform: none;
  }

  /* Keep border color changes as they work fine on tap */
  .menu-item:active {
    border-color: var(--gold);
  }

  .special-card:active {
    border-color: var(--gold);
  }

  .btn-primary:hover {
    transform: none;
    box-shadow: none;
  }

  .btn-outline:hover {
    transform: none;
  }

  .btn-primary:active {
    background: var(--gold-light);
    border-color: var(--gold-light);
  }

  .social-link:hover {
    transform: none;
  }

  .social-link:active {
    border-color: var(--gold);
    background: rgba(232, 168, 38, 0.1);
  }
}

/* ===== Landscape phone fix ===== */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 80px 24px 40px;
  }

  .hero-logo {
    width: 300px;
    margin-bottom: 12px;
  }

  .hero-tagline {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .hero-content .btn {
    display: inline-flex;
    width: auto;
    max-width: none;
  }
}
