/* ==========================================
   FEED ME GROUP — STYLESHEET
   ========================================== */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:       #c0392b;
  --red-dark:  #a93226;
  --red-light: #e74c3c;
  --dark:      #1a1a1a;
  --darker:    #111111;
  --gray-dark: #2c2c2c;
  --gray-mid:  #3d3d3d;
  --gray-bg:   #f0f0f0;
  --white:     #ffffff;
  --off-white: #f5f5f5;
  --text-muted:#888;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Montserrat', sans-serif;
  --transition:   0.3s ease;
  --radius:       8px;
  --shadow:       0 4px 24px rgba(0,0,0,.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 10px;
}

.section-pad { padding: 80px 0; }

.section-title {
     margin-bottom: 16px;
    color: #2D2F2F;
    font-family: Inter;
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
}
.section-title.light { color: var(--white); }

.section-sub {
 color: #2d2f2f;
    margin: 0 auto 52px;
    font-family: Inter;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0%;
    text-align: center;
}
.section-sub.light { color: #ffffff; }

.accent { color: var(--red); }


/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-block;
  background: #C4252B;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: 1px;
  padding: 14px 32px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-transform: uppercase;
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192,57,43,.4);
}

.btn-dark {
     display: inline-block;
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    background: #2D2F2F;
    font-family: Inter;
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 1%;
    vertical-align: middle;
    border-radius: 15px;
    text-transform: capitalize;
    padding: 18px 40px;
    margin-top: 40px !important;
}
.btn-dark:hover { background: #000; transform: translateY(-2px); }

.btn-book {
background: #C4252B;
    color: var(--white);
    padding: 10px 22px;
    border-radius: 6px;
    transition: background var(--transition);
    text-transform: uppercase;
    font-family: Inter;
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 1%;
    vertical-align: middle;
}
.btn-book:hover { background: var(--red-dark); }

.btn-submit {
    width: 100%;
    background: #C4252B;
    color: var(--white);
    padding: 18px 32px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background var(--transition), transform var(--transition);
    text-transform: uppercase;
    margin-top: 8px;
    font-family: Inter;
    font-weight: 700;
    font-size: 24px;
    line-height: 122%;
    letter-spacing: 0%;
    text-align: center;
}
.btn-submit:hover { background: #C4252B; transform: translateY(-2px); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }


/* ---------- FADE IN ANIMATION ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}


/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #2D2F2F;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.4); }
.nav-inner {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }

.logo-fallback { display: none; }
.logo-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--red);
  border-radius: 50%;
  width: 54px;
  height: 54px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: .65rem;
  letter-spacing: 1px;
  line-height: 1.1;
  text-align: center;
}
.logo-sub { color: var(--red); font-size: .55rem; }
.nav-links {
     display: flex;
    align-items: center;
    gap: 64px;
    flex: 1;
    justify-content: end;
    padding-right: 42px;
}
.nav-links a {
  color: var(--white);
font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 1%;
    vertical-align: middle;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: #C4252B; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
nav#navbar {
    padding: 10px 0px;
}
/*.btn-book {*/
/*  background: #C4252B;*/
/*  color: var(--white);*/
/*  font-weight: 700;*/
/*  font-size: .8rem;*/
/*  letter-spacing: 1px;*/
/*  padding: 10px 22px;*/
/*  border-radius: 6px;*/
/*  transition: background var(--transition);*/
/*  text-transform: uppercase;*/
/*}*/
.btn-book:hover { background: #a01e23; }
.social-icons { display: flex; gap: 6px; }
.social-icon {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 6px;
  background-color: #C4252B;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: border-color var(--transition), color var(--transition);
}
.social-icon svg { width: 16px; height: 16px; }

.social-icon:hover { border-color: var(--red); color: var(--white); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================
   HERO
   ========================================== */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a1a 45%, #2c2c2c 100%);
  background-image:
    radial-gradient(circle at 70% 50%, rgba(192,57,43,.12) 0%, transparent 60%),
    linear-gradient(135deg, #111 40%, #222 100%);
}

/* Geometric texture overlay */
.hero-bg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(192,57,43,.04) 0px,
      rgba(192,57,43,.04) 1px,
      transparent 1px,
      transparent 40px
    );
}




.hero-bg-image {
    position: absolute;
    inset: 0;
    background-image: url(https://feedmegroup.com.au/images-new/b2f158e69c3ad537f964b8b63f4b7fdb2e79595c.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
position: relative;
    z-index: 2;
    max-width: 1500px;
    padding: 300px 10px 200px;
    margin: 0 auto;
    width: 100% !important;
}

/*food trucks color*/

.accent {
    color: #C4252B;
}

/*food trucks color - close */
.hero-cta {
    background: #C4252B;
    font-family: Inter;
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 1%;
    vertical-align: middle;
    border-radius: 15px;
    text-transform: capitalize;
    padding: 18px 40px;
}
.hero-title {
    font-size: 60px;
    color: var(--white);
    line-height: 100%;
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
}

.hero-sub {
     color: rgba(255, 255, 255, .75);
    font-weight: 300;
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 0%;
    font-family: 'Inter', sans-serif;
     margin-bottom: 70px;
    margin-top: 28px;
}

section.stats_div {
    background: #2d2f2f;
}
.hero-stats {
    max-width: 1066px;
    margin: 0 auto;
}
/*hero button hover start*/

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192, 57, 43, .4);
    background: #C4252B;
}
    /*hero button hover close*/

.hero-stats {
    position: relative;
    z-index: 2;
    background: #2d2f2f;
    border-top: 1px solid rgba(255, 255, 255, .07);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 28px 0px;
    gap: 55px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 60px;
}
.stat-number {
font-family: Inter;
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
  color: var(--white);
}
.stat-label {
    color: #ffffff;
    font-family: Inter;
    font-weight: 300;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    margin-top: 17px;
}
.stat-divider {
    width: 1px;
    height: 85px;
    background: #D9D9D999;
}


/* ==========================================
   ABOUT
   ========================================== */
.about { background: var(--gray-bg); }

.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
}

