/*
============================================================
BAITY GROUP WEBSITE
Main stylesheet
============================================================
This file contains the reusable visual system for every page.

Sections:
1. Design tokens
2. Base / typography
3. Header & navigation
4. Buttons
5. Hero sections
6. Content sections & cards
7. Images / visual gallery
8. Forms / tables
9. Footer & social icons
10. WhatsApp button
11. Utilities & animations
12. Responsive layout
============================================================
*/

/* ==========================================================
   1. DESIGN TOKENS
   ========================================================== */
:root {
  --black: #050505;
  --black-soft: #0b0b0b;
  --white: #ffffff;
  --gold: #d4af37;
  --gold-dark: #b8960f;
  --gold-light: #f4e4b0;
  --cream: #f7f4ea;
  --muted: #6b6b6b;
  --line: #e9e6dc;
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.10);
  --radius: 22px;
  --container: 1160px;
}

/* ==========================================================
   2. BASE / TYPOGRAPHY
   ========================================================== */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Poppins:wght@500;600;700;800&display=swap");

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: #111;
  background: var(--white);
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(var(--container), 92%);
  margin: 0 auto;
}

h1,
h2,
h3 {
  margin: 0 0 18px;
  font-family: "Poppins", "Inter", sans-serif;
  line-height: 1.15;
}

p {
  margin-top: 0;
}

.gold-text {
  color: var(--gold);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: var(--gold);
  content: "";
}

/* ==========================================================
   3. HEADER & NAVIGATION
   ========================================================== */
.topbar {
  padding: 8px 0;
  color: #ddd;
  background: var(--black);
  font-size: 13px;
}

.topbar .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
}

.brand img {
    width: 75px;
    height: auto;
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand img {
    width: 75px;
    height: auto;
    display: block;
}

.brand-name {
    color: #D4AF37;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-left: 10px;
    white-space: nowrap;
}

.menu {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  font-weight: 600;
}

.menu > li {
  position: relative;
}

.menu > li > a,
.dropdown-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 78px;
  padding: 0;
  border: 0;
  color: #111;
  background: transparent;
  font-weight: 600;
}

.menu > li > a::after,
.dropdown-toggle::after {
  position: absolute;
  right: 100%;
  bottom: 18px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transition: right 0.25s ease;
}

.menu > li > a:hover::after,
.menu > li > a.active::after,
.dropdown-toggle:hover::after,
.dropdown.open .dropdown-toggle::after {
  right: 0;
}

.dropdown-arrow {
  transition: transform 0.25s ease;
}

.dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% - 10px);
  left: -15px;
  display: block;
  min-width: 220px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease;
}

.dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 11px 12px;
  border-radius: 9px;
}

.dropdown-menu a:hover {
  background: var(--cream);
  color: #111;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 8px;
  border: 0;
  background: transparent;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: #111;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================
   4. BUTTONS
   ========================================================== */
.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  overflow: hidden;
  padding: 13px 20px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition:
    color 0.35s ease,
    border-color 0.35s ease,
    transform 0.25s ease,
    box-shadow 0.35s ease;
}

.btn::before {
  position: absolute;
  z-index: -1;
  right: -25%;
  bottom: -80%;
  left: -25%;
  height: 180%;
  border-radius: 45%;
  background: var(--gold);
  content: "";
  transform: translateY(100%);
  transition: transform 0.45s ease;
}

.btn:hover::before {
  transform: translateY(0);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.20);
}

.btn-gold {
  background: var(--gold);
  color: #080808;
}

.btn-gold::before {
  background: #111;
}

.btn-gold:hover {
  color: #fff;
}

.btn-dark {
  background: #080808;
  color: #fff;
}

.btn-dark::before {
  background: var(--gold);
}

.btn-dark:hover {
  color: #080808;
}

.btn-outline {
  border-color: #222;
  background: transparent;
}

.hero-light-btn {
  border-color: #fff;
  color: #fff;
}

.hero-light-btn::before {
  background: #fff;
}

.hero-light-btn:hover {
  color: #111;
}

/* ==========================================================
   5. HERO SECTIONS
   ========================================================== */
.hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  color: #fff;
  background: var(--black);
}

.hero-slider {
  isolation: isolate;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.50)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.45));
  content: "";
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 95px 0;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 76px);
}

.hero p {
  max-width: 680px;
  color: #ddd;
  font-size: 18px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  z-index: 5;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 38px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
}

.hero-dot.active {
  background: var(--gold);
}

.division-hero {
  position: relative;
  display: flex;
  min-height: 480px;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background-position: center;
  background-size: cover;
}

.division-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.42)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.45), transparent);
  content: "";
}

.energies2 {
  background-image: url("../assets/images/energies2.npg");
}

.net-hero {
  background-image: url("../assets/images/net.svg");
}

.division-hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 80px 0;
}

.division-hero h1,
.page-hero h1 {
  font-size: clamp(40px, 5vw, 64px);
}

.division-hero p,
.page-hero p {
  max-width: 720px;
  color: #ccc;
}

.page-hero {
  padding: 90px 0;
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.18), transparent 30%),
    var(--black-soft);
}

/* ==========================================================
   6. CONTENT SECTIONS & CARDS
   ========================================================== */
.section {
  padding: 90px 0;
}

.section.alt {
  background: var(--cream);
}

.section-head {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-head h2 {
  font-size: clamp(32px, 4vw, 48px);
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 22px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.035);
}

.card.dark {
  border-color: #222;
  color: #fff;
  background: #0a0a0a;
}

.card h3 {
  font-size: 22px;
}

.card p {
  color: var(--muted);
}

.card.dark p {
  color: #bbb;
}

.icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 15px;
  color: var(--gold);
  background: #111;
  font-size: 21px;
}

.gold-icon {
  color: #111;
  background: var(--gold);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.pill {
  padding: 8px 13px;
  border-radius: 999px;
  background: #f1eee4;
  font-size: 13px;
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
}

.visual {
  overflow: hidden;
  border-radius: 28px;
  background: #111;
  box-shadow: var(--shadow);
}

.visual img {
  width: 100%;
}

.process {
  width: 100%;
  margin-top: 20px;
  border-radius: 18px;
}

.location {
  padding-left: 18px;
  border-left: 3px solid var(--gold);
}

.location strong {
  display: block;
  font-size: 20px;
}

.draw-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.draw-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.cta {
  padding: 50px;
  border-radius: 30px;
  color: #fff;
  background: #080808;
}

.cta p {
  color: #c8c8c8;
}

/* ==========================================================
   7. IMAGE / VISUAL GALLERY
   ========================================================== */
.image-showcase {
  background: #fff;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.image-card {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  border-radius: 24px;
  background: #111;
  box-shadow: var(--shadow);
}

.image-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.80), transparent 60%);
  content: "";
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-card:hover img {
  transform: scale(1.06);
}

.image-card span {
  position: absolute;
  bottom: 22px;
  left: 22px;
  z-index: 2;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
}

/* ==========================================================
   8. FORMS / TABLES
   ========================================================== */
.stat {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.stat strong {
  display: block;
  color: #111;
  font: 800 42px "Poppins";
}

.stat span {
  color: var(--muted);
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  padding: 15px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.table th {
  background: #f6f3ea;
}

.contact-card {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.contact-card .icon {
  flex: 0 0 52px;
}

.form {
  display: grid;
  gap: 16px;
}

.form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 700;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #d9d6ce;
  border-radius: 12px;
  outline: none;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  border-color: var(--gold);
}

.form textarea {
  min-height: 150px;
  resize: vertical;
}

.job {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* ==========================================================
   9. FOOTER & SOCIAL MEDIA
   ========================================================== */
.footer {
  padding: 65px 0 25px;
  color: #fff;
  background: var(--black);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 35px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 18px;
}

.footer p,
.footer a {
  color: #bbb;
  font-size: 14px;
}

.footer h3 {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer a:hover {
  color: #fff;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.social-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  color: #fff !important;
  background: linear-gradient(145deg, #1a1a1a, #050505);
  box-shadow:
    8px 8px 16px rgba(0, 0, 0, 0.55),
    -4px -4px 10px rgba(255, 255, 255, 0.04),
    inset 1px 1px 0 rgba(255, 255, 255, 0.08);
  font-weight: 800;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-7px) rotateX(8deg) rotateY(-8deg);
  box-shadow:
    10px 15px 24px rgba(0, 0, 0, 0.65),
    0 0 20px rgba(212, 175, 55, 0.16);
}

.social-facebook {
  font-family: Arial, sans-serif;
  font-size: 23px;
}

.social-instagram {
  font-size: 26px;
}

.social-linkedin {
  font-size: 17px;
}

.social-x {
  font-size: 20px;
}

.copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 45px;
  padding-top: 18px;
  border-top: 1px solid #222;
  color: #777;
  font-size: 13px;
}

/* ==========================================================
   10. WHATSAPP FLOATING BUTTON
   ========================================================== */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 17px 13px 13px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  color: #fff;
  background: #25d366;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.whatsapp-float:hover {
  color: #fff;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.30);
}

/* ==========================================================
   11. UTILITIES / ANIMATIONS
   ========================================================== */
.fade {
  animation: fadeUp 0.7s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================
   12. RESPONSIVE LAYOUT
   ========================================================== */
@media (max-width: 900px) {
  .nav-cta {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .menu {
    position: absolute;
    top: 78px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 15px 5%;
    border-bottom: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .menu.open {
    display: flex;
  }

  .menu > li > a,
  .dropdown-toggle {
    width: 100%;
    min-height: auto;
    justify-content: space-between;
    padding: 12px 0;
  }

  .menu > li > a::after,
  .dropdown-toggle::after {
    bottom: 6px;
  }

  .dropdown-menu {
    position: static;
    min-width: 0;
    padding: 0 0 0 15px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
  }

  .dropdown.open .dropdown-menu {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .split {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .image-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .topbar .inner {
    justify-content: center;
  }

  .topbar .inner span:last-child {
    display: none;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 65px 0;
  }

  .hero {
    min-height: 620px;
  }

  .hero-content {
    padding: 75px 0;
  }

  .division-hero {
    min-height: 440px;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .image-grid {
    grid-template-columns: 1fr;
  }

  .form .row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .copy {
    display: block;
  }

  .copy span {
    display: block;
    margin-top: 8px;
  }

  .whatsapp-float {
    right: 15px;
    bottom: 15px;
    padding: 12px;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float svg {
    width: 30px;
    height: 30px;
  }
}

.division-card {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    border-radius: 18px;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: flex-end;
}

/* Baity Energies background */
.energies-card {
    background-image: url("../assets/images/one.jpg");
}

/* Baity Net background */
.net-card {
    background-image: url("../assets/images/energies-baity.jpg");
}


/* Dark overlay */
.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.88),
        rgba(0, 0, 0, 0.45),
        rgba(0, 0, 0, 0.15)
    );
    z-index: 1;
}


/* Content above image */
.card-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    color: #fff;
    width: 100%;
}


/* Heading */
.division-card h3 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 12px;
}


/* Paragraph */
.division-card p {
    color: rgba(255, 255, 255, 0.92);
}


/* Pills */
.division-card .pill {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(5px);
}

