@import url('https://fonts.googleapis.com/css2?family=Yesteryear&family=Playfair+Display:ital,wght@0,700;1,400&family=Cormorant+Garamond:ital,wght@0,500;1,400&family=Poppins:wght@300;400&display=swap');

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #d4af37;
  --dark-gold: #ddab5b;
  --black: #0a0a0a;
  --light-bg: #f8f5f0;
  --white: #ffffff;
  --gray: #777777;
  --dark-gray: #333333;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

/* Scroll Indicator Styles */
.scroll-indicator {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.indicator-dot:hover {
    border-color: var(--gold);
    background-color: rgba(212, 175, 55, 0.3);
}

.indicator-dot.active {
    background-color: var(--gold);
    border-color: var(--gold);
    transform: scale(1.3);
}

.indicator-dot::after {
    content: attr(data-section);
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--black);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 3px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.indicator-dot:hover::after {
    opacity: 1;
    visibility: visible;
}

body {
  font-family: 'Cormorant Garamond', serif;
  color: var(--dark-gray);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Yesteryear', 'Playfair Display', 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
  font-weight: 400;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.main-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 30px 0;
  background-color: transparent;
  transition: var(--transition);
}

/* .main-header.scrolled {
  padding: 20px 0;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
} */

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.nav-left,
.nav-right {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-center .logo img {
  width: 100%;
  max-width: 200px;
  margin-top: 2.5rem;
  height: auto;
}

.nav-link {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
  position: relative;
}

.main-header.scrolled .nav-link {
  color: var(--black);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--gold);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--gold);
}

.nav-link:hover::after {
  width: 100%;
}

.logo {
  text-align: center;
  text-decoration: none;
  color: var(--white);
}

.main-header.scrolled .logo {
  color: var(--black);
}

.logo h1 {
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.logo-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.8;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  width: 30px;
  height: 21px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle span {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  transition: var(--transition);
}

.main-header.scrolled .mobile-toggle span {
  background-color: var(--black);
}

.mobile-toggle span:nth-child(1) {
  top: 0;
}

.mobile-toggle span:nth-child(2) {
  top: 9px;
}

.mobile-toggle span:nth-child(3) {
  top: 18px;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 9px;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background-image: url('/assets/images/taj-mahal-restaurent.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 100px 20px;
}

.hero-title {
  font-size: 24px;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 300;
  font-family: 'Montserrat', sans-serif;
}

.hero-main-title {
  font-size: 120px;
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 1;
}

.hero-description {
  font-size: 20px;
  font-style: italic;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btn {
  display: inline-block;
  padding: 14px 40px;
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  transition: var(--transition);
}

.hero-btn:hover {
  background-color: var(--white);
  color: var(--black);
}

/* About Section */
.about-section {
  padding: 120px 0;
  background-color: var(--white);
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.section-content {
  padding-right: 40px;
}

.section-subtitle {
  font-size: 24px;
  color: var(--gray);
  margin-bottom: 10px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}

.section-main-title {
  font-size: 60px;
  color: var(--gold);
  margin-bottom: 30px;
  font-weight: 400;
}

.gold-divider {
  width: 60px;
  height: 2px;
  background-color: var(--gold);
  margin: 30px 0;
}

.section-text {
  font-size: 20px;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 30px;
}

.highlight {
  color: var(--dark-gray);
  font-weight: 500;
}

.features-list {
  list-style: none;
  margin: 30px 0;
}

.features-list li {
  margin-bottom: 15px;
  font-size: 18px;
  position: relative;
  padding-left: 30px;
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

.section-btn {
  display: inline-block;
  padding: 12px 35px;
  background-color: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  transition: var(--transition);
}

.section-btn:hover {
  background-color: transparent;
  color: var(--gold);
}

.section-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  height: 600px;
}

.image-item {
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-item:first-child {
  margin-top: 40px;
}

.image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-item:hover img {
  transform: scale(1.05);
}

/* Parallax Section */
.parallax-section {
  padding: 150px 0;
  background-image: url('https://images.unsplash.com/photo-1565958011703-44f9829ba187?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  text-align: center;
  color: var(--white);
  height: 100vh;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.parallax-content {
  position: relative;
  z-index: 1;
}

.parallax-title {
  font-size: 100px;
  font-weight: 400;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.parallax-subtitle {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 20px;
  font-style: italic;
  letter-spacing: 1px;
}

/* Menu Section */
.menu-section {
  padding: 120px 0;
  background-color: var(--light-bg);
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.menu-category {
  background-color: var(--white);
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.category-title {
  font-size: 28px;
  color: var(--dark-gray);
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--gold);
}

.dish-item {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.dish-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.dish-name {
  font-size: 22px;
  color: var(--dark-gray);
  margin-bottom: 10px;
  font-weight: 500;
}

.dish-description {
  font-size: 18px;
  color: var(--gray);
  line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background-color: var(--white);
    color: var(--dark-gray);
    background-color: #0a0a0a;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-info {
    padding-right: 40px;
}

.contact-info .section-title {
  color: var(--dark-gold);
}

.contact-details {
    margin: 40px 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dark-gold);
    margin-bottom: 5px;
    font-weight: 500;
}

.contact-text p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--white);
}

.contact-actions {
    margin-top: 40px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 40px;
    background-color: var(--gold);
    color: var(--white);
    border: 2px solid var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: var(--transition);
}

.contact-btn:hover {
    background-color: var(--dark-gold);
    border-color: var(--dark-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(184, 134, 11, 0.2);
}

/* Contact Image Column */
.contact-image {
    position: relative;
    height: 500px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 40px;
    color: var(--white);
}

.image-content h4 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 400;
    letter-spacing: 1px;
}

.image-content p {
    font-size: 16px;
    opacity: 0.9;
    font-style: italic;
}

footer {
  background: var(--black);
  color: #aaa;
  text-align: center;
  padding: 1rem 0;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-info {
        padding-right: 0;
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
        text-align: left;
    }
    
    .contact-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .contact-text p {
        font-size: 16px;
    }
}

/* Responsive */
@media (max-width: 1200px) {
  .hero-main-title {
    font-size: 90px;
  }

  .section-main-title {
    font-size: 50px;
  }

  .parallax-title {
    font-size: 80px;
  }
}

@media (max-width: 992px) {

  .nav-left,
  .nav-right {
    display: none;
  }

  .nav-center {
    position: static;
    transform: none;
    flex: 1;
    text-align: center;
  }

  .mobile-toggle {
    display: block;
  }

  .section-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .section-content {
    padding-right: 0;
    text-align: center;
  }

  .menu-items {
    grid-template-columns: 1fr;
  }

  .hero-main-title {
    font-size: 70px;
  }

  .parallax-title {
    font-size: 60px;
  }

  .parallax-subtitle {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .hero-main-title {
    font-size: 50px;
  }

  .hero-title {
    font-size: 18px;
  }

  .hero-description {
    font-size: 18px;
  }

  .section-main-title {
    font-size: 40px;
  }

  .section-images {
    height: 400px;
  }

  .parallax-section {
    padding: 100px 0;
  }

  .contact-title {
    font-size: 40px;
  }
}

@media (max-width: 576px) {
  .hero-main-title {
    font-size: 40px;
  }

  .section-main-title {
    font-size: 32px;
  }

  .section-images {
    grid-template-columns: 1fr;
    height: auto;
    gap: 15px;
  }

  .image-item:first-child {
    margin-top: 0;
  }

  .parallax-title {
    font-size: 40px;
  }

  .parallax-subtitle {
    font-size: 20px;
  }

  .menu-category {
    padding: 30px 20px;
  }
}