/* GENERAL */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

* {
  margin: 0;
  padding: 0;
  
}

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(120deg, #f8fafc 0%, #e0e7ef 100%);
  color: #232526;
  min-height: 100vh;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

p {
  color: rgb(85, 85, 85);
}

/* TRANSITION */

a,
.btn {
  transition: all 300ms ease;
}

/* DESKTOP NAV */

nav,
.nav-links {
  display: flex;
}

nav {
  justify-content: space-around;
  align-items: center;
  height: 12vh;
  
}

.nav-links {
  gap: 2rem;
  list-style: none;
  font-size: 1.2rem;
}

a {
  color: black;
  text-decoration: none;
  text-decoration-color: white;
}

a:hover {
  color: grey;
  text-decoration: underline;
  text-underline-offset: 1rem;
  text-decoration-color: rgb(181, 181, 181);
}

.logo {
  font-size: 2rem;
}

.logo:hover {
  cursor: default;
}

/* HAMBURGER MENU */

#hamburger-nav {
  display: none;
}

.hamburger-menu {
  position: relative;
  display: inline-block;
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 24px;
  width: 30px;
  cursor: pointer;
}

.hamburger-icon span {
  width: 100%;
  height: 2px;
  background-color: black;
  transition: all 0.3 ease-in-out;
}

.menu-links {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: white;
  width: fit-content;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3 ease-in-out;
}

.menu-links a {
  display: block;
  padding: 10px;
  text-align: center;
  font-size: 1.5rem;
  color: black;
  text-decoration: none;
  transition: all 0.3 ease-in-out;
}

.menu-links li {
  list-style: none;
}

.menu-links.open {
  max-height: 300px;
}

.hamburger-icon.open span:first-child {
  transform: rotate(45deg) translate(10px, 5px);
}

.hamburger-icon.open span:nth-child(2) {
  opacity: 0;
}

.hamburger-icon.open span:last-child {
  transform: rotate(-45deg) translate(10px, -5px);
}

.hamburger-icon span:first-child {
  transform: none;
}

.hamburger-icon span:first-child {
  opacity: 1;
}

.hamburger-icon span:first-child {
  transform: none;
}

/* SECTIONS */

section {
  padding-top: 4vh;
  height: 96vh;
  margin: 0 10rem;
  box-sizing: border-box;
  min-height: fit-content;
  animation: fadeInUp 1s ease both;
  background: none;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

.section-container {
  display: flex;
}
/* Extracurricular Section
#extracurricular {
  margin: 50px 0;
  padding: 20px;
}

.extracurricular-block {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}

.extracurricular-block.reverse {
  flex-direction: row-reverse;
}

.extracurricular-pic {
  flex: 1;
  padding: 20px;
}

.extracurricular-text {
  flex: 1;
  padding: 20px;
}

.extracurricular-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.extracurricular-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.extracurricular-text p {
  font-size: 1.2rem;
  line-height: 1.6;
}

/* Responsive Design for Extracurricular Section 
@media (max-width: 768px) {
  .extracurricular-block,
  .extracurricular-block.reverse {
    flex-direction: column;
  }
  
  .extracurricular-pic,
  .extracurricular-text {
    padding: 10px;
  }

  .extracurricular-text h2 {
    font-size: 1.5rem;
  }

  .extracurricular-text p {
    font-size: 1rem;
  }
} */
/* Extracurricular Section */
/*
#extracurricular {
  margin: 50px 0; /* Adds spacing above and below the section 
  padding: 20px;
}

/* Ensure sufficient space after Extracurricular Section 
#extracurricular + section {
  margin-top: 100px; /* Adds spacing between extracurricular and contact sections 
}

.extracurricular-block {
  display: flex;
  align-items: center;
  margin-bottom: 50px; /* Adds spacing between each block 
}

.extracurricular-block.reverse {
  flex-direction: row-reverse;
}

.extracurricular-pic {
  flex: 1;
  padding: 20px;
}

.extracurricular-text {
  flex: 1;
  padding: 20px;
}

.extracurricular-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.extracurricular-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.extracurricular-text p {
  font-size: 1.2rem;
  line-height: 1.6;
}

/* Responsive Design for Extracurricular Section 
@media (max-width: 768px) {
  .extracurricular-block,
  .extracurricular-block.reverse {
    flex-direction: column;
  }
  
  .extracurricular-pic,
  .extracurricular-text {
    padding: 10px;
  }

  .extracurricular-text h2 {
    font-size: 1.5rem;
  }

  .extracurricular-text p {
    font-size: 1rem;
  }
}*/

/* PROFILE SECTION */

#profile {
  display: flex;
  justify-content: center;
  gap: 5rem;
  height: 80vh;
}

.section__pic-container {
  display: flex;
  height: 400px;
  width: 400px;
  margin: auto 0;
}

