/*
Theme Name: RootusFood Theme
Author: Firdose
Version: 1.0
*/

@font-face {
  font-family: "Satoshi";

  src: url("/wp-content/themes/rootusfood/assets/fonts/Satoshi-Variable.ttf")
    format("truetype");

  font-weight: 100 900;

  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Satoshi", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
}

/* HEADER */

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: white;
  padding: 14px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 42px;
}

.nav-links {
  display: flex;
  gap: 35px;
}

.nav-links a {
  color: #222;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #0d6b3c;
}

.contact-btn {
  background: #0d6b3c;
  color: white;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s;
}

.contact-btn:hover {
  background: #084d2b;
}

/* HERO */

.hero-section {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)),
    url("/wp-content/themes/rootusfood/assets/images/Hero.jpeg");
  background-size: cover;
  background-position: center;
  position: relative;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  color: white;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    rgba(0, 90, 180, 0.45),
    rgba(255, 255, 255, 0.08)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
}

.hero-badge {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  margin-bottom: 30px;
  font-size: 14px;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.08);
}

.hero-content h1 {
  font-size: 78px;
  line-height: 1.05;
  margin-bottom: 25px;
  font-weight: 700;
}

.hero-content p {
  font-size: 22px;
  line-height: 1.6;
  max-width: 760px;
  margin: auto;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #0d6b3c;
  color: white;
  padding: 18px 38px;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #084d2b;
}

.btn-secondary {
  background: white;
  color: #0d6b3c;
  padding: 18px 38px;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: #f3f3f3;
}

/* FOOTER */

footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 40px 20px;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 56px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}
