/****************************************************
  Alea Stream Theme Styles
****************************************************/

/***********
 * 1. FONT-FACE EMBEDS
 ***********/
@font-face {
  font-family: 'Gotham Pro';
  src: url('../fonts/GothamPro.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'Gotham Pro';
  src: url('../fonts/GothamPro-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'PF DIN Text Comp Pro';
  src: url('../fonts/PFDinTextCompPro-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'PF DIN Text Comp Pro';
  src: url('../fonts/PFDinTextCompPro-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: block;
}

/***********
 * 2. GLOBAL & COLORS
 ***********/
:root {
  --blue: #325480;
  --light-blue: #5993c7;
  --grey: #edeceb;
  --green: #82b658;
  --red: #c43a3b;
  --color-primary: var(--blue);
  --color-secondary: var(--light-blue);
  --color-light: var(--grey);
  --color-dark: #4a4a4a;
  --transition-fast: all 0.25s ease;
  --transition-slow: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  --radius-base: 10px;
  --shadow-soft: 0 8px 22px rgba(0, 0, 0, 0.08);
  --container: 1200px;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'PF DIN Text Comp Pro';
  color: var(--color-dark);
  scroll-behavior: smooth;
  font-size: 1.2rem;
  line-height: 1.6;
  overflow-x:hidden;
}
.home-main{background:var(--grey);}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding:  0;
}

.light-blue { color: var(--light-blue);}
.dark-blue { color: var(--blue);}
.red { color: var(--red);}

/***********
 * 3. TYPOGRAPHY
 ***********/
h1, h2, h3, h4 {
  font-family: 'Gotham Pro';
  color: var(--light-blue);
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight:500;
}
h1 { font-size: 2.6rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1rem; }

.hero p {
  color: #fff;
  font-size: 1rem !important;
  font-weight: 500;
}
}

/***********
 * 4. NAVIGATION / MENU
 ***********/
/* === NAVBAR BASE === */
.navbar {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  height: 70px;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 999;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
}

/* === LEFT / RIGHT MENUS === */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.left-menu {
  position: absolute;
  left: 20%;
  transform: translateX(-50%);
}

.right-menu {
  position: absolute;
  right: 20%;
  transform: translateX(50%);
}

/* === MENU LINKS === */
.nav-menu a {
  text-decoration: none;
  font-family: 'Gotham Pro', sans-serif;
  color: #5993c7;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.6rem 1rem;
  border: 2px solid transparent;
  border-radius: 30px;
  transition: 0.3s;
}

.nav-menu a:hover {
  border-color: #5993c7;
  color: #325480;
}

/* === LOGO === */
.brand {
  text-align: center;
  z-index: 10;
}

.brand a {
  display: inline-block;
}

.brand img {
  max-height: 45px;
  width: auto;
  height: auto;
  vertical-align: middle;
}

/* === DROPDOWNS === */
.nav-menu li {
  position: relative;
}

/* desktop dropdown (hidden by default) */
.nav-menu li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  margin: 0;
  padding: 10px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border-radius: 8px;
}

.nav-menu li:hover > ul {
  display: block;
}

/* dropdown link style */
.nav-menu li ul li a {
  display: block;
  padding: 0.6rem 1rem;
  color: #325480;
  font-size: 0.9rem;
  white-space: nowrap;
  border-radius: 30px;
  transition: background 0.3s;
}

.nav-menu li ul li a:hover {
  background: #f0f4fa;
  color: #325480;
}

/* === MOBILE TOGGLE === */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  position: absolute;
  right: 20px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  height: 3px;
  width: 100%;
  background: #325480;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* === MOBILE MENU === */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  overflow: hidden;
}

.mobile-menu.active {
  display: flex;
}

.mobile-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.mobile-nav li {
  margin: 0;
  border-bottom: 1px solid #eee;
  position: relative;
}

.mobile-nav a {
  color: #325480;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  display: block;
  padding: 1rem;
}

/* hide mobile submenus by default */
.mobile-nav li ul {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  background: #f9f9f9;
}

