/* Font Face Definitions */
@font-face {
  font-family: "Dancing Script";
  src: url("Dancing_Script/DancingScript-VariableFont_wght.ttf")
    format("truetype");
  font-weight: 100 900;
  font-style: normal;
}

@font-face {
  font-family: "Dancing Script";
  src: url("Dancing_Script/static/DancingScript-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Dancing Script";
  src: url("Dancing_Script/static/DancingScript-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Dancing Script";
  src: url("Dancing_Script/static/DancingScript-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Dancing Script";
  src: url("Dancing_Script/static/DancingScript-SemiBold.ttf")
    format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Alice-Regular";
  src: url("Images/fonts/Alice-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: 'Times New Roman', Times, serif, sans-serif;
  line-height: 1.6;
  background: url('images/background.webp') no-repeat center center fixed;
  background-size: cover;
  color: #f4f4f4;
}

body::before {
  content: '';
  display: none;
  background: url('images/background.webp') no-repeat center center fixed;
  background-size: cover;
}

/* Hide scrollbar by default */
body::-webkit-scrollbar {
  width: 12px; /* Change width as needed */
}

body::-webkit-scrollbar-track {
  background: #0b0c10; /* Change to match your theme */
}

body::-webkit-scrollbar-thumb {
  background-color: #45a29e; /* Change to match your theme */
  border-radius: 10px;
  border: 3px solid #0b0c10; /* Change to match your theme */
}

body::-webkit-scrollbar-thumb:hover {
  background-color: #66fcf1; /* Change to match your theme */
}

/* Hide scrollbar on default state */
body::-webkit-scrollbar {
  opacity: 0;
  transition: opacity 0.3s;
}

/* Show scrollbar when scrolling */
body:active::-webkit-scrollbar {
  opacity: 1;
}
body:hover::-webkit-scrollbar {
  opacity: 1;
}

/* Navbar Styling */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000000;
  color: #fff;
  padding: 1rem;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.navbar .logo {
  width: 2rem;
  height: auto;
}

.navbar nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.navbar nav ul {
  list-style: none;
  display: flex;
}

.navbar nav ul li {
  margin: 0 1rem;
  position: relative;
}

.navbar nav ul li a {
  color: #848484;
  text-decoration: none;
  font-size: 1rem;
}
.navbar nav ul li:hover a {
  color: #fdfdfd;
}

/* Hamburger Menu Styling */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: transparent;
  border: none;
  width: 32px;
  height: 32px;
}
.hamburgerList {
  background-image: url(./images/icons/list.svg);
}
.hamburgerX {
  background-image: url(./images/icons/x.svg);
}

.hamburger .bar {
  width: 1.5rem;
  height: 0.2rem;
  background-color: #fff;
  margin: 0.3rem 0;
}

/* Home Section */
.home {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

.company-name {
  font-size: 6rem;
  font-style: italic;
  color: #66fcf1;
  text-shadow: 0 0 10px rgb(255, 255, 255, 0.8);
  font-family: "Dancing Script", cursive;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
  margin-top: 1rem;
}

.social-links a {
  margin: 0 1rem;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  display: flex;
  align-items: center;
}

.social-icon {
  width: 1.25rem;
  height: auto;
  margin-right: 0.5rem;
}

.separator {
  color: #fff;
  margin: 0 0.5rem;
}

/* Content Section */
.content {
  max-width: 50rem;
  margin: 6.25rem auto;
  padding: 1.25rem;
  background-color: #0b0c10;
  border-radius: 0.5rem;
  color: #f4f4f4;
  font-family: "Times New Roman", Times, serif;
  line-height: 1.6;
  text-align: left;
}

.content h1 {
  text-align: center;
  margin-bottom: 1.25rem;
}

.content a {
  color: #45a29e;
  text-decoration: none;
}

.content a:hover {
  color: #66fcf1;
}


/* Responsive Design */
@media (max-width: 610px) {
  .navbar nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .company-name {
    font-size: 5rem;
    font-style: italic;
    color: #66fcf1;
    font-family: "Dancing Script", cursive;
  }

  .navbar .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 3.75rem;
    left: 0;
    width: 100%;
    background-color: #000000;
    transition: 0.5s;
  }

  .navbar .nav-links ul {
    flex-direction: column;
    width: 100%;
  }

  .navbar .nav-links ul li {
    width: 100%;
    text-align: center;
    margin: 1rem 0;
  }

  .social-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
  }
  .social-links .separator {
    display: none;
}
}

.nav-links.open {
  display: flex;
}