.section__text {
  align-self: center;
  text-align: center;
}

.section__text p {
  font-weight: 600;
}

.section__text__p1 {
  text-align: center;
  animation: fadeInUp 1.2s 0.2s both;
}

.section__text__p2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.title {
  font-size: 3rem;
  text-align: center;
  background: linear-gradient(90deg, #232526 0%, #636363 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  letter-spacing: 1px;
}

#socials-container {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  gap: 1rem;
}

/* ICONS */

.icon {
  cursor: pointer;
  height: 2rem;
  transition: transform 0.3s cubic-bezier(.4,2,.6,1), filter 0.3s;
  filter: grayscale(0.1) brightness(1.1);
}

.icon:hover {
  transform: scale(1.2) rotate(-8deg);
  filter: grayscale(0) brightness(1.5);
}

/* BUTTONS */

.btn-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.btn {
  font-weight: 600;
  transition: all 300ms ease;
  padding: 1rem;
  width: 8rem;
  border-radius: 2rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(255,255,255,0.7);
  border: 1px solid #bdbdbd;
  color: #232526;
  box-shadow: 0 2px 8px rgba(59,130,246,0.08);
  transition: color 0.2s, background 0.2s, box-shadow 0.2s;
}

.btn:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  background: linear-gradient(90deg, #bdbdbd 0%, #e0e7ef 100%);
  opacity: 0.10;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s cubic-bezier(.4,2,.6,1), height 0.4s cubic-bezier(.4,2,.6,1);
  z-index: -1;
}

.btn:hover:before {
  width: 300px;
  height: 300px;
}

.btn:hover {
  color: #fff;
  background: #232526;
  box-shadow: 0 4px 24px rgba(99,102,241,0.08);
}

.btn-color-1,
.btn-color-2 {
  border: rgb(53, 53, 53) 0.1rem solid;
}

.btn-color-1:hover,
.btn-color-2:hover {
  cursor: pointer;
}

.btn-color-1,
.btn-color-2:hover {
  background: rgb(53, 53, 53);
  color: white;
}

.btn-color-1:hover {
  background: rgb(0, 0, 0);
}

.btn-color-2 {
  background: none;
}

.btn-color-2:hover {
  border: rgb(255, 255, 255) 0.1rem solid;
}

.btn-container {
  gap: 1rem;
}

/* ABOUT SECTION */

#about {
  position: relative;
}

.about-containers {
  gap: 2rem;
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.about-details-container {
  justify-content: center;
  flex-direction: column;
}

.about-containers,
.about-details-container {
  display: flex;
}

.about-pic {
  border-radius: 2rem;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.08);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(200,200,200,0.18);
  transition: transform 0.3s cubic-bezier(.4,2,.6,1), box-shadow 0.3s;
}

.about-pic:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 16px 40px 0 rgba(31, 38, 135, 0.12);
  background: rgba(245, 245, 245, 0.98);
}

.arrow {
  position: absolute;
  right: -5rem;
  bottom: 2.5rem;
}

.details-container {
  padding: 1.5rem;
  flex: 1;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.08);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(200,200,200,0.18);
  border-color: rgb(163, 163, 163);
  text-align: center;
  transition: transform 0.3s cubic-bezier(.4,2,.6,1), box-shadow 0.3s;
  border-radius: 2.5rem !important;
  color: #232526;
}

.details-container:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 16px 40px 0 rgba(31, 38, 135, 0.12);
  background: rgba(245, 245, 245, 0.98);
}

.section-container {
  gap: 4rem;
  height: 80%;
}

.section__pic-container {
  height: 400px;
  width: 400px;
  margin: auto 0;
}

/* EXPERIENCE SECTION */

#experience {
  position: relative;
}

.experience-sub-title {
  color: rgb(85, 85, 85);
  font-weight: 600;
  font-size: 1.75rem;
  margin-bottom: 2rem;
}

.experience-details-container {
  display: flex;
  justify-content: center;
  flex-direction: row;
  gap: 2rem;
}

.article-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 1.5rem;
  justify-content: center;
  max-width: 700px;
  margin: 0 auto;
}

article {
  display: flex;
  align-items: center;
  width: 11rem;
  min-width: 150px;
  justify-content: flex-start;
  gap: 0.5rem;
  background: rgba(245, 245, 245, 0.95);
  border-radius: 2rem !important;
  padding: 0.5rem 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  transition: box-shadow 0.3s, transform 0.3s cubic-bezier(.4,2,.6,1);
  color: #232526;
}

article .icon {
  cursor: default;
}

article:hover {
  box-shadow: 0 4px 24px #bdbdbd33;
  transform: scale(1.04) translateY(-4px);
  background: rgba(255, 255, 255, 1);
}