.about-card-icon {
    flex-shrink: 0;
    width: 100px;
    height: 100%;
    align-content: center;
}
.about-card-icon svg { width: 100%; height: 100%; }

.about-card-text h3 {
     margin-bottom: 8px;
    color: #2d2f2f;
    font-family: Inter;
    font-weight: 700;
    font-size: 29px;
    line-height: 100%;
    letter-spacing: 0%;
}
.about-card-text p {
       color: #2D2F2F;
    font-family: Inter;
    font-weight: 400;
    font-size: 23px;
    line-height: 30px;
    letter-spacing: 0%;
}


/* ==========================================
   WHY US
   ========================================== */
.why-us {
  background: #2D2F2F;
  padding: 80px 0;
}

.why-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-content h2 {
    color: var(--white);
    margin-bottom: 20px;
    font-family: Inter;
    font-weight: 700;
    line-height: 50px;
    letter-spacing: 0%;
    font-size: 40px;
    border-bottom: 1px solid #D9D9D999;
    padding-bottom: 10px;
}

.why-divider {
  width: 60px; height: 3px;
  background: #C4252B;
  margin-bottom: 28px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.why-list li {
      display: flex;
    align-items: center;
    gap: 14px;
    color: #ffffff;
    font-family: Inter;
    font-weight: 300;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    padding-bottom: 17px;
}
.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  /*width: 26px; height: 26px;*/
  /*background: var(--red);*/
  color: var(--white);
  border-radius: 50%;
  font-size: .8rem;
  font-weight: 900;
  flex-shrink: 0;
}
.why-list {
    margin-top: 48px !important;
}

