/* =================================================================
   General Reset
================================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  
  body {
    background-color: black;
    color: white;
    overflow-x: hidden;
  }
  
  /* =================================================================
     Navbar
  ================================================================= */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: black;
    z-index: 1000;
    padding: 10px 0; /* vertical padding */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  }
  
  /* Container inside navbar for spacing and alignment */
  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  /* Logo on the left */
  .logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
  }
  
  .nav-logo {
    width: 100px;
    height: auto;
    border-radius: 50%;
    border: 2px solid gold;
  }
  
  /* Nav links on the right */
  .nav-links {
    display: flex;
    gap: 32px;
  }
  
  /* Default nav link color is gold, and on hover changes to white */
  .nav-link {
    font-size: 18px;
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .nav-link:hover {
    color: #fff;
  }
  
  /* Hamburger Button - Hidden on desktop */
  .nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
  }
  
  .nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: #FFD700;
    transition: 0.4s;
  }
  
  /* =================================================================
     Responsive Navbar
  ================================================================= */
  @media (max-width: 768px) {
    /* Show the hamburger icon */
    .nav-toggle {
      display: flex;
    }
  
    /* Hide nav links by default on mobile */
    .nav-links {
      position: absolute;
      top: 60px; /* adjust based on navbar height */
      left: 0;
      right: 0;
      background-color: black;
      flex-direction: column;
      gap: 24px;
      padding: 20px;
      display: none;
    }
  
    /* When .active is toggled, display the mobile menu */
    .nav-links.active {
      display: flex;
    }
  }
  
  /* =================================================================
     Content Offset
     (Ensure main content isn't hidden behind the fixed navbar)
  ================================================================= */
  main,
  .home-container,
  .about-container,
  .products-container,
  .contact-container {
    margin-top: 120px;  /* Adjust to ensure enough spacing below the navbar */
  }
  
  /* =================================================================
     Home Page & Video Section
  ================================================================= */
  .home-container {
    width: 100%;
  }
  
  .video-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
  
  .video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .video-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
    padding: 0 10px;
    color: white;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
  }
  
  .video-text h1 {
    font-size: 4em;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  
  .gold-text {
    color: #FFD700;
  }
  
  .video-text p {
    font-size: 1.5em;
    max-width: 800px;
    margin: auto;
    opacity: 0.9;
    color: #ddd;
  }
  
  /* =================================================================
     Info Section (Below Video)
  ================================================================= */
  .info-section {
    padding: 40px 20px;
    background-color: #000;
    text-align: center;
  }
  
  /* =================================================================
     "Why Choose Us" Section
  ================================================================= */
  .why-choose-us {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 30px;
    margin: 20px auto 40px;
    max-width: 900px;
    border: 2px solid #FFD700;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    text-align: left;
  }
  
  .why-choose-us h2 {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 15px;
    text-align: center;
  }
  
  .why-choose-us ul {
    list-style: none;
    padding: 0;
  }
  
  .why-choose-us li {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #bbbbbb;
  }
  
  /* =================================================================
     Price List Section
  ================================================================= */
  .price-list {
    background-color: #111;
    padding: 40px 20px;
    margin: 40px auto;
    max-width: 900px;
    border: 2px solid #FFD700;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    text-align: left;
  }
  
  .price-list h2 {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
  }
  
  .price-list ul {
    list-style: none;
    padding: 0;
  }
  
  .price-list ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.5em;
    color: #ddd;
    margin: 10px 0;
    padding: 5px 0;
    border-bottom: 1px dashed rgba(255, 215, 0, 0.3);
  }
  
  .price-list ul li:last-child {
    border-bottom: none;
  }
  
  .service {
    flex: 1;
    text-align: left;
  }
  
  .price {
    margin-left: 20px;
    font-weight: bold;
    text-align: right;
  }
  
  /* =================================================================
     About Page Section
  ================================================================= */
  .about-container {
    max-width: 900px;
    margin: auto;
    padding: 64px 16px;
    text-align: center;
  }
  
  .about-images {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
  }
  
  .about-image {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0px 4px 15px rgba(255, 215, 0, 0.5);
    transition: transform 0.3s ease-in-out;
  }
  
  .about-image:hover {
    transform: scale(1.05);
  }
  
  .about-logo {
    width: 320px;
    height: auto;
    border-radius: 50%;
    border: 2px solid gold;
    margin-bottom: 50px;
    margin-top: 100px;
  }
  
  /* =================================================================
     Products Page Section
  ================================================================= */
  .products-container {
    max-width: 1000px;
    margin: auto;
    padding: 64px 16px;
    text-align: center;
  }
  
  .products-container h1 {
    font-size: 2.5em;
    color: #FFD700; /* Ensure H1 text is visible */
    text-transform: uppercase;
    border-bottom: 2px solid #d4af37;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 20px;
    margin-top: 100px;
  }
  
  .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    justify-content: center;
  }
  
  @media (max-width: 1024px) {
    .products-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .products-grid {
      grid-template-columns: 1fr;
    }
  }
  
  .product-card {
    background-color: black;
    border: 2px solid #FFD700;
    padding: 24px;
    text-align: center;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  }
  
  .product-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
  }
  
  .product-card img {
    width: 100%;
    max-width: 250px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 12px;
  }
  
  .product-card h3 {
    font-size: 22px;
    font-weight: bold;
    color: white;
  }
  
  .product-card p {
    font-size: 16px;
    color: #bbbbbb;
    margin: 0;
  }
  
  /* =================================================================
     Contact Page Section
  ================================================================= */
  .contact-container {
    background-color: #000;
    color: #d4af37;
    text-align: center;
    padding: 80px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .contact-heading {
    font-size: 3em;
    font-weight: bold;
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.8);
    margin-bottom: 20px;
  }
  
  .contact-intro {
    font-size: 1.5em;
    color: #ccc;
    margin-bottom: 30px;
  }
  
  .contact-details {
    background: transparent;
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #d4af37;
    display: inline-block;
    margin-bottom: 30px;
    width: 60%;
    min-width: 300px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
  }
  
  .contact-details p {
    margin: 12px 0;
    font-size: 1.4em;
    color: white;
  }
  
  .opening-hours {
    background: transparent;
    padding: 20px;
    border-radius: 15px;
    border: 2px solid #d4af37;
    display: inline-block;
    margin-bottom: 30px;
    width: 60%;
    min-width: 300px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    color: white;
    font-size: 1.4em;
  }
  
  .opening-hours p {
    margin: 8px 0;
  }
  
  .additional-info {
    max-width: 700px;
    margin: 20px auto 40px;
    font-size: 1.3em;
    color: #ccc;
    line-height: 1.6;
  }

  .opening-hours p {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 10px 0;
  }
  
  .opening-hours .day {
    font-weight: bold;
    /* Additional styling if desired, e.g.: */
    /* color: #FFD700; */
  }
  
  .opening-hours .time {
    /* Ensure the time text is aligned to the right if necessary */
    text-align: right;
  }
  

  /* =================================================================
     Map Container
  ================================================================= */
  .map-container {
    margin-top: 40px;
    width: 100%;
    max-width: 1000px;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid #d4af37;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.7);
  }
  
  .map {
    width: 100%;
    height: 500px;
    border: none;
  }
  
  /* =================================================================
     Footer
  ================================================================= */
  .footer {
    background-color: black;
    border-top: 2px solid #d4af37;
    padding: 20px;
    text-align: center;
    color: #bbbbbb;
    font-size: 15px;
    margin-top: 40px;
  }
  
  .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .footer-info p {
    margin: 8px 0;
    font-size: 1em;
  }
  
  .footer-info a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-info a:hover {
    color: white;
  }
  
  /* Footer Icons Styling */
  .footer-icons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .footer-icons a {
    color: #FFD700; /* Gold default */
    font-size: 32px; /* Icon size */
    transition: transform 0.3s ease, color 0.3s ease;
  }
  
  .footer-icons a:hover {
    transform: scale(1.1);
    color: white;
  }
  
  /* =================================================================
     Responsive Adjustments
  ================================================================= */
  @media (max-width: 1024px) {
    .video-text h1 {
      font-size: 3em;
    }
    .video-text p {
      font-size: 1.2em;
    }
    .why-choose-us h2,
    .price-list h2 {
      font-size: 2em;
    }
    .price-list ul li {
      font-size: 1.3em;
    }
    .contact-details p,
    .opening-hours p {
      font-size: 1.2em;
    }
    .map {
      height: 400px;
    }
  }
  
  @media (max-width: 768px) {
    .video-text h1 {
      font-size: 2.5em;
    }
    .video-text p {
      font-size: 1em;
    }
    .why-choose-us h2 {
      font-size: 1.8em;
    }
    .why-choose-us li,
    .price-list ul li {
      font-size: 1.2em;
    }
    .contact-details,
    .opening-hours,
    .contact-form {
      width: 90%;
    }
    .map {
      height: 300px;
    }
  }
  
  @media (max-width: 480px) {
    .video-text h1 {
      font-size: 2.2em;
    }
    .video-text p {
      font-size: 0.9em;
    }
    .why-choose-us h2 {
      font-size: 1.5em;
    }
    .why-choose-us li,
    .price-list ul li {
      font-size: 1em;
    }
    .contact-details p,
    .opening-hours p {
      font-size: 0.9em;
    }
    .map {
      height: 250px;
    }
    
    /* Adjust navbar padding for small screens */
    .navbar {
      padding: 10px 20px;
    }
  }
  