/* PROJECTS SECTION */

#projects {
  position: relative;
}

.projects-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin: 2rem 0;
}

.color-container {
  border-color: rgb(163, 163, 163);
  background: rgba(255,255,255,0.85);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.08);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(200,200,200,0.18);
  width: 300px;
  min-width: 250px;
  border-radius: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 1rem;
  transition: transform 0.3s cubic-bezier(.4,2,.6,1), box-shadow 0.3s;
  color: #232526;
}

.color-container:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 16px 40px 0 rgba(31, 38, 135, 0.12);
  background: rgba(245, 245, 245, 0.98);
}

.project-img {
  border-radius: 2rem !important;
  width: 90%;
  height: auto;
  margin-bottom: 1rem;
  transition: transform 0.4s cubic-bezier(.4,2,.6,1), box-shadow 0.3s;
  background: #f8fafc;
}

.project-img:hover {
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 0 8px 32px 0 #6366f133;
}

.project-title {
  margin: 1rem 0 0.5rem 0;
  color: black;
  text-align: center;
}

.project-btn {
  color: black;
  border-color: rgb(163, 163, 163);
}

@media screen and (max-width: 900px) {
  .experience-details-container {
    flex-direction: column;
    align-items: center;
  }
  .projects-grid {
    flex-direction: column;
    align-items: center;
  }
  .color-container {
    width: 90vw;
    min-width: unset;
  }
}

/* Extracurricular Section */
#extracurricular {
  /* position: relative; */
  padding: 2rem 0;
  margin-bottom: 8rem;
}

.extracurricular-container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top: 2rem;
}

.extracurricular-item {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.extracurricular-pic-left,
.extracurricular-pic-right {
  flex: 1;
}

.extracurricular-text-left,
.extracurricular-text-right {
  flex: 2;
  text-align: justify;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.08);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(200,200,200,0.18);
  border-radius: 2.5rem !important;
  padding: 1.5rem;
  transition: transform 0.3s cubic-bezier(.4,2,.6,1), box-shadow 0.3s;
  color: #232526;
}

.extracurricular-pic {
  border-radius: 2rem !important;
  width: 100%;
  height: auto;
}

.extracurricular-pic-left {
  order: 1;
}

.extracurricular-pic-right {
  order: 2;
}

.extracurricular-text-left {
  order: 2;
}

.extracurricular-text-right {
  order: 1;
}

.extracurricular-text-left:hover,
.extracurricular-text-right:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 16px 40px 0 rgba(31, 38, 135, 0.12);
  background: rgba(245, 245, 245, 0.98);
}

/* CONTACT */

#contact {
  /* position: relative; */
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 70vh;
  
}

.contact-info-upper-container {
  display: flex;
  justify-content: center;
  border-radius: 2rem;
  border: rgb(53, 53, 53) 0.1rem solid;
  border-color: rgb(163, 163, 163);
  background: (250, 250, 250);
  margin: 2rem auto;
  padding: 0.5rem;
}

.contact-info-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 1rem;
}

.contact-info-container p {
  font-size: larger;
}

.contact-icon {
  cursor: default;
}

.email-icon {
  height: 2.5rem;
}

/* FOOTER SECTION */

footer {
  height: 26vh;
  margin: 0 1rem;
  background: rgba(255,255,255,0.85);
  color: #636363;
  border-radius: 1.5rem 1.5rem 0 0;
}

footer p {
  text-align: center;
}

/* === COOLER PORTFOLIO ENHANCEMENTS === */

@keyframes floatPic {
  0% { transform: translateY(0); }
  100% { transform: translateY(-18px); }
}

/* Subtle floating animation for profile pic */
.section__pic-container img {
  animation: floatPic 3.5s ease-in-out infinite alternate;
  border-radius: 2.5rem !important;
  background: #f8fafc;
}

/* Add a soft border glow to active nav links */
.nav-links a:active, .nav-links a:focus {
  box-shadow: 0 2px 16px #6366f1aa;
  border-radius: 8px;
}

/* Fade in sections on scroll */
section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(.4,2,.6,1), transform 0.8s cubic-bezier(.4,2,.6,1);
  box-shadow: none;
}
section.visible {
  opacity: 1;
  transform: none;
}

/* Landing Page Styles */
.landing-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  text-align: center;
  padding: 2rem;
}

.landing-title {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: #fff;
}

.landing-subtitle {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  color: #ccc;
}

.options-container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.option-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.option-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.option-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #fff;
}

.option-description {
  color: #ccc;
  margin-bottom: 1.5rem;
}

.option-button {
  background: #4CAF50;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.option-button:hover {
  background: #45a049;
}

/* Art Page Styles */
.poetry-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.poem-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.poem-card:hover {
  transform: translateY(-5px);
}

