body {
  background-color: #FFFDF6;
  overflow-x: hidden;
  overflow-y: hidden;
  font-family: 'Inter';font-size: 1vw;
}

/* Fullscreen overlay */
#mobile-warning {
  display: none;
  position: fixed;
  inset: 0;
  background-color: #FFFDF6;
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

/* Centered box styled like your .screen */
.warning-box {
  width: 70vw;
  max-width: 500px;
  background-color: #FFFDF6;
  border: 3px solid black;
  border-radius: 13px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

/* Top bar styled like .screen-top-edge */
.warning-top-edge {
  background-color: #95D5B2;
  border-bottom: 3px solid black;
  height: 50px;
  display: flex;
  align-items: center;
  padding-left: 1rem;
  font-weight: 900;
  font-size: 1.2rem;
}

/* Message area styled like your content sections */
.warning-content {
  padding: 2rem;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.5rem;
  color: black;
  font-weight: 500;
}

/* Trigger overlay on smaller screens */
@media screen and (max-width: 1000px) {
  #mobile-warning {
    display: flex;
  }

  /* Hide the rest of the site */
  body > *:not(#mobile-warning) {
    display: none;
  }
}

.screen {
    border-color: black;
    border-style: solid;
    border-radius: 13px;
    width: 60vw;
    height: 68vh;
    background-color: #FFFDF6;
    position: absolute;
    top: 16vh;
    left: 20vw;
    overflow: hidden;
}

.screen-top-edge {
    background-color: #95D5B2;
    width: 100%;
    height: 8%;
    position: absolute;
    top: 0;
    border-bottom-style: solid;
    border-bottom-color: black;
    display: flex;
    align-items: center;
    padding-left: 1vw;
    font-weight: 900
}

.hide {
    visibility: hidden;
}

/*CSS for Home Tab*/
.home-screen {
    width: 100%;
    height: 92%;
    position: absolute;
    bottom: 0;
    background-color: #FFFDF6;
    border-top-style: solid;
    border-top-color: black;
}

#home-content {
    margin-top: 2%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 5%;
}

.intro-rectangles {
    background-color: #D8F3DC;
    width: 15vw;
    padding: 0.7vw;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    border-color: #123524;
    border-style: solid;
    border-width: 2px;
    white-space: nowrap;
    font-size: 1vw;
}

.nav-column {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    width: 5vw;
}

.nav-column a:hover {
    transform: scale(1.2, 1.2)
}


/* CSS FOR PANELS*/
.close-btn {
    cursor: pointer;
    user-select: none;
    padding: 4px;
}

.close-btn:hover {
    background-color:#D8F3DC;
}


/* CSS for about me panel*/
#about-me-panel {
    width: 50vw;
    background-color:#FFFDF6;
    border-style: solid;
    border-color: black;
    border-radius: 10px;
    display: none;
    pointer-events: auto;
    z-index: 200;
    position: fixed;
    overflow: hidden;
}

#about-me-header {
    background-color:#95D5B2;
    border-bottom-style: solid;
    border-bottom-color: black;
    padding: 1.5vh;
    height: 2vh;
    cursor: grab;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 900;
    position: relative;
    width: 100%;
    top: 0;
}

.about-me-wrapper {
    margin: 1vw;
}



/* CSS for experiences panel*/
#experiences-panel {
    width: 55vw;
    background-color:#FFFDF6;
    border-style: solid;
    border-color: black;
    border-radius: 10px;
    display: none;
    pointer-events: auto;
    z-index: 200;
    position: fixed;
    overflow: hidden;
}

#experiences-header {
    background-color:#95D5B2;
    border-bottom-style: solid;
    border-bottom-color: black;
    padding: 1.5vh;
    height: 2vh;
    cursor: grab;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 900;
    position: relative;
    width: 100%;
    top: 0;
}

.experiences-wrapper {
    margin: 1.5vw;
}

.background {
    width: 100%;
    height: 35vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1vw;
    margin-bottom: 5vh;
}

.experience-rect {
    background-color: #D8F3DC;
    border-style: solid;
    border-color: #95D5B2;
    border-radius: 15px;
    width: 25vw;
    padding: 1vh;
}

.work-logos {
    height: 5vw;
    margin-bottom: 2vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.background p {
    margin: 0;
    font-size: 0.9vw;
}

.background ul {
    font-size: 0.9vw;
}

.clubs {
    width: 100%;
    height: 18vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2vw;
    margin-top: 3vh;
}

.club-boxes {
    width: 20vw;
    height: 16vh;
    background-color: #CBF7CE;
    border-style: solid;
    border-width: 2px;
    border-radius: 10px;
    padding: 1vw;
}

.clubs p {
    margin: 0;
    font-size: 0.9vw;
}


/* CSS for projects panel*/
#projects-panel {
    width: 50vw;
    /*aspect-ratio: 10/6;*/
    height: 57vh;
    background-color:#FFFDF6;
    border-style: solid;
    border-color: black;
    border-radius: 10px;
    display: none;
    pointer-events: auto;
    z-index: 200;
    position: fixed;
    overflow: hidden;
}

