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

body {
  font-family: 'Inter', sans-serif;
  background-color: #640B0D;
  color: white;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #640B0D;
  padding: 15px 40px;
  height: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-left .nav-logo {
  height: 40px;
  filter: brightness(0) invert(1);
}

.nav-center {
  display: flex;
  gap: 30px;
}

.nav-center .nav-link {
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
}

.nav-center .nav-link:hover {
  opacity: 0.8;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-btn {
  padding: 8px 24px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.2s;
}

.subscribe-btn {
  background-color: white;
  color: black;
}

.subscribe-btn:hover {
  background-color: #f0f0f0;
}

.login-btn {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

.login-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.nav-burger {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 10px;
}

.burger-a {
  font-family: 'Dalafoda', serif;
  font-size: 26px;
  color: white;
  text-decoration: none;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: white;
}

/* Main Content */
.login-container {
  flex: 1;
  background: url('../assets/login/Red-Curtain-BG.png') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 100vh;
}

.curtain-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
}

.curtain-drape {
  background-image: url('../assets/login/Curtain-Drape.png');
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 60vh;
  z-index: 2;
  background-position: center top;
  background-repeat: repeat-x;
  background-size: contain;
}

.inner-shadow-curtain {
  background-image: url('../assets/login/Inner-Shadow-Curtain.png');
  z-index: 2;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  mix-blend-mode: multiply;
  opacity: 0.6;
}

.curtain-drape-3 {
  background-image: url('../assets/login/Curtain-Drape-3.png');
  z-index: 3;
  position: fixed;
  top: 0;
  right: 0;
  left: auto;
  width: 35vw;
  height: 60vh;
  background-position: right top;
  background-repeat: no-repeat;
  background-size: contain;
}

.curtain-drape-2 {
  background-image: url('../assets/login/Curtain-Drape-2.png');
  z-index: 4;
  position: fixed;
  top: 0;
  left: 0;
  width: 35vw;
  height: 60vh;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
}

.outer-shadow-curtain {
  background-image: url('../assets/login/Outer-Shadow-Curtain.png');
  z-index: 5;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  mix-blend-mode: multiply;
  opacity: 0.45;
}

.inner-curtain-r {
  background-image: url('../assets/login/Inner-Curtain-R.png');
  z-index: 6;
  position: fixed;
  top: -50px;
  right: 0;
  left: auto;
  width: 25vw;
  height: 100vh;
  background-position: right top;
  background-repeat: no-repeat;
  background-size: contain;
}

.inner-curtain-l {
  background-image: url('../assets/login/Inner-Curtain-L.png');
  z-index: 7;
  position: fixed;
  top: -50px;
  left: 0;
  width: 25vw;
  height: 100vh;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
}

.spotlight-layer {
  background-image: url('../assets/login/spotlight.png');
  z-index: 8;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 35vw;
  height: 65vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  mix-blend-mode: screen;
  opacity: 1;
  pointer-events: none;
}

.login-box {
  z-index: 10;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 320px;
  padding: 0 20px;
}

.login-box .logo {
  width: 280px;
  margin-bottom: 12px;
}

.login-box .title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 18px;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.login-box form {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 10px;
}

.input-field {
  width: 100%;
  padding: 12px;
  font-size: 1em;
  background-color: #EDF6F9;
  border: 4px;
  text-align: center;
  color: #333;
  outline: none;
  border-radius: 4px;
}

.input-field::placeholder {
  color: #999;
  letter-spacing: 1px;
}

.forgot-password-link {
  text-align: right;
  width: 100%;
  /*margin-top: 4px;*/
  /*margin-bottom: 8px;*/
}

.forgot-password-link a {
  color: white;
  text-decoration: underline;
  font-size: 13px;
  font-weight: 400 !important;
}

.forgot-password-link a:hover {
  opacity: 0.8;
}

.confirm-btn {
  width: 100%;
  padding: 12px;
  font-size: 12px;
  font-weight: 700;
  background-color: #640B0D;
  color: white;
  border: none;
  cursor: pointer;
  letter-spacing: 1px;
  margin-top: 5px;
  transition: background-color 0.2s;
  border-radius: 4px;
}

.confirm-btn:hover {
  background-color: #4a080a;
}

/* Footer */
.footer {
  background-color: #640B0D;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 60px;
  font-size: 11px;
  line-height: 1.6;
}

.footer-left {
  flex: 1;
}

.footer-center {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-a-logo {
  font-family: 'Dalafoda', serif;
  font-size: 56px;
  margin-bottom: 5px;
  font-weight: normal;
  line-height: 1;
}

.footer-right {
  flex: 1;
  text-align: right;
}

.social-icon {
  width: 12px;
  vertical-align: middle;
  margin-left: 4px;
  filter: brightness(0) invert(1);
}

@media (max-width: 1024px) {
  .login-box .logo {
    width: 230px;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 15px 20px;
  }

  .nav-center {
    display: none;
  }

  .nav-right .nav-btn {
    display: none;
  }

  .footer {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 25px 20px;
  }

  .footer-right {
    text-align: center;
  }

  .footer-left {
    text-align: center;
  }

  .login-box .logo {
    width: 180px;
    margin-bottom: 16px;
  }

  .login-box .title {
    font-size: 14px;
    margin-bottom: 18px;
  }

  .inner-shadow-curtain {
    opacity: 0.4;
  }

  .outer-shadow-curtain {
    opacity: 0.3;
  }

  .inner-curtain-l,
  .inner-curtain-r {
    width: 35vw;
    height: 50vh;
    background-size: auto 100%;
  }

  .curtain-drape-2,
  .curtain-drape-3 {
    width: 55vw;
    height: 45vh;
  }

  .spotlight-layer {
    background-image: url('../assets/login/spotlight2.png');
    width: 100vw;
    height: 100vh;
    background-size: 100% 100%;
  }
}

@media (max-width: 480px) {
  .input-field {
    padding: 10px;
    font-size: 12px;
  }

  .confirm-btn {
    padding: 12px;
    font-size: 13px;
  }

  .inner-shadow-curtain {
    opacity: 0.3;
  }

  .outer-shadow-curtain {
    opacity: 0.2;
  }

  .inner-curtain-l,
  .inner-curtain-r {
    width: 45vw;
    height: 50vh;
    background-size: auto 100%;
  }

  .curtain-drape-2,
  .curtain-drape-3 {
    width: 75vw;
    height: 40vh;
  }

  .spotlight-layer {
    background-image: url('../assets/login/spotlight2.png');
    width: 100vw;
    height: 100vh;
    background-size: 100% 100%;
  }
}

@media (max-width: 360px) {
  .spotlight-layer {
    width: 100vw;
    height: 100vh;
  }
}