@import "./bootstrap.min.css";
@import './animate.min.css';
@import "./size.css";
@import "./responsive.css";


@font-face {
    font-family: 'Lufga';
    src: url('../fonts/LufgaLight.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lufga';
    src: url('../fonts/LufgaRegular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lufga';
    src: url('../fonts/LufgaMedium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lufga';
    src: url('../fonts/LufgaBold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
  --background: #ffffff;
  --foreground: #171717;
  --font-primary: 'Lufga', sans-serif;
  --theme-color: #e66500;
}


body {
  /* background: var(--background); */
  /* color: var(--foreground); */
  background-color: #000;
  font-family: var(--font-primary);
}

.font-lufga {
  font-family: var(--font-lufga);
}

.animate-on-scroll {
  opacity: 0;
}

.animate__animated {
  opacity: 1;
}

.mobile{
  display: none;
}

.menu-link{
  font-size: 20px;
}

.page-content{
  padding-top: 50px;
}

.btn-warning{
  background-color: var(--theme-color);
  border: var(--theme-color);
}

.bgCircle{
  width: 450px;
  height: 450px;
  background-color: #1a1a1a;
  z-index: 0;
}

.site-footer {
    background-color: #1a1a1a; /* mainBg */
    color: white;
    padding: 60px 0 30px 0;
    font-family: 'Lufga', sans-serif; /* Assuming you have this font loaded */
}

.hover-orange:hover {
    color: #ff9800 !important; /* orangeColor */
    transition: color 0.3s ease;
}

.social-icon {
    width: 45px;
    height: 45px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #ff9800; /* orangeColor */
    border-color: #ff9800 !important; /* orangeColor */
    transform: translateY(-3px);
}

.transition-hover {
    transition: transform 0.3s ease;
}
.transition-hover:hover {
    transform: translateY(-10px); /* Moves the card up slightly on hover */
}

.swiper-wrapper {
    transition-timing-function: linear !important;
}


/* Tech Card Base Styles & Hover Effects */
.tech-card {
    background-color: #1a1a1a;
    border: 1px solid #333;
    height: 120px;
    transition: all 0.3s ease;
}

.tech-card:hover {
    border-color: #fd7e14;
    transform: translateY(-5px);
}

#contact {
  background-color: #111; /* Assuming mainBg from earlier context */
  color: white;
  padding: 80px 0;
}

/* Input Field Styles (Replacing the darkInputStyle variable) */
.dark-input {
  background-color: #1a1a1a;
  border: 1px solid #333;
  color: white;
  padding: 12px 15px;
  border-radius: 8px;
}

/* Placeholder Styles */
.dark-placeholder::placeholder { 
  color: #888 !important; 
  opacity: 1; 
}

/* Focus State */
.form-control.dark-input:focus {
  background-color: #222 !important; 
  color: white !important; 
  border-color: #fd7e14 !important; /* orangeColor */
  box-shadow: none; /* Removes default Bootstrap blue glow */
}

/* Submit Button Hover Logic */
.btn-submit {
  border-width: 1px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: transparent;
  border-color: #f8f9fa; /* outline-light color */
  color: #f8f9fa;
}

.btn-submit:hover {
  background-color: #fd7e14; /* orangeColor */
  border-color: #fd7e14;
  color: white;
}

@media (max-width: 768px) {
  .mobile{
    display: block;
  }

  .page-content{
    padding-top: 0;
  }
}