.why-image { display: flex; justify-content: center; }
.why-img-placeholder {
  width: 100%;
  max-width: 520px;
  height: 340px;
  background: linear-gradient(135deg, #222 0%, #333 100%);
  border-radius: 12px;
  border: 2px solid rgba(192,57,43,.4);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.why-img-placeholder::before {
  content: '🍕';
  position: absolute;
  font-size: 7rem;
  top: 30px; right: 30px;
  opacity: .15;
}
.why-img-label {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 3px;
  background: var(--red);
  padding: 8px 20px;
  border-radius: 4px;
}


/* ==========================================
   EVENTS
   ========================================== */
.events { background: var(--off-white); }

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.event-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,.15);
}

.event-card.fade-in.visible {
    border-radius: 0px;
}

.event-img {
  
  background: var(--gray-mid);
  position: relative;
}

/*.event-img-1 {*/
/*  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);*/
/*}*/


/*.event-img-1::before { content: '🎪'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 4rem; opacity: .4; }*/
/*.event-img-2 {*/
/*  background: linear-gradient(135deg, #2d3436 0%, #636e72 100%);*/
/*}*/
.event-img-2::before { content: '🏢'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 4rem; opacity: .4; }
.event-img-3 {
  background: linear-gradient(135deg, #1e3799 0%, #4a69bd 100%);
}
.event-img-3::before { content: '🌆'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 4rem; opacity: .4; }

.event-caption {
  background: var(--gray-dark);
  padding: 20px 22px;
}
.event-caption h3 {
 color: var(--white);
    margin-bottom: 6px;
    font-family: Inter;
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
}
.event-caption p {
color: #ffffff;
    font-family: Inter;
    font-weight: 300;
    font-size: 18px;
    line-height: 25px;
    letter-spacing: 0%;
    text-align: center;
    padding-top: 12px;
}


/* ==========================================
   BRANDS
   ========================================== */
.brands { background: #2D2F2F; }

.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px 20px;
}
.contact-info h2 {
    margin-bottom: 41px;
    color: #2D2F2F;
    font-family: Inter;
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0%;
}
.brand-item { display: flex; justify-content: center; }

.brand-circle {
  width: 130px; height: 130px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  transition: border-color var(--transition), transform var(--transition);
  cursor: default;
}
.brand-circle:hover {
  border-color: var(--red);
  transform: scale(1.06);
}

.brand-pizza { border-color: rgba(192,57,43,.5); }
.brand-potato { border-color: rgba(200,180,60,.3); }
.brand-fork { border-color: rgba(255,255,255,.2); }
.brand-blue { border-color: rgba(60,100,200,.4); }
.brand-cane { border-color: rgba(255,255,255,.15); background: rgba(255,255,255,.04); }
.brand-burger { border-color: var(--red); background: rgba(192,57,43,.08); }
.brand-green { border-color: rgba(80,180,80,.4); }

.brand-name {
  color: var(--white);
  font-weight: 800;
  font-size: .68rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.3;
  text-align: center;
}
.brand-name small {
  display: block;
  font-size: .58rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 1.5px;
}
.brand-tagline {
  display: block;
  font-size: .55rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-align: center;
}
.brand-burger .brand-name { font-family: var(--font-display); font-size: .85rem; letter-spacing: 1px; }
.brand-green .brand-name { color: #7ec850; }


/* ==========================================
   CTA BANNER
   ========================================== */
.cta-banner {
  background: #C4252B;
  padding: 60px 24px;
}
.cta-inner {

  margin: 0 auto;
  text-align: center;
}
.cta-inner h2 {
     color: var(--white);
    margin-bottom: 14px;
    font-family: Inter;
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
}
.cta-inner p {
 color: #fff;
    font-family: Inter;
    font-weight: 300;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    line-height: 34px;
}

.event-img  img {
 
    width: 100%;
}
.brand-item.fade-in.visible {
    align-items: center;
}
.brand-item img {
    width: 100% !important;
    height: fit-content;
}
/* ==========================================
   GALLERY
   ========================================== */
.gallery { background: var(--white); }
.gallery-grid {
  display: grid;
  /*grid-template-columns: repeat(2, 1fr);*/
  /*grid-template-rows: auto auto;*/
      display: flex;
  gap: 20px;
}
.gallery-item2 {
    width: 70%;
}
.first-galer {
    width: 60%;
}
.gallery-img2:nth-child(1) {
    margin-bottom: 20px;
}
.first-galer img, .first-galer2 img{
    width: 100%;
    height: 100%;
}
.first-galer2 {
    width: 40%;
}
.gallery-item.gallery-large.fade-in.visible {
    width: 30%;
}
.gallery-large {
  grid-row: span 2;
}
.gallery-img2 {
    display: flex;
    gap: 20px;
}
.gallery-img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--gray-mid);
  position: relative;
}
.gallery-large .gallery-img { min-height: 380px; }

