/* ==============================
   GLOBAL STYLES
============================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
  
body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff8e7; /* Cream background */
}
  
section {
    padding: 80px 20px;
    text-align: center;
}
  
h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #8B0000;
}
  
p, li {
    font-size: 1rem;
    margin: 10px 0;
}
  
/* ==============================
   NAVBAR
============================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
}
  
.navbar .logo {
    font-weight: 800;
    font-size: 1.5rem;
    color: #8B0000;
}
  
.nav-links {
    display: flex;
    list-style: none;
}
  
.nav-links li {
    margin: 0 15px;
}
  
.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    position: relative;
}
  
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #8B0000;
    left: 0;
    bottom: -5px;
    transition: .3s;
}
  
.nav-links a:hover::after {
    width: 100%;
}
  
.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}
  
/* ==============================
   HERO
============================== */
/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 120vh; 
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  background: url('Hero.png') no-repeat center center; /* Default desktop image */
  background-size: cover;
  color: white;
  padding: 20px;
}

/* Hero Content */
.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-top: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-top: 10px;
}

.hero-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background-color: #e60000;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background-color: #b30000;
  transform: scale(1.05);
}

/* Mobile/Tablet Hero */
@media (max-width: 768px) {
  .hero {
    height: 70vh; /* shorter for phones */
    background: url('hero-mobile.png') no-repeat center center;
    background-size: cover;
  }

  .hero h1,
  .hero p,
  .hero-btn {
    display: none; /* hide text & button on mobile */
  }
}

  
/* ==============================
   ABOUT
============================== */
.about {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
  
.about-text {
    flex: 1;
    padding: 20px;
}
  
.about-img {
    flex: 1;
    padding: 20px;
}
  
.about-img img {
    max-width: 100%;
    border-radius: 10px;
}
  
/* ==============================
   CREATORS
============================== */
/* ✅ Make creators appear in rows of 3 */
.creator-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}
  
.creator-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
  
.creator-row:hover {
    transform: translateY(-5px);
}
  
.creator-row img {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 15px;
}
  
.creator-info h3 {
    font-size: 1.6rem;
    color: #8B0000;
    margin-bottom: 5px;
}
  
.creator-info p {
    font-size: 1rem;
    color: #444;
}
  
/* ==============================
   SPECIALITIES
============================== */
.special-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 20px;
}
  
.special {
    background: #f8f8f8;
    padding: 40px;
    border-radius: 10px;
    font-weight: 600;
}
  
/* ==============================
   MENU
============================== */
/* Section heading */
.menu-category {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: #b30000;
    text-align: left;
  }
  
  /* Grid layout for menu items */
  .menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
  }
  
  /* Individual menu card */
  .menu-item {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform .3s;
    text-align: center;
  }
  
  .menu-item:hover {
    transform: scale(1.05);
  }
  
  /* Images inside cards */
  .menu-item img {
    display: block;
    width: 100%;
    height: 200px;      /* fixed height for uniformity */
    object-fit: cover;  /* fills space without distortion */
    border-radius: 10px;
  }
  
  /* Text */
  .menu-item h4 {
    margin-top: 10px;
    font-size: 1.2rem;
    color: #8B0000;
  }
  
  .menu-item p {
    font-size: 0.9rem;
    color: #444;
  }
  
  .choose ul {
    list-style-position: outside; /* dots thoda door */
    padding-left: 20px;           /* adjust spacing */
    margin: 0 auto;
    display: inline-block;        /* center me rakho */
    text-align: left;             /* text left align */
  }
  
  .choose li {
    margin: 10px 0;
    font-size: 1.1rem;
  }
  
/* ==============================
   CONTACT
============================== */
.contact-box {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 500px;
}
  
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 20px auto;
}
  
.contact-form input,
.contact-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
  
.contact-form button {
    align-self: flex-end;
}

  
/* ==============================
   FOOTER
============================== */
footer {
    background: #8B0000;
    color: white;
    padding: 20px;
    text-align: center;
}
  
/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 768px) {
    .nav-links {
      display: none;
      flex-direction: column;
      background: white;
      position: absolute;
      top: 70px;
      right: 0;
      width: 200px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
  
    .nav-links.show {
      display: flex;
    }
  
    .hamburger {
      display: block;
    }
  
    .about {
      flex-direction: column;
    }

    /* ✅ Stack creators on small screens */
    .creator-list {
      grid-template-columns: 1fr;
    }
}
  
/* ==============================
   ANIMATIONS
============================== */
@keyframes slideUp {
    0% {
      opacity: 0;
      transform: translateY(50px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
}
