@font-face {
    font-family: 'MyCustomFont';
    src: url('../../FontAwesome.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'MyCustomFont', sans-serif;
  overflow-x: hidden;
}

/* Header */
#header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 60px;
  background-color: #111;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 1000;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color:white;
  text-decoration: none;
}
#header a {
  text-decoration: none;
  color: white;
}

.menu-btn {
  font-size: 28px;
  cursor: pointer;
}

/* Side Menu (right) */
#sideMenu {
  position: fixed;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background-color: #222;
  overflow-x: hidden;
  transition: 0.3s;
  padding-top: 60px;
  z-index: 999;
}

#sideMenu a {
  display: block;
  color: white;
  padding: 16px 24px;
  text-decoration: none;
  transition: background 0.2s;
}

#sideMenu a:hover {
  background-color: #444;
}

.close-btn {
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 36px;
  cursor: pointer;
  color: white;
}

/* Coming Soon */
.coming-soon-container {
  background: url('../../images/bg.jpg') no-repeat center center fixed;
  background-size: cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 60px;
}

.coming-soon-container h1 {
  color: white;
  font-size: 48px;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}