.mobile-nav li.open > ul {
  display: block;
}

.mobile-nav li ul li a {
  font-size: 0.95rem;
  padding: 0.8rem 1.5rem;
  border-top: 1px solid #eee;
}

/* === RESPONSIVE === */
@media(max-width: 900px) {
  .left-menu,
  .right-menu {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }
}

/***********
 * 5. HERO, BUTTONS & FOOTER
 ***********/
.hero { position: relative; height: 80vh; overflow: hidden; }
.hero-video { width: 100%; height: 120%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; text-align: center; background: rgb(0 0 0 / 50%); }
.hero h1 {
    font-weight:500;
    color: #186bbb;
}

.hero p {color:#fff;
font-size: 2.2rem;
    font-weight:500;
}

.hero .btn-primary {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  background-color: #5993c7;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  text-transform:uppercase;
  border-radius: 6px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  align-self: flex-start; /* Align button to the left */
}

.hero.btn-primary:hover {
  background-color: #325480;
  transform: translateY(-2px);
}
.btn {
  position: relative;
  overflow: hidden;
  display: inline-block;
  background: var(--light-blue);
  color: #fff;
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius-base);
  font-weight: 600;
  text-transform: uppercase;
  transition: var(--transition-fast);
}
.btn:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}
.btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}
.btn:hover::after { width: 200%; height: 200%; }


/* ===== Footer Styles ===== */
footer {
   background: var(--gray) url('../images/Talas.webp') no-reapat;
  font-size: 1rem;
  padding: 3rem 2rem 2rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);

}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-sections {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.footer-sections h4 {
  font-weight:500;
  text-transform: uppercase;
}

.footer-sections ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-sections ul li {
  margin-bottom: 10px;
}

.footer-sections a {
  text-decoration: none;
  transition: color 0.3s ease;
  color: var(--color-dark);
}

.footer-sections a:hover {
    color: var(--blue);
}

/* Social Icons */
.footer-sections .social-icons {
  display: flex;
  gap: 12px;
}

.footer-sections .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
 color: var(--light-blue);
  border-radius: 50%;
  font-size: 20px;
  transition: all 0.3s ease;
}

.footer-sections .social-icons a:hover {
  color: var(--blue);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #e4e4e4;
  text-align: center;
  padding-top: 20px;
}

.footer-bottom-content p {
  margin: 0;

}

