﻿html, body {
    margin: 0;
    padding: 0;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

body {
    background: #e0e0e0;
    color: #fff;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 1rem;
}

nav {
    padding: 0.7rem;
    display: flex;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 100;
    width: fit-content;
    margin: 0;
    /* gradient */
    background: #ffffff2d; /* semi-transparent layer */
    backdrop-filter: blur(50px) saturate(150%);
    -webkit-backdrop-filter: blur(50px) saturate(150%); /* Safari support */
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3); /* “light leaking through” effect */
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.ham-menu {
    height: 35px;
    width: 35px;
    margin-left: auto;
    position: relative;
    z-index: 100;
}

.ham-menu span {
    height: 2px;
    width: 100%;
    border-radius: 25px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: .3s ease;
    z-index: 1000;
    background: #000000;
}

.ham-menu span:nth-child(1) {
    top: 25%;
}

.ham-menu span:nth-child(4) {
    top: 75%;
}

.ham-menu.active span:nth-child(1) {
    opacity: 0;
}

.ham-menu.active span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(45deg);
}

.ham-menu.active span:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.ham-menu.active span:nth-child(4) {
    opacity: 0;
}

.off-screen-menu {
    height: fit-content;
    width: 100%;
    position: fixed;
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: left;
    text-align: left;
    z-index: 10;
    box-shadow: 13px 13px 26px #bebebe, -13px -13px 26px #ffffff;
    text-align: center;
    background: #e0e0e0;
    color: #03030391;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: none;
    transform: translateY(-450px);
}

.off-screen-menu.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.off-screen-menu ul {
    font-size: 1.5rem;
    list-style: none;
    text-align: left;
    padding: 0;
}

.off-screen-menu ul li {
    margin: 30px auto;
    width: 50%;
    box-shadow: 13px 13px 26px #bebebe, -13px -13px 26px #ffffff;
    text-align: center;
    background: #e0e0e0;
    color: #03030391;
    padding: 10px;
    border-radius: 30px;
}

.actual-menu {
    display: none;
}

.off-screen-menu ul a{
    color: #000000c4;
    text-decoration: none;
}

h1 {
    font-weight: 200;
    font-size: 3rem;
    margin: 40px auto;
}

hr {
    width: 50%;
    margin: 0 auto;
}

img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.hero {
    height: 100%;
    padding: 0;
    top: 0;
    width: 100%;
}

.overlay {
    display: none;
}

.profile {
    position: relative;
    width: 90%;
    margin: 60px auto 0 auto;
    min-height: 455px;
}

.profile2 {
    display: none;
}

.circle {
    height: 30px;
    width: 30px;
    background: #fae9ca;
    position: absolute;
    z-index: 3;
    border-radius: 50%;
    animation: 3s roll infinite;
    box-shadow: 0 0 25px #00000054;
}

.circle:first-of-type {
    right: 0;
    top: 10px;
}

.circle:last-of-type {
    left: 0;
    bottom: 10px;
}

.text {
    width: fit-content;
    padding: 22px 10px;
    height: 200px;
    position: absolute;
    z-index: 1;
    background: #e0e0e0;
    box-shadow: inset 13px 13px 26px #bebebe, inset -13px -13px 26px #fff;
    border-radius: 10px;
    border-bottom-left-radius: 50px;
    opacity: 0;
    animation: 2s slide forwards;
}

.text p {
    margin: 7px;
    color: #0000005d;
}

.pfp {
    width: 80%;
    max-width: 300px;
    height: auto;
    position: absolute;
    z-index: 2;
    right: 0;
    padding: 0;
    top: 140px;
    opacity: 0;
    animation: .7s fadeIn forwards;
}

.pfp img {
    width: 100%;
    height: auto;
    right: 0;
    border-radius: 10px;
    border-top-left-radius: 50px;
    box-shadow: 0 14px 15px #00000054;
}

.name {
    width: 80%;
    border-radius: 50px;
    margin: 20px auto;
    box-shadow: 13px 13px 26px #bebebe, -13px -13px 26px #ffffff;
    text-align: center;
    background: #e0e0e0;
    color: #03030391;
    text-shadow: 0 3px 20px #00000075;
    padding: 5px 0;
}

.welcome {
    height: fit-content;
    background: url(../images/books-ls2.jpg);
    background-size: cover;
    width: 90%;
    margin: 30px auto;
    text-align: center;
    color: #fff;
    text-shadow: 0 3px 20px #00000075;
    box-shadow: 13px 13px 26px #615e5e, -13px -13px 26px #ffd7d7;
    border-radius: 50px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .5s, transform .5s;
    margin-left: auto;
    margin-right: auto;
}

.welcome.show {
    opacity: 1;
    transform: translateY(0);
}

.head {
    border-radius: inherit;
    height: 100%;
    width: 100%;
    padding: 50px 0;
    background: #0000003d;
}

.about {
    width: 95%;
    height: fit-content;
    padding: 40px 10px;
    justify-content: center;
    margin-top: 40px;
}

