body{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 0;
    margin: 0;
}

/* ===== NAVBAR BASE ===== */
.navbar {
  background-color: black;
  padding: 1rem 0;
  width: 100%;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ===== LOGO ===== */
.navbar-logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  letter-spacing: 1px;
}

/* ===== NAV LINKS ===== */
.navbar-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.navbar-links .nav-link {
  color: #ddd;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s ease-in-out;
}

.navbar-links .nav-link:hover {
  color: #00d9ff;
}

#fun{
  background-color: black;
}

.some-fun{
  text-align: center;
  background-color: black;
  color: white;
}

/* ===== MOBILE TOGGLE BUTTON ===== */
.navbar-toggle {
  display: none;
  font-size: 1.8rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

/* ===== RESPONSIVE NAV ===== */
@media (max-width: 1250px) {
  .navbar-links {
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #111;
    width: 200px;
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
    display: none;
  }

  .navbar-links.open {
    display: flex;
  }

  .navbar-toggle {
    display: block;
  }
}

/* ===== GENERAL LAYOUT SECTIONS ===== */
.homepage-img-div{
    width: 50vw;
    background-color: black;
}

.image-text{
    width: 50vw;
    padding: 20px;
    color: white;
    background-color: black;
}

#imagepromo{
    display: flex;
    background-color: black;
}

#contact{
    display: flex;
}

.gmaps{
    width: 50vw;
    align-items: center;
    align-content: center;
    text-align: center;
}

.flex{
  display: flex;
  justify-content: center;
  align-items: center;
}

#frmOrder{
  margin-right: 20px;
}

.address{
    width: 50vw;
    text-align: center;
}

#about{
    display: flex;
}

#contactform{
    display: flex;
}

.aboutleft{
    width: 50vw;
    background-color: black;
}

.contactformleft{
    width: 50vw;
    background-color: black;
}

.aboutright{
    width: 50vw;
    padding-left: 30px;
    padding-right: 30px;
    background-color: black;
    color: white;
}

.contactformright{
    width: 50vw;
    padding-left: 30px;
    padding-right: 30px;
}

/* General font */
body {
  font-family: "Inter", sans-serif;
}

/* Labels */
label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.95rem;
  color: #333;
  font-weight: 500;
}

/* Inputs & textareas */
input,
textarea {
  width: 47vw;
  padding: 12px 14px;
  margin-bottom: 18px;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  font-size: 1rem;
  background: #fafafa;
  transition: all 0.25s ease;
}

/* Image Slider Styles */
.slider-container {
    position: relative;
    max-width: 600px;
    margin: 30px auto;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    max-height: 400px;
}

.slide {
    display: none;
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide.active {
    display: block;
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.3s ease;
    border-radius: 3px;
    background-color: rgba(0, 0, 0, 0.5);
    user-select: none;
    border: none;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 0;
}

.formdetails{
  background-color: rgb(223, 220, 220);
  padding-top: 10px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 10px;
  border-radius: 15px;
  max-width: 800px;
  margin: auto;
}

.next {
    right: 0;
}

input:focus,
textarea:focus {
  border-color: #00bfff;
  background: #fff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.25);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

button {
  padding: 14px 20px;
  border: none;
  border-radius: 10px;
  background: #00bfff;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.15s ease;
}

button:hover {
  background: #0099cc;
  transform: translateY(-2px);
}

button:active {
  transform: translateY(0);
}

/* ===== MOBILE GENERAL ===== */
@media (max-width: 1250px) {
  .homepage-img-div,
  .image-text,
  .gmaps,
  .address,
  .aboutleft,
  .aboutright,
  .contactformleft,
  .contactformright {
    width: 100%;
    padding: 10px;
  }

  .formdetails{
    max-width: 400px;
  }

  input,
  textarea{
    width: 89vw;
  }

  #imagepromo,
  #contact,
  #about {
    flex-direction: column;
    align-items: center;
  }
}

/* ============================
   CONTACT PAGE (REWRITTEN)
   ============================ */

#contactform {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    background: black;    
}

.contactformleft {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contactformleft img {
    width: 100%;
    height: auto;
    display: block;
}

.contactformright {
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box;
    background: white;
    border-radius: 12px;
}

#frmContact label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
}

#frmContact input,
#frmContact textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 18px;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    font-size: 1rem;
    background: #fafafa;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

#frmContact input[type="submit"] {
    background: #00bfff;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

#frmContact input[type="submit"]:hover {
    background: #0099cc;
}

/* ===== MOBILE CONTACT FIX ===== */
@media (max-width: 1250px) {

    #contactform {
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
    }

    .contactformleft,
    .contactformright {
        width: 100%;
        padding: 0;
    }

    .contactformleft {
        order: 1;
    }

    .contactformright {
        order: 2;
        padding: 20px;
    }

    #frmContact input,
    #frmContact textarea {
        width: 100%;
    }
}

/* ===== COOKIE POPUP ===== */
.popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: white;
  padding: 15px 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  border-radius: 8px;
  display: none;
  max-width: 250px;
  font-family: Arial, sans-serif;
}

.popup.show {
  display: block;
}

.popup button {
  margin-top: 10px;
  padding: 8px 12px;
  border: none;
  background: #0078ff;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}
