/* -------- GLOBAL -------- */
* {
  box-sizing: border-box;
  max-width: 100vw;
  margin: 0;
  padding: 0;
}

body {
  background: #1e1e1e;
  color: #eaeaea;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

li {
  list-style: none;
}

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

h1 {
  font-size: clamp(28px, 4vw, 42px) !important;
}

.section {
  height: auto;
  padding-bottom: 10px;
}

.light {
  background: #1e1e1e; /* lighter dark */
  color: #eaeaea;
}

.dark {
  background: #121212; /* deep dark */
  color: #eaeaea;
}

.no-scroll {
  overflow: hidden !important;
  height: 100vh;
}

/* -------- HERO -------- */
.hero {
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  gap: 40px;
}

.container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 600px;
}

/* Hero text */
.container h1,
.container h2 {
  font-size: 60px;
  font-weight: bold;
  color: #f5f5f5;
  line-height: 1.2;
}

.container p {
  font-size: 18px;
  margin-top: 15px;
  line-height: 1.6;
  color: #d1d1d1;
  max-width: 500px;
}

.container a {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 24px;
  background-color: var(--button-color, #ff5733);
  color: white;
  border-radius: 6px;
  font-size: 16px;
  text-align: center;
  transition: background 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.container a:hover {
  background: #0056b3;
  transform: scale(1.05);
}

/* Hero image */
.me {
  flex: 1;
  max-width: 600px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.me img {
  width: 85%;
  height: auto;
  object-fit: contain;
}

/* -------- ANIMATIONS -------- */
.slide-in-left {
  animation: slide-in-left 0.6s ease-out both;
}

@keyframes slide-in-left {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.slideInRight {
  animation: slideInRight 0.8s ease-out both;
}

@keyframes slideInRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* -------- INTRO OVERLAY -------- */
.introdivoverlay {
  position: absolute;
  inset: 0;
  background-color: #1e1e1e;
  z-index: 200;
}

.IntroText {
  font-size: 7rem;
  text-align: center;
  color: white;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 1s ease-out;
  z-index: 300;
}

/* Footer */
.footer {
  background-color: #121212;
  color: #eaeaea;
  padding: 20px 40px;
  text-align: center;
  position: relative;
  font-size: 14px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: #ff6347;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ff4500;
}

/* Floating Social Icons */
.floating-socials {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: #ff6347;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease;
}

.social-icon:hover {
  background: #ff4500;
  transform: scale(1.1);
}

/* Scroll Hint */
.scroll-hint {
  position: fixed;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  color: #d1d1d1;
  font-size: 16px;
  animation: fadeUpDown 2s infinite;
  z-index: 998;
}

@keyframes fadeUpDown {
  0%,
  100% {
    transform: translate(-50%, 0);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -10px);
    opacity: 0.6;
  }
}

.FAS {
  background-color: black;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    font-size: 13px;
  }
  .footer-links {
    gap: 10px;
  }
  .social-icon {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -------- RESPONSIVE -------- */

/* Tablet */
@media (max-width: 992px) {
  .hero {
    padding: 40px;
    gap: 30px;
  }

  .container h1,
  .container h2 {
    font-size: 45px;
    text-align: center;
  }

  .container p {
    font-size: 16px;
    text-align: center;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .container a {
    font-size: 15px;
    padding: 10px 20px;
  }

  .me {
    max-width: 600px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: center;
    padding: 30px 20px;
    gap: 20px;
    text-align: center;
  }

  .container {
    max-width: 500px;
  }

  .container h1,
  .container h2 {
    font-size: 38px;
  }

  .container p {
    font-size: 15px;
  }

  .me {
    max-width: 200px;
  }

  .IntroText {
    font-size: 3rem;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .hero {
    padding: 20px 15px;
  }

  .container h1,
  .container h2 {
    font-size: 28px;
  }

  .container p {
    font-size: 14px;
  }

  .container a {
    font-size: 13px;
    padding: 8px 16px;
  }

  .me {
    max-width: 150px;
    min-width: -webkit-fill-available;
  }
  .IntroText {
    font-size: 4rem;
  }
}

.ContactSection {
  padding: 4rem 0;
  text-align: center;
}

.ContactTitle {
  margin-bottom: 2rem;
  font-family: "Inter", sans-serif;
  color: #fff;
}

.ContactContainer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* Glassmorphism card */
.ContactCard {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.65);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  transition: all 0.3s ease;
}

.ContactCard:hover {
  background-color: #ff6347;
  border-color: #ff6347;
  transform: scale(1.08);
}

/* Icons */
.ContactIcon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  transition: filter 0.3s ease;
}

.ContactCard:hover .ContactIcon {
  filter: brightness(1) invert(0); /* show original color on hover */
}

/* Responsive */
@media (max-width: 1200px) {
  .ContactSection {
    margin: 0 100px;
  }
}

@media (max-width: 900px) {
  .ContactSection {
    margin: 0 50px;
  }
}

@media (max-width: 600px) {
  .ContactSection {
    margin: 0 20px;
  }

  .ContactCard {
    width: 100px;
    height: 100px;
  }

  .ContactIcon {
    width: 50px;
    height: 50px;
  }
}