/* Responsive Layout */
@media (max-width: 992px) {
  .footer-sections {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-sections {
    grid-template-columns: 1fr;
  }
}
/*Intro*/
.intro-text {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 4rem 2rem 0 2rem;
    font-weight:400;font-family: 'PF DIN Text Comp Pro', sans-serif;
}
.intro p {font-size: 1.4rem; }

.intro strong {
  font-weight: 600;
  color: #5993c7;
}

.intro .btn-primary {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  background-color: #5993c7;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  text-transform:uppercase;
  border-radius: 6px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  align-self: flex-start; /* Align button to the left */
}

.intro .btn-primary:hover {
  background-color: #325480;
  transform: translateY(-2px);
}
/*Pilars*/

.pillars-wrapper {
  padding: 60px 20px;
  background-color: #fff;
}

.pillars-grid {
  display: grid;
grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.pl-card {
  background-color: #5993c742 ;
  color: #fff;
  padding: 40px;
  position: relative;
  overflow: hidden;
  min-height: 150px;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
  border-radius: 12px;

  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pl-card:hover {
  background-color: rgba(255, 255, 255, 0.4); /* Slightly less transparent on hover */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Slightly stronger shadow on hover */
}

.pl-card h3 {
    font-family: 'Gotham Pro', sans-serif;
    color: var(--color-dark);
    font-weight: 500;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.pl-card p {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  position: relative;
font-size: 1rem;
  z-index: 2;
}

/* Show paragraph smoothly on hover */
.pl-card:hover p {
  opacity: 1;
  transform: translateY(0);
}

/* Keep title always visible */
.pl-card h3 {
  font-family: 'Gotham Pro', sans-serif;
  color: var(--color-dark);
  font-weight: 500;
  font-size: 1.3rem;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

/* Optional dark overlay for readability */
.pl-card::before {
  content: "";
  position: absolute;
  inset: 0;
background-color: var(--green);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.pl-card:hover::before {
  opacity: 1;
}

/* Make text white on hover for contrast */
.pl-card:hover h3,
.pl-card:hover p {
  color: #fff;
}


.pl-card-content {
  position: relative;
  z-index: 2;
}

.align-left {
  padding-left: 210px;
}

.align-right {
  padding-right: 180px;
}

/* Circle background image overlay */
.circle {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: clip-path 0.8s ease;
  z-index: 1;
}

/* Responsive fixes */
@media (max-width: 768px) {
  .align-left,
  .align-right {
    padding-left: 0;
    padding-right: 0;
  }
  .pl-card {
  padding: 20px;
      
  }
  .pl-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
}
}



/*Brand*/
.brands h2{text-align:center; font-weight:500; padding-bottom:1.5rem;}

.brands {
  padding: 4rem 2rem;
  text-align: center;

}
/* Brand images rotation */
.brand-image {
     /* adjust size */
    margin: 0 auto;
    perspective: 1000px;
}

.brand-rotate {
    width: 100%;
    height: auto;
    transform-style: preserve-3d;
    animation: rotateBrand 6s linear infinite;
    transition: transform 0.3s ease;
}

/* Hover pause */
.brand-rotate:hover {
    animation-play-state: paused;
}

/* 3D rotation keyframes */
@keyframes rotateBrand {
    0%   { transform: rotateY(0deg) rotateX(0deg); }
    25%  { transform: rotateY(90deg) rotateX(5deg); }
    50%  { transform: rotateY(180deg) rotateX(0deg); }
    75%  { transform: rotateY(270deg) rotateX(-5deg); }
    100% { transform: rotateY(360deg) rotateX(0deg); }
}

/* Optional: center and spacing in grid */
.brand-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.brand-card a{
    text-align: center;
    text-decoration:none;
}

.brands .brand-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:1.5rem; text-align:center;}
.brand-card{ background:#fff; padding:1rem; border-radius:8px; box-shadow:0 6px 18px rgba(0,0,0,0.06); }
.brand-card h3{font-weight:500;text-decoration:none;}

.brand-card img{width:auto; height:350px;}
.btn{ display:inline-block; padding:.6rem 1rem; background:#0a5; color:#fff; border-radius:6px; text-decoration:none; }
/* Cred Section */
.cred {
  padding: 6rem 2rem;
  text-align: center;

}

.cred h3 {
  font-weight: 500;
  padding-bottom:1.5rem;
}

/* Partners Grid */
.partners {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
}

/* Logo Styling */
.partners img {
  max-width: 160px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
  filter: grayscale(100%);
}

.partners img:hover {
  transform: scale(1.05);
  filter: grayscale(0%);
}

/* Responsive */
@media (max-width: 768px) {
  .cred {
    padding: 3rem 0rem;
  }

  .partners {
    gap: 35px;
  }

  .partners img {
    max-width: 120px;
  }
}



/*Gallery-carousel*-FRONT PAGE*/
.gastro-carousel {
  padding: 4rem 2rem 6rem 2rem;
}

.gastro-carousel h2 {
  text-align: center;
  font-weight: 500;
  padding-bottom:1.5rem;
}

/* Carousel Wrapper */
.carousel-wrapper {
  overflow: hidden;
  position: relative;
}

/* Track moves continuously */
.carousel-track {
  display: flex;
  gap: 20px;
  animation: scroll 20s linear infinite;
}

/* Carousel Item */
.carousel-item {
  flex: 0 0 calc(33.333% - 13.33px); /* 3 images per row with gap */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.carousel-item img:hover {
  transform: scale(1.05);
}

/* Animation Keyframes */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .carousel-item {
    flex: 0 0 calc(50% - 10px); /* 2 images per row */
  }
}

@media (max-width: 768px) {
    .gastro-carousel {
  padding: 0;
}
  .carousel-item {
    flex: 0 0 100%; /* 1 image per row */
  }
}






/* CTA Section */

.elevate-wrapper {
  display: flex;
  max-width: 100%;
  margin: 0 auto;
  
  /* KEY CHANGES FOR THE SEAMLESS LOOK */
  border-radius: 12px;      /* Apply radius to the whole container */
 /* Apply shadow to the whole container */
  overflow: hidden;         /* This keeps the image corners rounded */
  align-items: stretch;     /* Ensures both columns are the same height */
  /* Remove the gap */
  /* gap: 3rem; */
}

.elevate-image {
  flex: 1 1 55%; /* Give slightly more space to the image if desired */
  min-width: 300px;
}

.elevate-image img {
  width: 100%;
  height: 100%;             /* Make image fill the container's height */
  object-fit: cover;        /* Prevents the image from being stretched or distorted */
  display: block;
  /* Remove radius and shadow from the image itself */
  /* border-radius: 12px; */
  /* box-shadow: 0 8px 25px rgba(0,0,0,0.1); */
}

.elevate-content {
  flex: 1 1 45%;
  background: #f9f8f6;      /* This creates the solid color block for the text */
  padding: 3rem 4rem;       /* Add generous padding inside the content block */
  
  /* NEW: These properties will vertically center your text */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.elevate-content h2 {
  font-weight: 500;
}

.elevate-content p {
  font-family: 'PF DIN Text Comp Pro', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.elevate-content .btn-primary {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  background-color: #5993c7;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  text-transform:uppercase;
  border-radius: 6px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  align-self: flex-start; /* Align button to the left */
}

.elevate-content .btn-primary:hover {
  background-color: #325480;
  transform: translateY(-2px);
}

/* Responsive styles */
@media (max-width: 768px) {
  .elevate-wrapper {
    flex-direction: column;
  }

  .elevate-image {
    max-height: 300px; /* Give the image a max height on mobile */
  }

  .elevate-content {
    text-align: center;
    padding: 2rem;
  }
  
  .elevate-content .btn-primary {
     align-self: center; /* Center the button when stacked */
  }
}
/* SECTION */
.latest-posts-carousel {
  padding: 4rem 2rem;
  background: #f9f9f9;
}

.latest-posts-carousel h2 {
  text-align: center;
padding-bottom:1.5rem;
}

/* WRAPPER */
.lp-carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.lp-carousel-track {
  display: flex;
  gap: 20px;
  will-change: transform;
}

/* ITEM */
.lp-carousel-item {
  flex: 0 0 calc(33.333% - 20px);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  position: relative;
}

.lp-img-wrap {
  position: relative;
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.lp-carousel-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

/* OVERLAY */
.lp-carousel-item h3 {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 8px 12px;
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 6px;
  display: inline-block;
}


/* RESPONSIVE */
@media (max-width: 992px) {
  .lp-carousel-item {
    flex: 0 0 calc(50% - 20px);
  }
}

@media (max-width: 600px) {
  .lp-carousel-item {
    flex: 0 0 100%;
  }
}


/* === Sustainability Premium Style === */
.sustainability {
  position: relative;
  padding: 7rem 2rem;
  color: #fff;
 background: linear-gradient(135deg, rgb(107 147 74 / 85%) 0%, rgb(96 164 42 / 85%) 100% 100%), url(../images/water.jpg) center / cover no-repeat;
  overflow: hidden;
}

/*.sustainability::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
}*/

.sus-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 4rem;
}

/* LEFT SIDE */
.sus-text h2 {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
  margin-bottom: 1.5rem;
}
.sus-text h2 i {
  font-size: 2rem;
  color: #b7e6b2;
}
.sus-text p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #e8f3e5;
  max-width: 540px;
}
.sus-btn {
  display: inline-block;
  margin-top: 2rem;
  background: rgba(255, 255, 255, 0.9);
  color: #3d571f;
  padding: 1rem 2.4rem;
  border-radius: 10px;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.sus-btn:hover {
  background: #ffffff;
  color: #4b6c2a;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* RIGHT SIDE CARDS */
.sus-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sus-card {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.sus-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/* ICON beside TITLE */
.sus-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #b8e994, #66b96a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}
.sus-icon img {
width:50px;
height:auto;
filter: brightness(0) invert(1);
}

/* TITLE + TEXT */
.sus-content h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.4rem;
}
.sus-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #f1fff1;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    
.sustainability {
  position: relative;
  padding: 4rem 2rem;
}

  .sus-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .sus-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .sus-icon {
    margin-bottom: 1rem;
  }
}


/* FLOATY subtle animation */
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.sus-card:nth-child(1) { animation: floaty 8s ease-in-out infinite; }
.sus-card:nth-child(2) { animation: floaty 8s ease-in-out 2s infinite; }
.sus-card:nth-child(3) { animation: floaty 8s ease-in-out 4s infinite; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .sus-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .sus-cards {
    max-width: 500px;
  }
  .sus-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}
/*****Hero page image*****/

/* Hero featured image */
.page-hero {
  position: relative;
  width: 100vw;
  height: 60vh;
  overflow: hidden;
  margin-left: calc(-50vw + 50%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: #fff;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.page-hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
  z-index: 1;
}

.page-hero-text {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px 40px;
}

.page-title {
  margin-bottom: 10px;
}
/***********ABOUT*******/

.about-text {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 4rem 2rem 0 2rem;
    font-weight:400;font-family: 'PF DIN Text Comp Pro', sans-serif;
}


.about-boxes-alternate {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding:2rem 2rem 4rem 2rem;
}

.about-box {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.about-box.reverse {
    flex-direction: row-reverse;
}

.about-box-image img {
    max-width: 540px;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.about-box-content {
    flex: 1;
}

.about-box-content h3 {
    margin-bottom: 10px;
}

.about-box-content p {
    line-height: 1.6;
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .about-box, .about-box.reverse {
        flex-direction: column;
        text-align: center;
    }

    .about-box-image img {
        max-width: 90%;
        margin: 0 auto 15px auto;
    }
}

/***********BRAND*******/

.brand.container {
  padding:4rem 2rem;
}

.brand-item {
  text-align: center;
  margin: 0 auto;
}

.brand-item{padding-bottom:2rem;}
.brand-item h3 p {margin-bottom:0;}

h4.brand-item-desc{ font-size: 1.2rem; color:var(--color-dark);}

.brand-item img {width:auto; max-height:480px;}

.brand-hero {
  position: relative;
  width: 100vw;
  height: 60vh;
  overflow: hidden;
  margin-left: calc(-50vw + 50%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.brand-hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
  z-index: 1;
}

.brand-hero-text {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px 40px;
}

.brand-details.container {
  padding:4rem 2rem;
}
/* Mineral Table*/
.brand-minerals {
  margin-top: 3rem;
  text-align: center;
}

.brand-minerals h3 {
  margin-bottom: 1rem;
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* Modern table styling */
.brand-mineral-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(50, 84, 128, 0.1);
  background-color: #fff;
  font-family: 'PF DIN Text Comp Pro', sans-serif;
}

/* Header */
.brand-mineral-table thead {
  background: linear-gradient(90deg, #325480, #5993c7);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.brand-mineral-table th {
  padding: 14px 16px;
  font-size: 1rem;
  text-align: center;
}

/* Body rows */
.brand-mineral-table td {
  padding: 14px 16px;
  color: #4a4a4a;
  font-size: 1rem;
  border-bottom: 1px solid #e6e6e6;
  transition: background 0.3s ease;
}

/* Hover effect */
.brand-mineral-table tbody tr:hover {
  background-color: rgba(89, 147, 199, 0.08);
}

/* Rounded corner fix for first and last cells */
.brand-mineral-table th:first-child {
  border-top-left-radius: 20px;
}
.brand-mineral-table th:last-child {
  border-top-right-radius: 20px;
}

/* Responsive stacking for mobile */
@media (max-width: 768px) {
  .brand-mineral-table,
  .brand-mineral-table thead,
  .brand-mineral-table tbody,
  .brand-mineral-table th,
  .brand-mineral-table td,
  .brand-mineral-table tr {
    display: block;
    width: 99%;
  }

  .brand-mineral-table thead {
    display: none;
  }

  .brand-mineral-table tr {
    margin-bottom: 1rem;
    border: 2px solid #5993c7;
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 10px rgba(50, 84, 128, 0.1);
  }

  .brand-mineral-table td {
    padding: 12px 16px;
    position: relative;
    text-align: right;
    display: flex;
    border: none;
  }

  .brand-mineral-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #325480;
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }

  .brand-mineral-table td:last-child {
    border-bottom: none;
  }
}



/*********** GASTRO GUIDE ***********/

.gastro-text {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 4rem 2rem 0 2rem;
    font-weight:400;font-family: 'PF DIN Text Comp Pro', sans-serif;
}


.gastro-boxes-alternate {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding:2rem 2rem 2rem 2rem;
}

.gastro-box {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.gastro-box.reverse {
    flex-direction: row-reverse;
}

.gastro-box-image img {
    max-width: 540px;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.gastro-box-content {
    flex: 1;
}

.gastro-box-content h3 {
    margin-bottom: 10px;
}

.gastro-box-content p {
    line-height: 1.6;
}

h4.gc-title{text-align: center;
    padding:2rem 2rem 2rem 2rem;}

/* Responsive for mobile */
@media (max-width: 768px) {
    .gastro-box, .gastro-box.reverse {
        flex-direction: column;
        text-align: center;
    }

    .gastro-box-image img {
        max-width: 90%;
        margin: 0 auto 15px auto;
    }
    h4.gc-title{font-size: 1.3rem;}
}

/*********** PARTNERS ***********/

.partners.container {
  padding:4rem 2rem;
}
.partners-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem 0 2rem;
  font-weight: 400;
  font-family: 'PF DIN Text Comp Pro', sans-serif;
}

/*********** SUSTAINABILITY ***********/


.sustainability-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem 0 2rem;
  font-weight: 400;
  font-family: 'PF DIN Text Comp Pro', sans-serif;
}
.sustainability-page.container {
  padding:4rem 2rem;
}

/*********** CONTACT   ***********/
.contact.container{
  padding:4rem 2rem 0 2rem;
}
.contact-content p{line-height:1.2rem;}
/*********** FAQ ***********/
.faq-section {
  padding: 0rem 2rem 4rem 2rem;
  margin: 0 auto;
  font-family: 'PF DIN Text Comp Pro', sans-serif;
  color: #325480;
}

.faq-heading {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: #325480;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* Individual FAQ item */
.faq-item {
  border: 2px solid #5993c7;
  border-radius: 16px;
  overflow: hidden;
  background: #f9fcff;
  transition: all 0.3s ease;
}

/* Question Button */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  color: #325480;
  transition: background 0.3s ease, color 0.3s ease;
}

.faq-question:hover {
  background-color: rgba(89, 147, 199, 0.1);
}

.faq-question.active {
  background-color: rgb(89 147 199 / 6%);
}

/* Plus / minus icon */
.faq-toggle {
  font-size: 1.6rem;
  transition: transform 0.3s ease;
}

.faq-question.active .faq-toggle {
  transform: rotate(45deg);
}

/* Answer panel */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 1.5rem;
  background: #fff;
}

.faq-question.active + .faq-answer {
  padding-bottom: 1rem;
}

.faq-answer p {
  margin: 1rem 0 0 0;
  line-height: 1.6;
  color: var(--color-dark);
}


/************************/
/*Post-sredi*/
/*CPT gastro guide*/
.gastro-guide-single {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}



.gastro-featured-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 25px;
}

.gastro-title {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}

.gastro-content {
}

.gastro-latest {
  border-top: 1px solid #eee;
  padding-top: 30px;
}

.gastro-latest h2 {
  text-align: center;
  margin-bottom: 25px;
}

.gastro-latest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gastro-item {
  text-align: center;
}

.gastro-item img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.gastro-item:hover img {
  transform: scale(1.03);
}

.gastro-item h3 {
  font-size: 1.1rem;
  margin: 10px 0 0;
}
/*Single-post*/
/* ===== Hero Section ===== */
.post-hero {
  position: relative;
  width: 100vw;
  height: 60vh;
  overflow: hidden;
  margin-left: calc(-50vw + 50%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: #fff;
}

.post-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.post-hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
  z-index: 1;
}

.post-hero-text {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px 40px;
}

.post-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.post-meta {
  font-size: 0.95rem;
  color: #ddd;
}

/* ===== Post Content ===== */
.post-inner.container {
  padding:  4rem 2rem;
}

.post-content {
  line-height: 1.8;
  font-size: 1.1rem;
}

/* ===== Latest Posts ===== */
.latest-posts {
  border-top: 1px solid #eee;
  padding:4rem 2rem;
}

.latest-posts h2 {
  text-align: center;
  margin-bottom: 30px;
}

.latest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.latest-item {
  text-align: center;
  transition: transform 0.3s ease;
}

.latest-item:hover {
  transform: translateY(-5px);
}

.latest-item a {
text-decoration:none;
}

.latest-item img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

.latest-item h3 {
  font-size: 1.1rem;
  margin: 0;
}
@media (max-width: 768px) {
  .latest-grid {
    grid-template-columns: 1fr;
  }
 .post-inner.container {
  padding:  3rem 1.5rem !important;
}
.latest-posts {
  padding:  3rem 2rem !important;
}
}

/*Comparison Table*/
.show-comparison-btn {
    background-color: #5993c7;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    margin-top: 10px;
}



/* ===============================
   Brands Slider — Final Full Overflow
   =============================== */

.brands-slider {
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
}

.brands-slider h2 {
text-align: center;
font-weight: 500;
padding-bottom: 1.5rem;
}

/* ===============================
   Brands Slider — Overlay Overflow
   =============================== */

.brands-slider {
  position: relative;
  padding: 2rem 0;
  overflow: hidden;
}

.slider-wrapper {
  overflow: hidden;
  width: 100%;
  padding-bottom: 2rem;
  position: relative;
}

.slider-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s ease;
}

/* Brand card: 3 cards fit exactly */
.brand-card {
  flex: 0 0 calc((90% / 3) - 1.33rem); /* 3 cards visible */
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  position: relative;
  overflow: visible;
 text-align: center;
  transition: transform 0.3s ease;
}

.brand-card img.brand-main-img {
  width: auto;
  height: 320px;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
}

.brand-card h3 {
  margin: 1rem 0 0.5rem;
  font-weight: 500;
}

/* Hover Overlay */
.brand-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.8);
  color: #fff;
  padding: 1.4rem;
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  overflow: visible;
}

.brand-card:hover .brand-hover-overlay {
  opacity: 1;
  visibility: visible;
}

.brand-hover-img {
  max-width: 100%;
  height: 160px !important;
  margin-bottom: 0.6rem;
}

.brand-hover-text {
  margin-bottom: 1rem;
  line-height: 1.4;
  text-align: left;
  font-size: 0.9rem;
}

.brand-hover-overlay .btn {
  display: block;
  background: #0a5;
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  margin: 0 auto;
}

/* Hover scale image */
.brand-card:hover img.brand-main-img {
  transform: scale(1.05);
}

/* Responsive */
@media(max-width:1024px){
  .brand-card { flex: 0 0 calc((100% / 2) - 1rem); } /* 2 cards visible */
}
@media(max-width:768px){
  .brand-card { flex: 0 0 100%; } /* 1 card visible */
}
