@charset "UTF-8";
/* CSS Document */

/* Reset */
body, html {
  height: 100%;
  margin: 0;
  font-family: "Outfit", sans-serif;
}

/* Background image container */
.bg {
  background-image: url("bg.svg");
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Logo (top-left) */
.sidenav .logo-container {
  position: absolute;
  top: 40px;
  left: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sidenav .logo-container img {
  width: 120px; /* adjust as needed */
  height: auto;
}

/* Side navigation */
.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;

  display: flex;               /* Enables centering of items */
  flex-direction: column;      /* Vertical stacking */
  align-items: center;         /* Horizontal centering */
  justify-content: center;     /* Vertical centering */
}

/* Close button positioned in same place as menu icon */
.sidenav .closebtn {
  position: absolute;
  top: 40px;
  right: 40px;
  margin: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Close icon styling */
.sidenav .closebtn img {
  width: 35px;
  height: 35px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.sidenav .closebtn img:hover {
  transform: scale(1.1);
}

/* Social media icons inside nav */
.sidenav a {
  display: block;
  padding: 12px 0;
  text-decoration: none;
  color: #818181;
  font-size: 28px;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #f1f1f1;
}

/* Copyright bottom-left */
.sidenav .copyright {
  position: absolute;
  bottom: 40px;
  left: 40px;
  font-size: 11px;
  color: #FFFFFF;
  opacity: 0.8;
	font-weight: 300;
}

/* Responsive */
@media screen and (max-height: 450px) {
  .sidenav a {
    font-size: 18px;
  }
}