.poem-text {
  font-style: italic;
  line-height: 1.6;
  color: #ccc;
  margin-top: 1rem;
}

.films-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.film-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.film-card:hover {
  transform: translateY(-5px);
}

.film-preview {
  margin-bottom: 1rem;
}

.film-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .landing-title {
    font-size: 2rem;
  }
  
  .landing-subtitle {
    font-size: 1.2rem;
  }

  .options-container {
    flex-direction: column;
  }

  .option-card {
    width: 100%;
    max-width: 300px;
  }

  .poetry-container,
  .films-container {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
}

/* Split Screen Landing Page */
.split-container {
  display: flex;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.split-side {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
}

.engineering-side {
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  color: #232526;
}

.art-side {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  color: #ffffff;
}

.side-content {
  text-align: center;
  max-width: 400px;
  z-index: 2;
}

.side-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.side-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.side-button {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.engineering-side .side-button {
  background: #000000;
  color: white;
}

.engineering-side .side-button:hover {
  background: #000000;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.art-side .side-button {
  background: #ffffff;
  color: #232526;
}

.art-side .side-button:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.center-images {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 0;
  z-index: 1;
}

.center-image {
  width: 300px;
  height: 300px;
  object-fit: contain;
  transition: all 0.3s ease;
  margin: 0 -75px;
}

.brain-image {
  filter: brightness(1.2) drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.heart-image {
  filter: brightness(0.8) drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

/* Hover Effects */
.engineering-side:hover {
  background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
}

.art-side:hover {
  background: linear-gradient(135deg, #333333 0%, #222222 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
  .split-container {
    flex-direction: column;
  }

  .split-side {
    min-height: 50vh;
  }

  .center-images {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    justify-content: center;
    margin: 2rem 0;
  }

  .side-title {
    font-size: 2.5rem;
  }

  .side-description {
    font-size: 1.1rem;
  }
}

/* Floating Icons Styles */
.floating-icons {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-icon {
  position: absolute;
  width: 40px;
  height: 40px;
  opacity: 0.6;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
  animation: float 6s ease-in-out infinite;
}

.engineering-side .floating-icon {
  filter: drop-shadow(0 0 8px rgba(76, 175, 80, 0.3));
}

.art-side .floating-icon {
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

/* Engineering Icons Positions */
.laptop-icon { top: 15%; left: 20%; animation-delay: 0s; }
.code-icon { top: 25%; right: 25%; animation-delay: 1s; }
.robot-icon { bottom: 30%; left: 15%; animation-delay: 2s; }
.calculator-icon { bottom: 20%; right: 20%; animation-delay: 3s; }
.python-icon { top: 90%; left: 40%; animation-delay: 4s; }

/* Art Icons Positions */
.camera-icon { top: 15%; right: 20%; animation-delay: 0.5s; }
.film-icon { top: 25%; left: 25%; animation-delay: 1.5s; }
.sketchbook-icon { bottom: 30%; right: 15%; animation-delay: 2.5s; }
.pen-icon { bottom: 20%; left: 20%; animation-delay: 3.5s; }
.palette-icon { top: 40%; right: 30%; animation-delay: 4.5s; }

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

/* Update existing styles */
.split-side {
  position: relative;
  overflow: hidden;
}

.side-content {
  z-index: 2;
  position: relative;
}

/* Hover effects for icons */
.floating-icon:hover {
  opacity: 0.8;
  transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .floating-icon {
    width: 30px;
    height: 30px;
  }
}

/* LANDING PAGE STYLES */
.landing-background {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.landing-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('./assets/profile-pic.png');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 1;
}

.name-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
}

.see-through-name {
  font-size: 8rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px white;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
  margin: 0;
  mix-blend-mode: difference;
  animation: glow 2s ease-in-out infinite alternate;
}

.landing-description {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  z-index: 2;
  max-width: 400px;
  text-align: left;
}

.landing-text {
  color: white;
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 1.5rem 0;
}

@keyframes glow {
  from {
    text-shadow: 0 0 10px rgba(255,255,255,0.5),
                 0 0 20px rgba(255,255,255,0.3),
                 0 0 30px rgba(255,255,255,0.2);
  }
  to {
    text-shadow: 0 0 20px rgba(255,255,255,0.8),
                 0 0 30px rgba(255,255,255,0.6),
                 0 0 40px rgba(255,255,255,0.4);
  }
}

@media screen and (max-width: 1200px) {
  .see-through-name {
    font-size: 6rem;
  }
  
  .landing-description {
    right: 5%;
  }
}

@media screen and (max-width: 768px) {
  .see-through-name {
    font-size: 4rem;
  }
  
  .landing-description {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin-top: 2rem;
    text-align: center;
    padding: 0 2rem;
  }
}
