@import url("https://fonts.cdnfonts.com/css/devil-breeze");
@import url("https://fonts.cdnfonts.com/css/poppins");
@import url("https://fonts.cdnfonts.com/css/bimbo");
@import url("https://fonts.cdnfonts.com/css/cyborg-punk");
@import url("https://fonts.googleapis.com/css2?family=Sacramento&display=swap");

* {
  margin: 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
}

*::-webkit-scrollbar {
  width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  background-color: #121212;
  color: #eef8ce;
  overflow-x: hidden;
  position: relative;
}

/* 🎨 Canvas background */
.canvas {
  display: flex;
  width: 100%;
  height: 100vh;
  background: #b87420;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -2;
}

/* ✅ Layout + Sections */
.section {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.content-fit {
  width: min(1200px, 90vw);
  margin: auto;
  min-height: 100vh;
  padding-block: 10em;
}

/* 🔝 Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding-block: 1em;
  backdrop-filter: blur(20px);
  background-color: #1b1b1b11;
  background-image: repeating-linear-gradient(
    to right,
    transparent 0 500px,
    #eee1 500px 501px
  );
}

header .content-fit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: unset !important;
  padding-block: unset !important;
}

header .content-fit nav ul {
  display: flex;
  gap: 2em;
}

/* 🔠 Logo */
.logo {
  display: flex;
  align-items: center;
  font-family: "devil breeze", sans-serif;
  font-size: 2em;
  font-weight: bold;
  color: #000000;
  gap: 0em;
}

.logo-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

/* 🔡 Banner Title */
#banner .title {
  color: #000000;
  font-size: 10em;
  font-family: "cyborg punk";
  font-weight: bold;
  text-align: center;
  padding: 40px;
  position: relative;
}

#banner .title::before {
  content: attr(data-before);
  position: absolute;
  inset: 0.66em 0 0 0;
  z-index: -1;
  color: #ffffff;
}

/* 📱 Mobile Banner */
@media (max-width: 768px) {
  #banner .title {
    font-size: 4em !important;
    padding: 45px !important;
  }
}

/* 🧾 Number + Title + Paragraph */
.section .number {
  font-family: "devil breeze";
  font-size: 15em;
  font-weight: bold;
  color: rgb(0, 0, 0);
}

.section .content-fit .title {
  font-family: "devil breeze";
  font-size: 10em;
}

.para {
  color: #000000;
  font-size: large;
}

.des {
  font-weight: 5000;
}

.clcl {
  color: #000000;
  font-weight: bold;
}

/* 🔖 Intro */
#intro .content-fit {
  display: flex;
  gap: 30%;
  justify-content: space-between;
  align-items: center;
}

/* 📖 Description */
#description .content-fit {
  padding-right: 30%;
}

#description .number {
  font-size: 5em;
}

#description .title {
  font-size: 7em;
  font-weight: 500;
}

/* ☎️ Contact */
#contact .content-fit {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#contact table {
  width: min(800px, 90vw);
  font-size: 2em;
  margin: auto;
  padding-top: 2em;
}

#contact table td {
  padding-block: 0.5em;
  border-bottom: 1px dashed #445022;
}

#contact table td:nth-child(1) {
  text-align: left;
  font-weight: 500;
}

#contact table td:nth-child(2) {
  text-align: right;
  font-weight: 200;
}

#contact .sign {
  font-family: "Sacramento", cursive;
  font-size: 10em;
  color: #000000;
}

/* 🪟 3D Model Container */
#container3D {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* 🧊 Glass Card */
.table-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px;
  width: fit-content;
  margin: auto;
  color: white;
}

/* 📱 Mobile Styling */
@media screen and (max-width: 1023px) {
  #banner .title {
    font-size: 500px;
  }

  #intro .content-fit {
    flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  #banner .title {
    font-size: 75px;
    margin-left: -37px;
  }

  .section .number {
    font-size: 5em;
  }

  .section .content-fit .title {
    font-size: 2em;
  }

  #description .content-fit {
    padding-right: 0;
  }

  #contact table {
    font-size: 1em;
  }

  #contact .sign {
    font-size: 6em;
  }

  .table-card {
    padding: 1rem;
    font-size: 0.85rem;
    width: 95%;
    margin: 0 auto;
  }

  .table-card table {
    width: 100%;
    word-break: break-word;
  }

  .table-card td {
    padding: 0.4rem 0.6rem;
  }
}

/* 🍔 Hamburger Menu */
.hamburger {
  display: none;
  font-size: 2.5em;
  cursor: pointer;
  color: #ffffff;
  z-index: 999;
}

#mobileNav {
  display: none;
}

@media screen and (max-width: 767px) {
  .hamburger {
    display: block;
  }

  #mobileNav {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 70vw;
    height: 100vh;
    background-color: #080808;
    z-index: 998;
    transition: right 0.4s ease;
    padding-top: 5em;
    visibility: hidden;
  }

  #mobileNav.open {
    right: 0;
    visibility: visible;
  }

  #mobileNav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2em;
    font-size: 1.5em;
  }

  #mobileNav ul li a {
    color: #ffe343;
    text-decoration: none;
  }

  nav:not(#mobileNav) {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .hamburger {
    display: none;
  }

  nav#mobileNav {
    all: unset;
  }

  nav#mobileNav ul {
    display: flex;
    flex-direction: row;
    gap: 3em;
    font-size: 1em;
    justify-content: flex-end;
  }

  nav#mobileNav ul li a {
    color: #eef8ce;
    text-decoration: none;
    transition: color 0.3s;
  }

  nav#mobileNav ul li a:hover {
    color: #000000;
  }
}