/* Remove the blue/dark gradient backgrounds */
.gal-2, .gal-3, .gal-4, .gal-5 {
  background: var(--gray-mid);
}

/* Make ALL images fill their containers */
.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 10px;
}

/* ==========================================
   CONTACT
   ========================================== */
.contact { background: var(--gray-bg); }

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}



.contact-item {
  display: flex;
    gap: 43px;
    margin-bottom: 22px;
    align-items: center;
}

.contact-icon {
  width: 50px; height: 50px;
  background: #C4252B ;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
  color: var(--white);
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
    margin-bottom: 3px;
    color: #2D2F2F;
    font-family: Inter;
    font-weight: 600;
    font-size: 24px;
    line-height: 122%;
    letter-spacing: 0%;
}
.contact-item a,
.contact-item span {
    color: #2D2F2F;
    font-family: Inter;
    font-weight: 400;
    font-size: 24px;
    line-height: 160%;
    letter-spacing: 0%;
}
.contact-item a:hover { color: var(--red); }

.contact-social { margin-top: 82px; }
.contact-social h3 {
     margin-bottom: 41px;
    color: #2D2F2F;
    font-family: Inter;
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0%;
}
.social-link {
  display: flex;
    align-items: center;
    gap: 43px;
    margin-bottom: 30px;
    transition: color var(--transition);
    color: #2D2F2F;
    font-family: Inter;
    font-weight: 400;
    font-size: 24px;
    line-height: 160%;
    letter-spacing: 0%;
    text-decoration: underline;
}
.social-link:hover { color: var(--red); }
.social-badge {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-size: .9rem;
  color: var(--white);
}
.social-badge.fb { background: #1877f2; }
.social-badge.ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

/* FORM */
.contact-form-wrap {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}
.contact-form-wrap h2 {
     margin-bottom: 28px;
    color: #2D2F2F;
    font-family: Inter;
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}
.form-row .form-group { margin-bottom: 0; }

.form-group label {
  color: #2D2F2F;
    font-family: Inter;
    font-weight: 500;
    font-size: 24px;
    line-height: 122%;
    letter-spacing: 0%;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1.5px solid #ddd;
  border-radius: 6px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--dark);
  outline: none;
  transition: border-color var(--transition);
  background: var(--white);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; }

.form-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  border-radius: 6px;
  padding: 14px 18px;
  margin-bottom: 20px;
  font-size: .9rem;
  font-weight: 600;
}
.form-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  border-radius: 6px;
  padding: 14px 18px;
  margin-bottom: 20px;
  font-size: .9rem;
  font-weight: 600;
}


/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: #2D2F2F;
  padding: 52px 0 0;
}

.footer-inner {
  margin: 0 auto;
  padding: 0 40px 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.8fr;
  gap: 48px;
  align-items: start;
}

/*footer image start*/

/*.logo-img-footer {*/
/*    height: 110px;*/
/*}*/

/*footer image close*/