.writing {
    margin: 10px auto;
    padding: 10px;
    color: #000000af;
    box-shadow: 13px 13px 26px #bebebe, -13px -13px 26px #ffffff;
    text-align: center;
    border-radius: 50px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .5s, transform .5s;
}

.writing.show {
    opacity: 1;
    transform: translateY(0);
}

.writing h1 {
    margin: 0;
}

.border {
    background: #0000008f;
    position: absolute;
    z-index: 3;
}

.pic {
    margin: 0 auto 50px auto;
    width: 90%;
}

.title {
    padding: 40px 0;
    text-align: center;
    width: 100%;
    z-index: 3;
}

.title img {
    height: 60px;
    width: auto;
    margin: 0;
    margin-bottom: -10px;
    filter: drop-shadow(0 0 20px #ffffff91);
}

.title h1 {
    font-size: 2rem;
    margin: 0;
    font-weight: 200;
}

.writing {
    width: 95%;
    position: relative;
    margin: 10px auto;
}

.writing h1 {
    font-size: 2rem;
}

.writing p {
    word-spacing: 3px;
}

/* blog page */
.blog-page {
    width: 90%;
    height: fit-content;
    padding-top: 80px;
    color: #000;
    margin: 20px auto
}

.blog-page .title {
    margin: 0 auto;
    background: #e0e0e0;
    box-shadow: 13px 13px 26px #bebebe, -13px -13px 26px #fff;
	border-radius: 40px;
    border: none;
    width: 90%;
}

.story {
  display: none;
  box-shadow: inset 13px 13px 26px #bebebe, inset -13px -13px 26px #fff;
  padding: 40px 10px 3px 10px;
  margin: 20px auto;
  border-radius: 20px;
}

.story.active {
  display: block;
}

#storyLinks {
  max-height: 0;
  overflow: hidden;
  transition: all 0.6s ease-in-out;
  position: fixed;
  margin: 0;
  bottom: 60px;
  height: fit-content;
  width: 80%;
  align-self: auto;
  font-size: 1rem;
  padding: 5px 10px;
  border-radius: 20px;
  border: none;
  box-shadow: 0 0 20px #000000d5;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: #ffffffb2;
  z-index: 1000;
  left: 50%;
  transform: translateX(-50%);
}

#storyLinks.show {
  max-height: 1000px; /* Adjust if needed */
}

#storyLinks button {
  display: block;
  margin: 5px 0;
  border: none;
  box-shadow: 0 0 30px #0000008f;
  border-radius: 20px;
  height: fit-content;
  width: fit-content;
  font-size: 21px;
  padding: 5px 10px;
  color: #000000b6;
}

#storyLinks button a {
    color: #000;
    text-decoration: none;
}

#storyLinks button:hover {
  color: #ffffffce;
  background: #000000d2;
  transition: all .3s ease;
}

#storyButton {
  cursor: pointer;
  position: fixed;
  bottom: 20px;
  left: 0;
  height: fit-content;
  width: fit-content;
  font-size: 1.5rem;
  border-radius: 20px;
  color: #ffffffce;
  background: #00000052;
  transition: all .3s ease;
  box-shadow: 0 0 20px #0000008f;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  z-index: 1000;
  width: 80%;
  left: 50%;
  transform: translateX(-50%);
}

#storyButton:hover {
  color: #000000d2;
  background: #ffffffce;
  transition: all .3s ease;
}

#storyButton.open::after {
  content: "▲";  /* Up arrow when open */
  margin-left: 5px;
}

#storyButton::after {
  content: "▼"; /* Down arrow when closed */
  margin-left: 5px;
}


/* art section  */
.art {
    height: fit-content;
    position: relative;
    padding-top: 10px;
    margin: 30px auto;
    width: 95%;
    color: #000000af;
    box-shadow: 13px 13px 26px #bebebe, -13px -13px 26px #ffffff;
    background: #e0e0e0;
	border-radius: 50px;
    border: none;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .5s, transform .5s;
}

.art.show {
    opacity: 1;
    transform: translateY(0);
}

.showcase {
    position: relative;
    display: block;
    background: none;
    height: 100%;
}

.media {
    width: 90%;
    margin: 0 auto;
}

.art .title {
    margin: 20px auto;
    background: #e0e0e0;
    box-shadow: 13px 13px 26px #bebebe, -13px -13px 26px #fff;
	border-radius: 40px;
    border: none;
    width: 90%;
}

.art .title h1 {
    text-shadow: none;
}

.para {
    padding: 10px 20px;
    background: #e0e0e0;
    box-shadow: inset 13px 13px 26px #bebebe, inset -13px -13px 26px #fff;
	border-radius: 30px;
    margin: 30px auto;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .5s, transform .5s;
}

.para.show {
    opacity: 1;
    transform: translateY(0);
}

#empty {
	background: #0000006b;
	box-shadow: none;
}