#projects-header {
    background-color:#95D5B2;
    border-bottom-style: solid;
    border-bottom-color: black;
    padding: 1.5vh;
    height: 2vh;
    cursor: grab;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 900;
    position: relative;
    width: 100%;
    top: 0;
    position: relative;
}

.projects-wrapper {
    padding: 1vw;
    margin-top: 0;
    padding-top: 0;
    height: 50vh;
    overflow-y: scroll;
}

#projects {
    margin-top: 1vh;
    align-items: center;
    justify-content: center;
}

.projects-rectangles {
    width: 95%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color:#D8F3DC;
    border-radius: 7vh;
    border-style: solid;
    border-width: 1px;
    border-color:#123524;
    padding: 1%;
    padding-left: 2%;
    padding-right: 2%;
    margin-top: 3vh;
}

#projects .main-content {
    display: flex;
    gap: 3%;
}

.project-skills {
    width: 25%;
}

.skill-bubble {
    background-color: #B7E4C7;
    border-style: solid;
    border-width: 2px;
    border-radius: 15px;
    width: 43%;
    text-align: center;
    font-size: 1.7vh;
    padding: 1%;
}

.project-description {
    width: 73%;
    margin-top: 0;
}

.see-more-less-btn {
    background-color: #74C69D;
    padding: 1.3%;
    border-style: solid;
    border-radius: 6px;
    border-width: 1px;
    margin-left: 48%;
}

.see-more-less-btn:hover {
    background-color:#B7E4C7;
    cursor:pointer;
}

#projects h4 {
    margin: 0;
    text-align: center;
    margin-bottom: 1vh;
}

#projects p {
    margin: 0;
}

#projects a {
    font-weight: bold; 
    text-decoration: none; 
    color:black
}

#projects a:hover {
    color:#74C69D;
    text-decoration: underline;
}


/* CSS for skills panel*/
#skills-panel {
    width: 45vw;
    background-color:#FFFDF6;
    border-style: solid;
    border-color: black;
    border-radius: 10px;
    display: none;
    pointer-events: auto;
    z-index: 200;
    position: fixed;
    overflow: hidden;
}

#skills-header {
    background-color:#95D5B2;
    border-bottom-style: solid;
    border-bottom-color: black;
    padding: 1.5vh;
    height: 2vh;
    cursor: grab;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 900;
    position: relative;
    width: 100%;
    top: 0;
}

.skills-wrapper {
    margin: 1.5vw;
}

.skills-options {
    width: 28%;
    background-color: #D8F3DC;
    border-style: solid;
    border-width: 2px;
    border-radius: 20px;
    border-color: black;
    text-align: center;
    padding: 1%;
    font-weight: bold;
}

.skills-options:hover {
    background-color: #52B788;
    color: white;
    cursor: pointer;
}

.skills-row {
    display: flex;
    gap: 2vw;
    align-items: center;
    justify-content: center;
    margin-top: 1vh;
}

.skills-rect {
    width: 5vw;
    height: 5vw;
    background-color: white;
    border-style: solid;
    border-color: #52B788;
    border-radius: 5px;
    border-width: 2px;
    box-shadow: inset 0px 0px 4px 0px #aaa;
}

.skills-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1vh;
    height: 18vh;
    width: 6vw;
    text-align: center;
}


/*CSS for contact panel*/
#contact-panel {
    width: 22vw;
    background-color:#FFFDF6;
    border-style: solid;
    border-color: black;
    border-radius: 10px;
    display: none;
    pointer-events: auto;
    z-index: 200;
    position: fixed;
    overflow: hidden;
}

#contact-header {
    background-color:#95D5B2;
    border-bottom-style: solid;
    border-bottom-color: black;
    padding: 1.5vh;
    height: 2vh;
    cursor: grab;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 900;
    position: relative;
    width: 100%;
    top: 0;
}

.contact-wrapper {
    margin: 1vw;
}

.connect-button {
    background-color:#D8F3DC;
    width: 55%;
    align-items: center;
    justify-content: space-between;
    display: flex;
    margin-left: 10%;
    border-radius: 15px;
    padding: 2% 10% 2% 10%;
    box-shadow: 5px 5px lightgray;
    margin-bottom: 2.5vh;
}

.connect-button:hover {
    transform: scale(1.1, 1.1);
}

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


/* CSS for bottom links*/
.row {
    display: flex;
    justify-content: center;
    gap: 3%;
    margin-top: 30vh;
}

.row a:hover {
    transform:scale(1.2, 1.2)
}

#bottom {
    background-color: #95D5B2;
    width: 100vw;
    height: 35vh;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}