.footer-logo-circle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: .7rem;
  letter-spacing: 1px;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 10px;
}

.footer-contact-small p {
 color: #fff;
    margin-bottom: 12px;
    font-family: Inter;
    font-weight: 300;
    font-size: 16px;
    line-height: 122%;
    letter-spacing: 0%;
}
.footer-contact-small strong {
     display: block;
    color: #fff;
    font-family: Inter;
    font-weight: 500;
    font-size: 16px;
    line-height: 122%;
    letter-spacing: 0%;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 55px;
  padding-top: 12px;
  align-self: center;
}
.footer-nav a {
     color: #ffffff;
    transition: color var(--transition);
    font-family: Inter;
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 1%;
    vertical-align: middle;
}
.footer-nav a:hover { color: var(--red); }

.footer-newsletter { padding-top: 8px; }
.footer-newsletter h3 {
    color: #fff;
    font-family: Inter;
    font-weight: 700;
    font-size: 30px;
    line-height: 54px;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
  
}
.footer-newsletter p {
       margin: 0 auto;
    width: 74%;
    color: #fff;
    margin-bottom: 20px;
    font-family: Inter;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0%;
    text-align: center;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}
.newsletter-form input {
  width: 100%;
  background: #D9D9D9;
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 6px;
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: .9rem;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input::placeholder { color: #2d2f2f; }
.newsletter-form input:focus { border-color: var(--red); }
.newsletter-form .btn-primary { width: 46%;
    margin: 0 auto;
    border-radius: 40px;
    background-color: #C4252B;
    font-family: Inter;
    font-weight: 700;
    font-size: 18px;
    line-height: 122%;
    letter-spacing: 0%;
    text-align: center;
    
}

.footer-legal {
      display: flex;
    column-gap: 10px;
    color: #ffffff;
    font-family: Inter;
    font-weight: 300;
    font-size: 13px;
    line-height: 45px;
    letter-spacing: 0%;
    text-align: center;
    justify-content: center;
}
.footer-legal a {
  color: #ffffff;
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--red); }


/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .brands-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-newsletter { grid-column: span 2; }
}

