/* ================================================= */
/* LADY RAVENWAKE MASTER STYLESHEET                  */
/* Save as: style.css                                */
/* ================================================= */

/* ========================= */
/* GLOBAL                    */
/* ========================= */

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;

  background:
  radial-gradient(circle at top left, #1f1f1f 0%, #0b0b0b 100%);

  color: #f5f5f5;

  font-family: "Lato", sans-serif;

  overflow-x: hidden;
}

/* ========================= */
/* TYPOGRAPHY                */
/* ========================= */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Orbitron", sans-serif;
  letter-spacing: 2px;
}

h1 {
  font-size: 52px;
}

h2 {
  font-size: 38px;
}

h3 {
  font-size: 24px;
}

p {
  line-height: 1.8;
  color: #cccccc;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

/* ========================= */
/* COLORS                    */
/* ========================= */

.accent {
  color: #ff0055;
}

.secondary {
  color: #888;
}

/* ========================= */
/* NAVBAR                    */
/* ========================= */

.navbar-glass {
  background: rgba(0,0,0,0.85);

  backdrop-filter: blur(10px);

  border-bottom:
  1px solid rgba(255,255,255,0.08);
}

.w3-bar .w3-button {
  color: white;
  transition: 0.3s;
}

.w3-bar .w3-button:hover {
  background: #ff0055 !important;
  color: white !important;
}

.w3-dropdown-content {
  background: #111 !important;
}

.w3-dropdown-content .w3-button:hover {
  background: #ff0055 !important;
}

/* ========================= */
/* HERO SECTION              */
/* ========================= */

.hero-img {
  width: 100%;
  height: 100vh;

  object-fit: cover;

  filter:
  brightness(40%)
  contrast(110%);
}

.hero-overlay {
  position: absolute;

  top: 50%;
  left: 50%;

  transform:
  translate(-50%, -50%);

  text-align: center;

  z-index: 2;
}

.hero-title {
  font-size: 80px;
  color: #ff0055;

  text-shadow:
  0 0 20px rgba(255,0,85,0.5);
}

.hero-subtitle {
  font-size: 24px;
  color: #ffffff;
}

.hero-button {
  margin-top: 20px;

  background: #ff0055 !important;
  border: none;

  transition: 0.3s;
}

.hero-button:hover {
  background: #ff3380 !important;

  transform: scale(1.05);
}

/* ========================= */
/* SECTION STYLING           */
/* ========================= */

.section-title {
  text-align: center;

  text-transform: uppercase;

  letter-spacing: 6px;

  margin-bottom: 20px;

  color: #ff0055;
}

.section-subtitle {
  text-align: center;

  color: #888;

  margin-bottom: 50px;
}

.custom-bg {
  background:
  linear-gradient(
  135deg,
  #111111,
  #1b1b1b
  );
}

/* ========================= */
/* PROJECT CARDS             */
/* ========================= */

.project-card {
  background: #161616;

  border:
  1px solid rgba(255,255,255,0.05);

  overflow: hidden;

  transition: 0.3s;
}

.project-card:hover {
  transform:
  translateY(-8px);

  box-shadow:
  0 15px 30px rgba(0,0,0,0.5);

  border:
  1px solid rgba(255,0,85,0.3);
}

.project-img {
  width: 100%;
  height: 240px;

  object-fit: cover;

  transition: 0.3s;
}

.project-card:hover .project-img {
  transform: scale(1.05);
}

.project-content {
  padding: 20px;
}

.project-tech {
  color: #888;
  font-size: 14px;
}

.project-button {
  background: #ff0055 !important;
  margin-top: 10px;
}

.project-button:hover {
  background: #ff3380 !important;
}

/* ========================= */
/* SKILLS SECTION            */
/* ========================= */

.skill-box {
  padding: 30px;

  transition: 0.3s;
}

.skill-box:hover {
  transform: translateY(-5px);
}

.skill-icon {
  font-size: 60px;
  color: #ff0055;

  margin-bottom: 20px;
}

/* ========================= */
/* FORMS                     */
/* ========================= */

input,
textarea {
  background: #1b1b1b !important;

  color: white !important;

  border:
  1px solid rgba(255,255,255,0.1) !important;

  transition: 0.3s;
}

input:focus,
textarea:focus {
  border:
  1px solid #ff0055 !important;

  outline: none;
}

button {
  transition: 0.3s !important;
}

button:hover {
  transform: scale(1.03);
}

/* ========================= */
/* UPDATE / DEVLOG CARDS     */
/* ========================= */

.update-card,
.devlog-card,
.download-card {
  background: #161616;

  padding: 25px;

  margin-bottom: 25px;

  border-left:
  4px solid #ff0055;

  transition: 0.3s;
}

.update-card:hover,
.devlog-card:hover,
.download-card:hover {
  transform: translateX(5px);

  background: #1d1d1d;
}

/* ========================= */
/* VIDEO SECTION             */
/* ========================= */

iframe {
  border: none;

  border-radius: 6px;

  box-shadow:
  0 10px 25px rgba(0,0,0,0.5);
}

/* ========================= */
/* FOOTER                    */
/* ========================= */

footer {
  background: #050505;

  border-top:
  1px solid rgba(255,255,255,0.08);
}

footer i {
  margin: 0 10px;

  transition: 0.3s;
}

footer i:hover {
  color: #ff0055;

  transform: scale(1.2);
}

/* ========================= */
/* SCROLLBAR                 */
/* ========================= */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #111;
}

::-webkit-scrollbar-thumb {
  background: #ff0055;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ff3380;
}

/* ========================= */
/* ANIMATIONS                */
/* ========================= */

.fade-in {
  animation: fadeIn 1s ease;
}

@keyframes fadeIn {

  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}

/* ========================= */
/* MOBILE                    */
/* ========================= */

@media screen and (max-width: 768px) {

  .hero-title {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  .project-img {
    height: 200px;
  }

  .hero-img {
    height: 80vh;
  }

}
/* ========================= */
/* PROJECT PAGES             */
/* ========================= */

.project-page {
  max-width: 900px;
  margin: auto;
  padding: 120px 20px;
  text-align: center;
  color: white;
}

.project-page h1 {
  color: #ff0055;
  font-family: "Orbitron", sans-serif;
  margin-bottom: 40px;
}

.project-banner {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  margin-bottom: 40px;
  border: 1px solid #222;
}

.project-page p {
  color: #bbb;
  line-height: 1.8;
  margin-bottom: 25px;
}