.content {
    height: fit-content;
    width: 100%;
    margin-top: 30px;
    padding-top: 40px;
}

.media img {
    width: 100%;
    margin: 30px auto;
    height: auto;
}

.media video {
    margin: 0;
    width: 100%;
    margin: 30px auto;
    height: auto;
}

.launch {
    height: fit-content;
    padding: 70px 0;
    margin: 0 auto;
    background: black;
    background: radial-gradient(circle at 50% 90%, #707070, #181818, #000);
}

.launch .title {
    background: none;
    box-shadow: none;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .5s, transform .5s;
}

.launch .title.show {
    opacity: 1;
    transform: translateY(0);
}

.launch .title h1 {
    background: linear-gradient(90deg, #ffffff1c, #ffffff, #ffffffef, #ffffff1c);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.yt {
    width: 95%;
    height: fit-content;
    margin: 30px auto 0 auto;
}

.yt-video-wrapper {
    /* Create the aspect ratio container */
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio (9 / 16 * 100 = 56.25%) */
    height: 0;
    overflow: hidden;
}

.yt-video-wrapper iframe {
    /* Make the iframe fill the wrapper */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0; /* Use CSS to remove border instead of frameborder="0" */
}


.contact {
    width: 100%;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    background: #1d1d1d;
    color: #ffffff5d;
    padding-top: 80px;
}

.contact a {
    color: #ffffffe3;
    text-decoration: none;
    margin: 1px;
    display: block;
}

.contact .title {
    background: none;
    box-shadow: none;
    width: 90%;
    margin: 0 auto;
    box-shadow: 13px 13px 26px #050505, -13px -13px 26px #3a3a3a;
    border-radius: 50px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .5s, transform .5s;
}

.contact .title.show {
    opacity: 1;
    transform: translateY(0);
}

.contact .title h1 {
    text-shadow: none;
    color: #ffffff34;
    font-size: 3.5rem;
}

.get-in-touch a {
    margin-right: 5px;
}

.get-in-touch {
    width: fit-content;
    padding: 30px;
    margin: 40px auto;
    box-shadow: inset 13px 13px 26px #0e0e0e, inset -13px -13px 26px #2e2e2e, 13px 13px 50px #0e0e0e69;
    border-radius: 30px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .5s, transform .5s;
}

.get-in-touch.show {
    opacity: 1;
    transform: translateY(0);
}

.connect {
    width: fit-content;
    padding: 30px;
    margin: 40px auto;
    box-shadow: inset 13px 13px 26px #0e0e0e, inset -13px -13px 26px #2e2e2e, 13px 13px 50px #0e0e0e69;
    border-radius: 30px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .5s, transform .5s;
}

.connect.show {
    opacity: 1;
    transform: translateY(0);
}

.connect a {
    display: inline;
    opacity: 80%;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .5s, transform .5s;
    transition: all .5s ease;
}

.connect a.show {
    opacity: 1;
    transform: translateY(0);
}

.connect a:hover {
    opacity: 1;
    filter: drop-shadow(0 0 5px #e0e0e0bb);
}

.connect img {
    height: 35px;
    width: auto;
}

footer {
    margin: auto;
}

.container {
    margin: 0;
    padding: 0;
}

form {
    margin: 20px auto;
	border-radius: 40px;
    border: none;
    width: 90%;
}

.form {
    margin: 30px 0 0 0;
    color: #000000cc;
    height: fit-content;
    padding: 70px 0;
    background: linear-gradient(#e0e0e0, #e0e0e0, #e0e0e0, #e0e0e0, #e0e0e0, #e0e0e0, #e0e0e0, #e0e0e0, #e0e0e0, #1d1d1d5b, #1d1d1d);
}

.form .title {
    margin: 20px auto;
    background: #e0e0e0;
    box-shadow: 13px 13px 26px #bebebe, -13px -13px 26px #fff;
	border-radius: 40px;
    border: none;
    width: 90%;
}

.form h1 {
    font-size: 2rem;
}

.flex2 {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    width: 100%;
}

input, textarea {
    -webkit-appearance: none;
    background: #e0e0e0;
    border: none;
    height: 50px;
    text-align: center;
    box-shadow: inset 13px 10px 26px #bebebe, inset -13px -10px 26px #ffffff;
    border-radius: 30px;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

textarea {
    width: 250px;
    font-size: 1rem;
}

#name, #email {
    display: inline;
    width: 150px;
    margin: 10px auto;
    font-size: 1rem;
    padding: 0;
}

#message {
    width: 100%;
    margin: auto;
}

#submit {
    box-shadow: 13px 13px 26px #bebebe, -13px -13px 26px #ffffff;
    color: #000000bd;
    width: 150px;
    height: 50px;
    transition: all .3s ease;
    margin: 20px auto;
    right: 0;
}

#submit:hover {
    box-shadow: inset 13px 13px 26px #bebebe, inset -13px -13px 26px #ffffff, 13px 13px 26px #bebebe, -13px -13px 26px #ffffff;
}