@media (max-width: 900px) {
  .about-cards,
  .events-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
 
  .contact-wrapper { grid-template-columns: 1fr; }
  .hero-content { padding: 135px 24px 122px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-large { grid-row: span 1; }
  .gallery-large .gallery-img { min-height: 180px; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(20,20,20,.98);
    flex-direction: column;
    padding: 24px;
    gap: 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .nav-links a::after { display: none; }
  .hamburger { display: flex; }

  .stat-item { padding: 0 10px; }
  .stat-number { font-size: 18px; }
  .hero-stats { gap: 10px; }

  .section-pad { padding: 52px 0; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-newsletter { grid-column: span 1; }
  .gallery-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
 .hero-title {
    font-size: 32px;
    text-align: center;
}
.accent br {
    display: none;
}
.accent {
    color: #C4252B;
    font-size: 40px;
}

  .stat-divider { margin: 0 auto; }
  .contact-form-wrap { padding: 24px; }
}

.about-card-text h3 {
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 10px;
}

.gallery-img2 {
    display: flex;
}


@media (max-width: 768px) {
    .hero-title {
    font-size: 32px;
    text-align: center;
}
.accent br {
    display: none;
}
.accent {
    color: #C4252B;
    font-size: 40px;
}
section#home {
    background-image: url(https://feedmegroup.com.au/images-new/background-mobile.png) !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-bg-image {
    
    position: unset !important;
}
p.hero-sub {
    font-size: 16px;
    text-align: center;
    color: #fff;
    line-height: 25px;
    width: 320px;
        margin-top: 0px !important;
    margin-bottom: 10px !important;
}
.hero-content {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
}

.hero-sub br {
    display: none;
}
.hero {
    position: unset !important;
}
.hero-content {
    padding: 135px 24px 400px !important;
} 
.baner-btn {
    width: 100% !important;
    text-align: center;
}
.hero-cta {
    font-size: 16px !important;
    border-radius: 5px !important;
    padding: 16px 40px !important;
    margin-top: 16px;
}
.stat-label {
    font-size: 13px !important;
    margin-top: 10px !important;
}
.section-sub {
    font-size: 17px !important;
    line-height: 26px !important;
}
.section-title {

    font-size: 32px !important;
}
.about-card-text h3 {
    font-size: 18px !important;
}
.about-card-text p {
    font-size: 16px !important;
    line-height: 22px !important;
}
.about-card-text {
    width: 70%;
}
.about-card-icon {
    width: 30% !important;
}
.about-card {
    gap: 11px !important;
}
.about-card {
    padding: 25px 20px !important;
    gap: 11px !important;
}
.why-content h2 {
    line-height: 35px !important;
    font-size: 28px !important;
}
.why-us {
    padding-bottom: 10px !IMPORTANT;
}
.why-list li {
    font-size: 19px !important;
    padding-bottom: 2px !important;
}
span.check-icon {
    width: 24px;
}
.section-sub br {
    display: none;
}
.event-caption h3 {
    margin-bottom: 0px !important;
    font-size: 24px !important;
}
.event-caption p {
    font-size: 16px !important;
    padding-top: 7px !important;
}
.event-caption p br {
    display: none;
}
.cta-inner h2 {
    font-size: 32px !important;
}
.cta-inner p {
    font-size: 17px !important;
    line-height: 25px !important;
}
.cta-inner h2 {
    width: 320px;
}
.cta-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.event-caption p {
    width: 300px;
}
.event-caption {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.section-title {
    width: 340px;
}
.hedinggg {
    display: flex;
    justify-content: center;
}
.btn-dark {
    font-size: 18px !important;
}
.contact-item a, .contact-item span {
    font-size: 18px !important;
}
.contact-item strong {
    font-size: 20px !important;
}
.contact-item {
    gap: 24px !important;
}
.social-link {
    gap: 24px !important;
    font-size: 18px !important;
}
.contact-icon {
    width: 40px !important;
    height: 40px !important;
}
.social-badge {
    width: 40px !important;
    height: 40px !important;
}
.form-group label {
    font-size: 17px !important;
}
.btn-submit {
    font-size: 19px !important;
}
.footer-inner {
    padding: 0px !important;
}
.footer-nav a {
    font-size: 18px !important;
}
.footer-nav {
    gap: 30px !important;
    padding-top: 0px !important;
}
.footer-newsletter h3 {
    font-size: 20px !important;
}
.footer-newsletter p {
    margin-bottom: 18px !important;
    font-size: 16px !important;
    line-height: 24px !important;
    margin-top: -4px !important;
    width: 87% !important;
}
.newsletter-form .btn-primary {
    width: 63% !important;
}
.footer-legal {
    line-height: 23px !important;
    display: block !important;
    padding-bottom: 30px;
}
.footer-contact-small p, .footer-nav {
    text-align: center;
}
.footer-logo {
    text-align: center;
    margin-bottom: 30px;
}
.footer-inner {
    gap: 25px !important;
}
.btn-book {
    font-size: 13px !important;
}
.social-icon {
    width: 34px !important;
    height: 34px !important;
}
  .brand-item img {

    height: auto !important;
}
}

@media (max-width: 1025px) and (min-width: 768px) {
    .hero-stats {
    gap: 7px !important;
}
.stat-label {
    font-size: 14px !important;
}
.hero-title {
    font-size: 40px !important;
}
.hero-sub {
    margin-bottom: 20px !important;
}
.hero-sub {
    font-size: 15px !important;
    line-height: 28px !important;
}
.section-sub {
    font-size: 19px !important;
}
.cta-inner p {
    font-size: 18px !important;
}
}

@media (max-width: 1025px) and (min-width: 901px) {
    .about-card-text h3 {
    font-size: 18px !important;
}
.about-card-text p {
    font-size: 16px !important;
    line-height: 22px !important;
}
.about-card-text {
    width: 70%;
}
.about-card-icon {
    width: 30% !important;
}
.about-card {
    gap: 11px !important;
}
.about-card {
    padding: 25px 20px !important;
    gap: 11px !important;
}
.why-content h2 {
    line-height: 44px !important;
    font-size: 27px !important;
}
.why-list li {
    font-size: 18px !important;
    padding-bottom: 0px !important;
}
span.check-icon {
    width: 21px;
}
.hero-cta {
    font-size: 18px !important;
}
.event-caption h3 {
    margin-bottom: 0px !important;
    font-size: 18px !important;
}
.event-caption p {
    font-size: 14px !important;
    padding-top: 7px !important;
}
.event-caption p br {
    display: none;
}
.form-group label {
    font-size: 17px !important;
}
.contact-item a, .contact-item span {
    font-size: 19px !important;
}
.social-link {
    font-size: 18px !important;
}
}
@media (max-width: 345px) and (min-width: 0px) {
    .hero-content {
    padding: 135px 24px 334px !important;
}
.hero-title {
    font-size: 30px !important;
    text-align: center;
}
}
@media (max-width: 1024px) and (min-width: 768px) {
    .hamburger { display: flex !important; }
    .nav-links {
    display: none !important;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(20,20,20,.98);
    flex-direction: column;
    padding: 24px;
    gap: 40px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.nav-links.open {
    display: flex !important;
}
    .nav-links li {
        width: 100%;
    }
  
}

@media (max-width: 1280px) and (min-width: 1025px) {
    .about-card-text h3 {
    font-size: 18px !important;
}
.about-card-text p {
    font-size: 16px !important;
    line-height: 22px !important;
}
.about-card-text {
    width: 70%;
}
.about-card-icon {
    width: 30% !important;
}
.about-card {
    gap: 11px !important;
}
.about-card {
    padding: 25px 20px !important;
    gap: 11px !important;
}
.why-content h2 {
    line-height: 44px !important;
    font-size: 27px !important;
}
.why-list li {
    font-size: 18px !important;
    padding-bottom: 0px !important;
}
span.check-icon {
    width: 21px;
}
.hero-cta {
    font-size: 18px !important;
}
.event-caption h3 {
    margin-bottom: 0px !important;
    font-size: 18px !important;
}
.event-caption p {
    font-size: 14px !important;
    padding-top: 7px !important;
}
.event-caption p br {
    display: none;
}
.form-group label {
    font-size: 17px !important;
}
.contact-item a, .contact-item span {
    font-size: 19px !important;
}
.social-link {
    font-size: 18px !important;
}
.footer-nav a {
    font-size: 16px !important;
}
.footer-newsletter h3 {
    font-size: 24px !important;
    line-height: 40px !important;
}
.footer-newsletter p {
    font-size: 14px !important;
}
.newsletter-form .btn-primary {
    width: 59% !important;
    font-size: 15px !important;
}
.footer-legal {
    font-size: 8px !important;
}
.nav-links {
    gap: 40px !important;
}
.btn-book {
    font-size: 16px !important;
}
.nav-links a {
    font-size: 16px !important;
}
}

@media (max-width: 1500px) and (min-width: 1281px) {
    .about-card-text h3 {
    font-size: 24px !important;
}
.about-card-text p {
    font-size: 17px !important;
    line-height: 23px !important;
}
.footer-legal {
    column-gap: 17px !important;
    font-size: 11px !important;
}

}

@media (max-width: 1393px) and (min-width: 1281px) {
    .event-caption h3 {
    font-size: 28px !important;
}
.event-caption p {
    font-size: 17px !important;
}
.footer-newsletter p {
    width: 78% !important;
}
}