body {
      margin: 0;
      padding: 0;
    }

    /* Header container */
    header {
      width: 1440px;
      height: 105px;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 40px;
      box-sizing: border-box;
      font-family: "Bebas Neue", sans-serif; 
      position: relative;
      left: 100px;
    }

    /* Logo */
    .logo {
      position: absolute;
      left: 100px;
      top: 0;
      width: 210px;
      height: 105px;
      display: flex;
      align-items: center;
    }

    .logo img {
      width: 210px;
      height: 105px;
      transform: rotate(0deg);
      opacity: 1;
    }

    /* Navigation */
    nav {
      flex: 1;
      display: flex;
      justify-content: center;
    }

    nav ul {
      display: flex;
      gap: 25px;
      list-style: none;
      padding: 0;
      margin-left: 200px;
    }

    nav ul li {
      font-size: 20px;
      text-transform: uppercase;
      cursor: pointer;
      font-family: "Bebas Neue", sans-serif; 
    }

    /* Button */
    .btn {
      background: #f25c05;
      color: #fff;
      padding: 12px 25px;
      text-decoration: none;
      font-size: 14px;
      border: none;
      cursor: pointer;
      transition: 0.3s;
    }

    .btn:hover {
      background: #d94d04;
    }

.contact-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  max-width: 1080px;
  margin: 44px auto 0 auto;
  padding: 0 18px 44px 18px;
  gap: 60px;
}

.contact-left {
  flex: 1 1 44%;
  max-width: 340px;
  min-width: 240px;
}

.contact-title {
  color: #19305b;
  font-size: 2rem;
      font-family: "Bebas Neue", sans-serif; 
  margin-bottom: 7px;
  letter-spacing: 1px;
  line-height: 1.1;
}

.contact-subtext {
  color: #222;
  font-size: 1.01rem;
  margin-bottom: 31px;
}

.contact-detail-boxes {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-box {
  background: #f6f6f6;
  border-radius: 2.5px;
  display: flex;
  align-items: center;
  min-height: 56px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  position: relative;
  margin-bottom: 0;
  padding-right: 24px;
}

.contact-box-text {
  color: #244073;
  font-weight: 600;
  font-size: 1.04rem;
  letter-spacing: 0.12px;
  flex: 1;
  padding-right: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.contact-box-accent {
  width: 0;
  height: 0;
  border-top: 28px solid transparent;
  border-bottom: 28px solid transparent;
  border-right: 16px solid #53141d;
  position: absolute;
  right: 0;
  top: 0;
}

/* Right Side (Form) */
.contact-right {
  flex: 1 1 56%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.contact-form {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 6px 30px rgba(40,40,80,0.09);
  min-width: 380px;
  padding: 34px 36px 26px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-form-title {
  font-size: 1.21rem;
  color: #19305b;
  font-weight: bold;
  letter-spacing: 0.8px;
  margin-bottom: 18px;
  text-transform: uppercase;
        font-family: "Bebas Neue", sans-serif; 
}
.contact-form-title .orange {
  color: #f25c05;
}

.contact-form-row {
  display: flex;
  gap: 15px;
  width: 100%;
  margin-bottom: 15px;
}

.contact-form-group {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
}
.contact-label {
  font-size: 0.95rem;
  font-weight: bold;
  color: #19305b;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
        font-family: "Bebas Neue", sans-serif; 
}

.contact-form input,
.contact-form textarea {
  padding: 10px 11px;
  font-size: 1rem;
  border: 1px solid #d3d8e1;
  border-radius: 2px;
  background: #f9f9f9;
  color: #222;
  outline: none;
  margin-bottom: 0;
  resize: none;
  font-family: inherit;
}

.contact-form textarea {
  min-height: 84px;
}

.contact-form-submit {
  width: 100%;
  margin-top: 7px;
  padding: 13px 0;
  background: #f25c05;
  color: #fff;
  font-size: 1.07rem;
  font-weight: bold;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  letter-spacing: 0.8px;
  transition: background 0.2s;
  text-transform: uppercase;
}
.contact-form-submit:hover {
  background: #cc4500;
}

@media (max-width: 900px) {
  .contact-section {
    flex-direction: column;
    align-items: center;
    gap: 34px;
    padding-bottom: 20px;
  }
  .contact-left,
  .contact-form {
    max-width: 98vw;
  }
  .contact-form {
    min-width: 0;
    padding: 22px 5vw 16px 5vw;
  }
  .contact-title {
    font-size: 1.2rem;
  }
}
@media (max-width: 600px) {
  .contact-section {
    padding: 0 3vw 10px 3vw;
  }
  .contact-title {
    font-size: 1.05rem;
  }
  .contact-form-title {
    font-size: 1.01rem;
  }
  .contact-form {
    padding: 14px 2vw 10px 2vw;
  }
  .contact-box-text {
    font-size: 0.97rem;
  }
}
.orange {
  color: #f25c05;
  font-weight: bold;
}

.footer {
  background-color: #0b2a56; /* Dark Blue */
  color: #fce5db;           /* Light Beige */
  font-family: 'Bebas Neue', sans-serif;
  text-transform: uppercase;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
  flex-wrap: wrap;
}

.footer-left h2 {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  letter-spacing: 1px;
  color: #fce5db;
}

.footer-left .highlight {
  color: #ff3c00; /* Orange for BBQ */
}

.footer-right {
  text-align: right;
}

.btn-competition {
  display: inline-block;
  background-color: #ff3c00;
  color: white;
  font-weight: 600;
  padding: 14px 35px;
  text-decoration: none;
  margin-bottom: 30px;
  font-size: 18px;
}

.footer-links {
  display: flex;
  gap: 80px;
  justify-content: flex-end;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  color: #fce5db;
  text-decoration: none;
  font-size: 18px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #ffffff;
  padding: 15px 10px;
  text-align: center;
  font-size: 14px;
  color: #ddd;
  font-family: Arial, sans-serif; /* small text different font */
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    text-align: center;
    margin-top: 25px;
  }

  .footer-links {
    justify-content: center;
    flex-direction: column;
    gap: 25px;
  }
}