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

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: "Quicksand", sans-serif;
    overflow-x: hidden;
    background-color: #0f0f1a;
    color: #e6e6e6;
  }

  a {
    text-decoration: none;
    color: #fff;
  }

  ul {
    list-style: none;
  }

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

  /* Utility Classes */
  .btn {
    display: inline-block;
    padding: 15px 30px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: white;
  }

  .btn-primary {
    border: 2px solid #8a4af3;
    background: transparent;
    color: #8a4af3;
  }

  .btn-secondary {
    background: linear-gradient(135deg, #8a4af3 0%, #6c3dc4 100%);
  }

  .btn-third {
    background: #2d2d3d;
    color: #fff;
  }

  .btn-primary:hover {
    background: #8a4af3;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(138, 74, 243, 0.2);
  }

  .btn-secondary:hover {
    background: linear-gradient(135deg, #6c3dc4 0%, #5a32a8 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(138, 74, 243, 0.3);
  }

  .btn-third:hover {
    background: #8a4af3;
    transform: translateY(-2px);
  }

  .primary-text {
    color: #8a4af3;
  }

  .secondary-text {
    color: #04d9b2;
  }

  /* Header Start */
  header {
    height: 100vh;
    background: linear-gradient(rgba(15, 15, 26, 0.9), rgba(15, 15, 26, 0.7)), url("./img/home_bg.jpeg") center center/cover no-repeat;
    position: relative;
  }

  #navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    width: 100%;
    padding: 0 20px;
    background: rgba(45, 45, 61, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(138, 74, 243, 0.2);
  }

  #navbar img {
    width: 80px;
    flex-shrink: 0;
  }

  nav ul {
    display: flex;
    list-style: none;
    gap: 0;
  }

  nav ul li a {
    padding: 15px 20px;
    font-weight: 600;
    display: block;
    transition: all 0.3s ease;
    color: #e6e6e6;
  }

  nav ul li a:hover {
    color: #8a4af3;
    border-bottom: 2px solid #8a4af3;
  }

  .hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
    z-index: 20;
  }

  .hamburger span {
    width: 25px;
    height: 3px;
    background: #8a4af3;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
    background: #04d9b2;
  }

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

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: #04d9b2;
  }

  header .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 75%;
    padding: 0 20px;
  }

  header .content h1 {
    font-size: 40px;
    color: #fff;
    text-align: center;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }

  header .content p {
    color: #b8b8cc;
    margin: 20px 0 40px;
    text-align: center;
    font-size: 18px;
    max-width: 600px;
  }

  header * {
    z-index: 10;
  }

  /* Header End */

  /* About Start */
  #about {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 0;
    min-height: auto;
    border-bottom: 1px solid rgba(138, 74, 243, 0.1);
  }

  #about .title,
  #offers .title,
  #menu .title {
    text-align: center;
    margin-bottom: 4rem;
  }

  #about h2,
  #offers h2,
  #menu h2 {
    font-size: 40px;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #8a4af3, #04d9b2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  #about h2 {
    color: #8a4af3;
  }

  #about .title p {
    font-weight: 600;
    font-size: 14px;
    color: #a0a0b8;
  }

  #about .about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
  }

  #about .about-content>div {
    flex: 1;
  }

  #about .about-content p {
    line-height: 1.6;
    color: #b8b8cc;
    font-weight: 500;
    margin-bottom: 1rem;
  }

  #about img {
    max-width: 100%;
    height: auto;
    flex: 1;
    min-height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }

  #about .about-content a {
    margin-top: 2rem;
  }

  /* About End */

  /* Offers Section start */
  #offers {
    background: linear-gradient(rgba(26, 26, 46, 0.95), rgba(26, 26, 46, 0.95)), url("./img/offer-background.jpg") center center/cover fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 0;
    min-height: auto;
  }

  #offers h2 {
    color: #8a4af3;
  }

  #offers .title p {
    color: #d1d1e0;
    font-weight: 500;
  }

  #offers .offers-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 2rem;
  }

  #offers .offers-items>div {
    flex: 1;
    min-width: 250px;
    background: rgba(45, 45, 61, 0.7);
    padding: 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(138, 74, 243, 0.2);
  }

  #offers .offers-items>div:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(138, 74, 243, 0.2);
    border-color: #8a4af3;
  }

  #offers .offers-items img {
    width: 200px;
    max-width: 100%;
    height: auto;
    border-radius: 50%;
    padding: 10px;
    background: linear-gradient(135deg, #8a4af3 0%, #04d9b2 100%);
  }

  #offers .offers-items h3 {
    font-size: 25px;
    color: #fff;
    margin: 15px 0;
  }

  #offers .offers-items p {
    color: #b8b8cc;
    font-size: 14px;
    padding: 0 20px;
    font-weight: 300;
    margin-bottom: 15px;
  }

  #offers .offers-items span {
    font-weight: 600;
    font-size: 18px;
    margin-left: 5px;
    color: #04d9b2;
  }

  /* Offers Section end */

  /* Menu Section Start */
  #menu {
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
    padding: 5rem 0;
    border-top: 1px solid rgba(138, 74, 243, 0.1);
  }

  #menu .title h2 {
    color: #8a4af3;
  }

  #menu .title p {
    color: #a0a0b8;
    font-weight: 500;
  }

  #menu .menu-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    align-items: start;
    gap: 2rem;
  }

  #menu .menu-items .menu-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 20px 0;
    gap: 1rem;
    background: rgba(45, 45, 61, 0.5);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(138, 74, 243, 0.1);
    transition: all 0.3s ease;
  }

  #menu .menu-items .menu-item:hover {
    border-color: #8a4af3;
    transform: translateX(10px);
  }

  #menu .menu-items .menu-item img {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #8a4af3;
  }

  #menu .menu-items .menu-item div {
    flex: 1;
    min-width: 0;
  }

  #menu .menu-items .menu-item h3 {
    color: #fff;
    border-bottom: 1px dashed #8a4af3;
    padding-bottom: 10px;
    position: relative;
    font-size: 16px;
    word-wrap: break-word;
  }

  #menu .menu-items .menu-item span {
    position: absolute;
    right: 0px;
    top: 0;
    color: #04d9b2;
    font-weight: 700;
  }

  #menu .menu-items .menu-item p {
    margin-top: 10px;
    font-size: 14px;
    color: #b8b8cc;
  }

  #menu .btn {
    display: block;
    margin: auto;
    border: none;
    margin-top: 30px;
  }

  /* Menu Section End */

  /* Daytime section Start */
  #daytime {
    background: linear-gradient(rgba(138, 74, 243, 0.9), rgba(4, 217, 178, 0.9)), url("./img/daytime_bg.jpeg") center center/cover fixed no-repeat;
    color: #fff;
    text-align: center;
    padding: 3rem 0;
  }

  #daytime .daytime-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    justify-content: center;
    align-items: center;
    gap: 2rem;
    min-height: auto;
    padding: 2rem 0;
  }

  #daytime .daytime-items .daytime-item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
  }

  #daytime .daytime-items .daytime-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
  }

  #daytime .daytime-items h3 {
    font-size: 32px;
    margin: 20px 0 10px;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  }

  #daytime .daytime-items p {
    font-weight: 500;
    color: #e6e6e6;
  }

  /* Daytime section End */

  /* Gallery section start */
  #gallery {
    background: linear-gradient(rgba(15, 15, 26, 0.9), rgba(15, 15, 26, 0.9)), url("./img/offer-background.jpg") center center/cover;
    padding: 8rem 0 6rem;
  }

  #gallery h2 {
    font-size: 40px;
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #8a4af3, #04d9b2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  #gallery .img-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
  }

  #gallery .img-gallery img {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    opacity: 0.8;
    object-fit: cover;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    background: linear-gradient(45deg, #8a4af3, #04d9b2) border-box;
  }

  #gallery .img-gallery img:hover {
    opacity: 1;
    transform: scale(1.05);
    border-color: #8a4af3;
  }

  /* Gallery section end */

  /* Contact Section start */
  #contact {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 5rem 0;
    border-top: 1px solid rgba(138, 74, 243, 0.1);
  }

  #contact .container {
    max-width: 900px;
  }

  #contact .contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: space-between;
    align-items: start;
    gap: 3rem;
  }

  #contact .contact-info {
    width: 100%;
  }

  #contact .contact-info div {
    margin: 30px 0;
    line-height: 1.7;
  }

  #contact .contact-info h3 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #8a4af3, #04d9b2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  #contact .contact-info p {
    color: #b8b8cc;
  }

  #contact .contact-info p i {
    color: #8a4af3;
    margin-right: 5px;
  }

  #contact .contact-info a i {
    color: #fff;
    background: linear-gradient(135deg, #8a4af3 0%, #6c3dc4 100%);
    padding: 10px;
    font-size: 20px;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin-right: 10px;
  }

  #contact .contact-info a i:hover {
    background: linear-gradient(135deg, #04d9b2 0%, #8a4af3 100%);
    color: #fff;
    transform: translateY(-3px);
  }

  form {
    width: 100%;
  }

  form input,
  textarea {
    display: block;
    width: 100%;
    padding: 20px 15px;
    margin: 20px 0;
    border: none;
    background-color: rgba(45, 45, 61, 0.7);
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    color: #fff;
    border: 1px solid rgba(138, 74, 243, 0.2);
    transition: all 0.3s ease;
  }

  form input:focus,
  textarea:focus {
    outline: none;
    background-color: rgba(138, 74, 243, 0.1);
    border-color: #8a4af3;
    box-shadow: 0 0 20px rgba(138, 74, 243, 0.2);
  }

  form button {
    color: #fff;
    width: 100%;
    background: linear-gradient(135deg, #8a4af3 0%, #6c3dc4 100%);
  }

  /* Contact Section End */

  /* Footer Start */
  #footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
    text-align: center;
    color: #b8b8cc;
    padding: 15px 0;
    font-size: 14px;
    border-top: 1px solid rgba(138, 74, 243, 0.2);
  }

  #footer a {
    color: #8a4af3;
    transition: color 0.3s ease;
  }

  #footer a:hover {
    color: #04d9b2;
  }

  /* Footer End */

  /* Responsiveness */
  /* Tablet - Medium Screens */
  @media (max-width: 1024px) {
    .container {
      padding: 0 30px;
    }

    header .content h1 {
      font-size: 32px;
    }

    #navbar img {
      width: 60px;
    }

    nav ul li a {
      padding: 10px 15px;
      font-size: 14px;
    }

    #about h2,
    #offers h2,
    #menu h2 {
      font-size: 32px;
    }

    #offers .offers-items {
      gap: 1.5rem;
    }

    #offers .offers-items img {
      width: 150px;
    }

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

    #daytime .daytime-items h3 {
      font-size: 24px;
    }

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

    form input,
    textarea {
      padding: 15px 12px;
    }
  }

  /* Mobile - Small Tablets */
  @media (max-width: 768px) {
    .container {
      padding: 0 20px;
    }

    #navbar {
      height: 60px;
      background: rgba(26, 26, 46, 0.95);
    }

    #navbar img {
      width: 50px;
    }

    nav ul {
      gap: 10px;
    }

    nav ul li a {
      padding: 10px 12px;
      font-size: 13px;
    }

    .hamburger {
      display: flex;
    }

    nav#nav-menu {
      display: none;
      position: absolute;
      top: 80px;
      left: 0;
      right: 0;
      background: rgba(26, 26, 46, 0.98);
      backdrop-filter: blur(10px);
      flex-direction: column;
      width: 100%;
      z-index: 15;
      border-bottom: 1px solid rgba(138, 74, 243, 0.3);
    }

    nav#nav-menu.active {
      display: flex;
    }

    nav#nav-menu ul {
      flex-direction: column;
      padding: 20px 0;
    }

    nav#nav-menu ul li {
      border-bottom: 1px solid rgba(138, 74, 243, 0.2);
    }

    nav#nav-menu ul li a {
      padding: 15px 20px;
      display: block;
    }

    header .content h1 {
      font-size: 24px;
    }

    header .content p {
      font-size: 14px;
    }

    .btn {
      padding: 12px 24px;
      font-size: 13px;
    }

    #about h2,
    #offers h2,
    #menu h2 {
      font-size: 28px;
    }

    #about .title p,
    #offers .title p,
    #menu .title p {
      font-size: 12px;
    }

    #about .about-content {
      flex-direction: column;
    }

    #about img {
      display: none;
    }

    #offers .offers-items {
      flex-direction: column;
      gap: 1.5rem;
    }

    #offers .offers-items>div {
      min-width: 100%;
    }

    #menu .menu-items .menu-item {
      margin: 15px 0;
    }

    #daytime {
      padding: 2rem 0;
    }

    #daytime .daytime-items {
      gap: 1.5rem;
      padding: 1rem 0;
    }

    #daytime .daytime-items h3 {
      font-size: 20px;
    }

    #daytime .daytime-items p {
      font-size: 13px;
    }

    #gallery {
      padding: 4rem 0 3rem;
    }

    #gallery h2 {
      font-size: 28px;
      margin-bottom: 20px;
    }

    #gallery .img-gallery {
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 15px;
    }

    #gallery .img-gallery img {
      height: 150px;
    }

    #contact .contact-content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    #contact .contact-info h3 {
      font-size: 22px;
    }

    #contact .contact-info p {
      font-size: 13px;
    }

    form input,
    textarea {
      padding: 15px 12px;
      font-size: 13px;
      margin: 15px 0;
    }

    #footer {
      font-size: 12px;
    }
  }

  /* Mobile - Small Phones */
  @media (max-width: 480px) {
    .container {
      padding: 0 15px;
    }

    #navbar {
      height: 70px;
    }

    #navbar img {
      width: 45px;
    }

    header {
      min-height: 70vh;
    }

    header .content h1 {
      font-size: 20px;
    }

    header .content p {
      font-size: 12px;
      margin: 15px 0 30px;
    }

    .btn {
      padding: 10px 20px;
      font-size: 12px;
    }

    #about {
      padding: 2rem 0;
    }

    #about h2,
    #offers h2,
    #menu h2 {
      font-size: 24px;
      margin-bottom: 15px;
    }

    #about .title p,
    #offers .title p,
    #menu .title p {
      font-size: 11px;
    }

    #about .about-content p {
      font-size: 13px;
    }

    #offers {
      padding: 2rem 0;
    }

    #offers .offers-items {
      gap: 1rem;
    }

    #offers .offers-items img {
      width: 120px;
    }

    #offers .offers-items h3 {
      font-size: 16px;
    }

    #offers .offers-items p {
      font-size: 12px;
      padding: 0 10px;
    }

    #menu {
      padding: 2rem 0;
    }

    #menu .menu-items .menu-item {
      gap: 0.75rem;
    }

    #menu .menu-items .menu-item img {
      width: 60px;
      height: 60px;
    }

    #menu .menu-items .menu-item h3 {
      font-size: 14px;
    }

    #menu .menu-items .menu-item p {
      font-size: 12px;
    }

    #menu .btn {
      margin-top: 20px;
    }

    #daytime {
      padding: 1.5rem 0;
    }

    #daytime .daytime-items {
      gap: 1rem;
      padding: 0.5rem 0;
    }

    #daytime .daytime-items h3 {
      font-size: 18px;
      margin: 10px 0 5px;
    }

    #daytime .daytime-items p {
      font-size: 11px;
    }

    #gallery {
      padding: 2rem 0;
    }

    #gallery h2 {
      font-size: 24px;
      margin-bottom: 15px;
    }

    #gallery .img-gallery {
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 10px;
    }

    #gallery .img-gallery img {
      height: 120px;
    }

    #contact {
      padding: 2rem 0;
    }

    #contact .contact-info h3 {
      font-size: 18px;
      margin-bottom: 8px;
    }

    #contact .contact-info p {
      font-size: 12px;
    }

    #contact .contact-info div {
      margin: 20px 0;
    }

    form input,
    textarea {
      padding: 12px 10px;
      font-size: 12px;
      margin: 12px 0;
    }

    #footer {
      font-size: 11px;
      padding: 10px 15px;
    }
  }

  /* Extra Small Phones */
  @media (max-width: 375px) {
    .container {
      padding: 0 12px;
    }

    header .content h1 {
      font-size: 18px;
    }

    header .content p {
      font-size: 11px;
    }

    #about h2,
    #offers h2,
    #menu h2 {
      font-size: 22px;
    }

    #gallery .img-gallery {
      grid-template-columns: 1fr 1fr;
    }
  }

