@media (min-width: 1500px) {
  .about-section {
    justify-content: center;
  }

  .hero-section{
    padding-left:0;
    justify-content: center;
  }
}


/* Removed stray '!import' line */
:root {
  --bg-color: #FFECAD;
  --dark-theme-bg: #270637;
  --color-baby-yellow: #FFF599;
  --font-family: Inter, sans-serif;
  --color-pink: #EE6E93;
  --color-deep-yellow: #FFBB3B;
  --color-deep-deep-yellow: #FFA600;
  --color-hotpink: #f85281;
  --color-green: #A7FD65;
  --color-green-shadow: #82FF23;
  --color-light-pink-border: #FE97A1;
  --text-gradient: linear-gradient(180deg, #F85281 0%, #FFF599 124%);
}

.dark-mode {
  --bg-color: #270637;
  --color-lightmode-color: #FFECAD;
}

html
 {
  scroll-behavior: smooth;
}


body{
  background-color: var(--bg-color);
  font-family: var(--font-family);
  color: var(--color-pink);
  margin: 0;
  
}

header{
  width:100%;
  padding-top: 10px;
  padding-bottom:10px;   
  border-bottom: 6px solid var(--color-hotpink);
}

nav{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10rem;
}
nav a{
  font-size: 2rem;
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.nav-outline {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  color: transparent;
  -webkit-text-stroke: 5px var(--color-hotpink);  
  pointer-events: none;
  font-weight: 900;
}

.nav-fill {
  position: relative;
  z-index: 1;
  color: var(--bg-color);
  font-weight: 900;
}
 .dark-mode .nav-fill {
   color: var(--color-lightmode-color);
   text-shadow: 0px 3px 10px var(--color-pink);
 }

nav a:hover .nav-outline {
  display: none;
}
nav a:hover .nav-fill {
  color: var(--color-hotpink);
  text-shadow: 0px 3px 2px var(--color-deep-yellow);
}

.dark-mode nav a:hover .nav-fill {
  color: var(--color-hotpink);
  text-shadow:none;
}
.dark-mode nav a:hover .nav-outline {
  display: inline;
  -webkit-text-stroke: 5px var(--color-baby-yellow);
  text-shadow: 0px 3px 10px var(--color-deep-yellow);
}

.main-container{
  overflow: hidden;
}

.hero-section{
  padding-top:100px;
  margin:2px;
  padding-left: 50px;
  display:flex;
  flex-direction:row;
}
.section-title {
  position: relative;
  line-height: 1;
}

.dark-mode .section-title {
  text-shadow: 0px 0px 20px var(--color-pink);
}

.gradient-text {
  font-weight: 900;
  font-size: clamp(2rem, 8vw, 8rem);
  margin: 0;
  background: var(--text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  position: relative;
  z-index: 2;
}

.yellow-shadow {
  color: var(--color-deep-yellow);
  margin: 0;
  position: absolute;
  left: 0;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  user-select: none;
  font-size: clamp(2rem, 8vw, 8rem);
}


.shadow-text {
  color: black;
  margin: 0;
  position: absolute;
  top: 0.05em;
  z-index: 1;
  opacity: 0.25;
  pointer-events: none;
  user-select: none;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 8vw, 8rem);
  filter: blur(1.5px);
}

.header-button-container {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: left;
  gap: 50px;
  padding-bottom: 80px;
}

.header-button{
  background: none !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    padding: 15px;
    margin: 0 !important;
    cursor: pointer;
    appearance: none;
}
.header-button img{
  width: 100px;
  height: 100px;
}

.resume-floaty {
  background: var(--color-green);
  box-shadow: 0 0 20px var(--color-green-shadow);
  border-radius: 20px !important;
  min-width: 110px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  padding: 8px;
}
.resume-text {
  font-family: var(--font-family);
  font-weight: 900;
  font-size: 1.1rem;
  color: #55b55a;
  letter-spacing: 1px;
  margin-left: 5px;
  text-shadow: 0 0 4px var(--color-green-shadow);
}

.name-and-flower{
  display:flex;
  flex-direction:row;
  gap:130px;
}
.name p{
  padding-top:20px;
  /* padding-left:40px; */
  color: var(--color-deep-deep-yellow);
  font-size: clamp(0.5rem, 2vw, 1.3rem);
  font-weight: 900;
  

}
.main-flower-container {
  position: relative;
  width: 300px;
  height: 300px;
  margin-top: 20px;
  top: -100px;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

#leaves {
  position: absolute;
  top: -10%;
  left: 30%;
  z-index: 1;
  animation: grow 1s cubic-bezier(0.4, 0, 0.2, 1);
}

#outer-flower {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  animation: grow 1s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes grow {
  0% { transform: scale(0.4); }
  100% { transform: scale(1); }
}

@keyframes growFlower {
  0% { transform: scale(0.4) rotate(-90deg); }
  100% { transform: scale(1) rotate(0deg); }
}


#inner-flower {
  position: absolute;
  top: 25%;
  left: 25%;
  animation: growFlower 1s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 3;
}

.pink-floaty{
  position:absolute;
  border-radius:50%;
  background: radial-gradient(circle, var(--color-pink), var(--color-hotpink));
  box-shadow: 0 0 10px var(--color-hotpink);
  display:flex;
  justify-content:center;
  align-items:center;
}

.pink-floaty:hover{
  scale: 1.1;
}
.green-floaty:hover{
  scale: 1.1;
}
.yellow-floaty:hover{
  scale: 1.1;
}
.green-floaty{
  position:absolute;
  border-radius:50%;
  background-color: var(--color-green);
  background: radial-gradient(circle, var(--color-green), var(--color-green-shadow));
  box-shadow: 0 0 10px var(--color-green-shadow);
   display:flex;
  justify-content:center;
  align-items:center;
  
}

.yellow-floaty{
  position:absolute;
  border-radius:50%;
  background-color: var(--color-baby-yellow);
  background: radial-gradient(circle, var(--color-baby-yellow), var(--color-deep-yellow));
  box-shadow: 0 0 10px var(--color-deep-yellow);
   display:flex;
  justify-content:center;
  align-items:center;
  
}


.about-section {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 150px;
  margin-top: 200px;
  margin-bottom: 150px;
  padding-top: 100px;
}

.about-flex {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3vw;
  width: 100%;
  max-width: 1200px;
  justify-content: center;
}

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

.about-bee {
  position:relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-top:150px;
  padding-left:30px;
  
}

.bee-img {
  animation: float 2s ease-in-out infinite;
}
.dark-mode .about-bee img {
  filter: drop-shadow(0 0 15px var(--color-deep-yellow));
}

.about-box-wrapper {
  position: relative;
  display: inline-block; /* or flex if needed */
  width: fit-content;
}

.about-box-shadow {
  position: absolute;
  top: -30px; left: -25px;
  width: 100%; height: 100%;
  background: var(--color-deep-yellow);
  border-radius: 60px;
  border: 13px solid var(--color-light-pink-border);
  filter: blur(3px);
  z-index: 0;
  pointer-events: none;
  box-sizing: border-box;
  /* Remove padding, min-width, max-width here */
}

.about-box {
  position: relative;
  background: var(--color-baby-yellow);
  border-radius: 60px;
  border: 13px solid var(--color-light-pink-border);
  padding: 0rem 2rem;
  min-width: 340px;
  max-width: 615px;
  z-index: 1;
  box-sizing: border-box;
}

.about-text {
  font-size: 1.45rem;
  color: var(--color-pink);
  font-family: var(--font-family);
  font-weight: 700;
  text-align: left;
  line-height:2;
  text-align:center;
}
.about-yellow {
  color: var(--color-deep-yellow);
  font-weight: 700;
}

.about-content{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}


/* About Section 2 Styles */
.about-section2 {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 60px;
  gap: 150px;
  padding-bottom: 100px;
}

.about-section2 .about-box{
  width: 500px;
}
.about-section2 .about-text {
  top:30px;
  font-size: 1.5rem;
  line-height: 1.8;
  text-align: center;
}


.photo-container{
  position: relative;
  padding-right: 50px;
}

.photo-stack{
  position: relative;
  width: 500px;
  height: 420px;
}

.about-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-card-label {
  position: absolute;
  bottom: 18px;
  left: 50%;
   white-space: nowrap;
  width: fit-content; 
  transform: translateX(-50%);
  background: rgba(30, 0, 40, 0.85);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  z-index: 10;
}
.about-card:hover .about-card-label {
  opacity: 1;
}


.about-card-img {
  object-fit: cover;
  border-radius: 18px;
  margin-top: 10px;
  border-radius: 24px;
  border: 13px solid var(--color-light-pink-border);
}
.about-card-1 {
  top: -20px;
  left: -40px;
  transform: rotate(13deg);
  z-index: 3;
}
.about-card-1 .about-card-img {
  width: 200px;
  height: 180px;
}

.about-card-1:hover{
  transform: rotate(10deg);
}
.about-card-1 .about-card-img:hover{
  width: 230px;
  height: 200px;
}
.about-card-2 {
  top: 40px;
  left: 80px;
  transform: rotate(-7deg);
  z-index: 2;
}
.about-card-2 .about-card-img {
  width: 380px;
  height: 320px;
}

.about-card-2:hover{
  transform: rotate(0deg);
}
.about-card-2 .about-card-img:hover{
  width: 410px;
  height: 350px;
}

.about-card-3 {
  top: 300px;
  left:  370px;
  transform: rotate(7deg);
  z-index: 2;

}
.about-card-3 .about-card-img{
   width: 200px;
  height: 150px;
}

.about-card-3:hover{
  transform: rotate(4deg);
}
.about-card-3 .about-card-img:hover{
  width: 230px;
  height: 180px;
}

.projects-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
 /* margin-bottom: 60px; */
 margin-top: 50px;
  padding-top: 60px;
  padding-bottom: 100px;
}


.projects-container {
  display: flex;
  flex-direction: row;
  gap: 60px;
  justify-content: center;
  align-items: flex-start;
}

.projects-view {
  position: relative;
  background-color: var(--color-baby-yellow);
  background-image: url('static/cozy cat planner gif.gif');
  background-size: 105% 105%;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 70px;
  border: 13px solid var(--color-light-pink-border);
  width: 550px;
  height: 400px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 0 2rem;
  
}

.projects-desc {
  position: relative;
  background: var(--color-baby-yellow);
  border-radius: 60px;
  border: 13px solid var(--color-light-pink-border);
  width: 600px;
  height: auto;
  box-sizing: border-box;
  display: flex;
  font-weight: 700;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 2.5rem;
  justify-content: top;
  align-items: center;
  gap:20px;
}
.left-arrow-container, .right-arrow-container {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.left-arrow-container {
  left: -30px;
}

.right-arrow-container {
  right: -30px;
}

#left-arrow{
  left:-5px;
}
#left-arrow img {
  transform: rotate(180deg);
}

#right-arrow{
  left:5px;
}
.arrow {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes mini-flower {
  0% { transform: rotate(0); }
  100% { transform: rotate(360deg); }
}

.mini-flower{
  position: absolute;
  z-index: 2;
  scale:0.8;
  pointer-events: none;
  animation: mini-flower 5s ease-in-out infinite;
}

.project-title, .project-text {
  text-align:center;
}

.project-text{
  font-size: 1.2rem;
  line-height:2;
}

.project-title{
  font-size: 2rem;
  text-decoration: underline;
  font-weight: 900;
}
.project-circles{
  position:relative;
  align-items: center;
  justify-content: center;
  display:flex;
  flex-direction: row;
  top:30px;
  gap: 20px;
}
.skills-section {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;  
  justify-content: center;  
  gap: 30px;
  margin-bottom: 200px;
}

.flower-and-floaties-container{
  position: relative;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}



@keyframes floaty-random {
  0%   { transform: translateY(0) scale(1); }
  20%  { transform: translateY(-8px) scale(0.95); }
  40%  { transform: translateY(4px) scale(1.05); }
  60%  { transform: translateY(-12px) scale(0.92); }
  80%  { transform: translateY(8px) scale(1.08); }
  100% { transform: translateY(0) scale(1); }
}
#floaty-random {
  animation-name: floaty-random;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

/* Remove absolute positioning for floaties used as carousel dots */
.project-circles .pink-floaty,
.project-circles .green-floaty {
  position: static;
  margin: 0;
}
.skills-subtitle{
  font-size: 1.3rem;
  color: #322725;
  font-family: var(--font-family);
  font-weight: 700;
  text-align: center;
  top:360px;
  margin-bottom: -20px;
  position: absolute;
}
/* Skill Popup Modal Styles */
.skill-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(238, 110, 147, 0.18); /* var(--color-pink) with opacity */
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.skill-modal {
  background: var(--color-baby-yellow);
  border-radius: 40px;
  border: 8px solid var(--color-light-pink-border);
  box-shadow: 0 8px 32px rgba(238, 110, 147, 0.18);
  padding: 2.5rem 2.5rem 2rem 2.5rem;
  min-width: 320px;
  max-width: 420px;
  text-align: center;
  position: relative;
  z-index: 1001;
  font-family: var(--font-family);
}

.skill-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--color-hotpink);
  color: var(--color-baby-yellow);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: background 0.2s;
}
.skill-modal-close:hover {
  background: var(--color-deep-yellow);
  color: var(--color-hotpink);
}

.skill-modal-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 1rem;
}
.skill-modal-title {
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-pink);
  margin-bottom: 0.5rem;
}
.skill-modal-text {
  font-size: 1.1rem;
  color: var(--color-pink);
  margin-bottom: 1.2rem;
  line-height: 2;
  font-weight:700;
}

.skill-modal-cert {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1.2rem;
  background: var(--color-hotpink);
  color: var(--color-baby-yellow);
  border-radius: 20px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}
.skill-modal-cert:hover {
  background: var(--color-deep-yellow);
  color: var(--color-hotpink);
}
.skill-modal-links {
  margin-top: 0.7rem;
  margin-bottom: 0.7rem;
}
.skill-modal-link {
  color: var(--color-deep-deep-yellow) !important;
  text-decoration: underline;
  font-weight: 700;
}
.skill-modal-link:hover {
  color: var(--color-deep-yellow) !important;
}
.skill-modal-link:hover {
  color: var(--color-hotpink) !important;
  text-decoration: underline;
}

.skill-logo{
  object-fit: contain;
  display: block;
  z-index:4;
  margin:0;
  padding:0;
  filter: blur(0.7px);
}

.contact-me-section{
  margin-top: 100px;
  padding-top: 50px;
  position:relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-bottom: 30px;
  /* margin-bottom: 20px; */
  overflow: hidden;
}

.contact-flexbox{
  display: flex;
  flex-direction:row;
  align-items: center;
  justify-content: center;
  gap: 30px;
}


.contact-buttons-container {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  gap: 20px;
  height: 80px;
  font-size: 2rem;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  cursor: pointer;
   background: var(--color-hotpink);
  color: var(--color-baby-yellow);
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.3);
}

.email-btn, .linkedin-btn, .github-btn {
  background: var(--color-hotpink);
  color: var(--color-baby-yellow);
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.3);
}

.contact-btn:hover {
  background: var(--color-baby-yellow);
  color: var(--color-hotpink);
  box-shadow:
    0 5px 8px rgba(0, 0, 0, 0.3),      /* black drop shadow */
    inset 0 0 0 7px var(--color-hotpink); /* pink inset border */
}

.dark-mode .email-btn, .dark-mode .linkedin-btn, .dark-mode .github-btn {
   box-shadow: 0 3px 8px var(--color-light-pink-border);
}
/* Hover (pink) icons */
.github-btn:hover .github-icon {
  content: url('static/github pink.svg');
}
.linkedin-btn:hover .linkedin-icon {
  content: url('static/linkedin pink.svg');
}
.email-btn:hover .email-icon {
  content: url('static/email pink.svg');
} 

.dark-mode .contact-btn:hover {
  background: var(--color-baby-yellow);
  color: var(--color-hotpink);
  box-shadow:
    0 3px 8px var(--color-light-pink-border),      /* light pink drop shadow */
    inset 0 0 0 7px var(--color-hotpink); /* pink inset border */
}

@keyframes butterfly-float {
  0%   { transform: translateY(20px) rotate(0deg); }
  25%  { transform: translateX(-10px) translateY(0px) rotate(-10deg); }
  50%  { transform: translateY(-20px) rotate(-5deg); }
  75%  { transform: translateX(10px) translateY(0px) rotate(10deg); }
  100% { transform: translateY(20px) rotate(0deg); }
  
}
.butterfly{
  position:absolute;
  animation: butterfly-float 8s ease-in-out infinite;
}

.half-flower{
  position:absolute;
  overflow:hidden;
  animation: mini-flower 10s linear infinite;
}


/*MEDIA QUERIES*/
@media (max-width: 576px)  {

header nav{
  gap: 30px;
}

header nav a{
  font-size: 1.5rem;
}


.header-button-container{
  scale: 0.7;
  left: -50px;
  /* justify-content: right; */
}
.hero-section{
  margin: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding:  0;
  gap: 30px;
}
.name{
  scale:150%;
}
  
.section-title{
  text-align: center;
  position: relative;
}
.name .shadow-text {
  left: 0;
  right: 0;
  margin: 0 auto;
  width: fit-content;
  text-align: center;
  position: absolute;
}

.name .yellow-shadow {
  left: 2%;
  right: 0;
  margin: 0 auto;
  width: fit-content;
  text-align: center;
  position: absolute;
}


.name-and-flower{
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  gap:30px;
  display: flex;
}

.main-flower-container {
  
  scale: 50%;
  left:-60px;
  margin-top: 50px;
}

.about-section{
  margin-top: 10px;
  padding-top:30px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom:0px;
}

.about-bee{
  padding-top:0;
  scale:50%;
  padding-left:0;
}

.about-bee .green-floaty:nth-of-type(4) {
  top: -10% !important;
}

.about-bee .green-floaty:nth-of-type(3) {
  top: 30% !important;
  left: 5% !important;
}

.about-content{
  gap:5px;
}
.about-box-wrapper{
  scale: 70%;
}

.about-section2{
  flex-direction: column-reverse;
  gap: 0px;
  margin-top: 0px;
  margin-bottom: 0;
  padding-bottom: 0px;
}

.about-section2 .about-box{
 scale: 70%;
  width: 100%;

}

.photo-container{
  scale: 0.5;
}
  
.projects-section{
  margin-top: 0px;
  gap:0px;
  padding-top:0;
  margin-bottom:0px;
  padding-bottom: 0;
}
.projects-container{
  display: flex;
  justify-content: center;
  align-items: center;  
  flex-direction: column;
  gap:30px; 

}
.left-card{
  scale: 60%;
}

.projects-desc{
  scale: 60%;
  top: -150px;
}

.skills-section{
  margin:0;
  top: -100px;
  gap:0;

}

.flower-and-floaties-container{
 scale: 25%;
}

.skill-modal-overlay{
   scale:100%;
}

.contact-me-section{
  margin-top: 0px;
  padding-top: 20px;
  padding-bottom:50px;
  gap:30px;

}
.contact-buttons-container{
  margin-top:0;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  gap: 5px;
  height: 35px;
  font-size: 0.5rem;
  font-weight: 700;
  border-radius: 15px;
  text-decoration: none;
  cursor: pointer;
}


.half-flower,
  .butterfly {
    display: none !important;
  }

.contact-btn:hover {
  box-shadow:
    0 5px 8px rgba(0, 0, 0, 0.3),      /* black drop shadow */
    inset 0 0 0 3px var(--color-hotpink); /* pink inset border */
}
.dark-mode .contact-btn:hover {
  box-shadow:
    0 3px 8px var(--color-light-pink-border),      /* light pink drop shadow */
    inset 0 0 0 3px var(--color-hotpink); /* pink inset border */
}
.contact-icon{
  width: 15px;
  height: 15px;
}
}

@media (max-width: 425px) {
  .flower-and-floaties-container{
    scale: 30%;
  }

  .contact-icon{
  width: 15px;
  height: 15px;
}
  
}

@media (max-width: 390px) {
  .flower-and-floaties-container{
    scale: 25%;
  }

  .contact-icon{
  width: 15px;
  height: 15px;
}
  
}


@media (max-width: 320px) {

header nav{
  gap: 20px;
}

header nav a{
  font-size: 1rem;
}

.left-card{
  scale: 50%;
}

.skill-modal{
  padding: 1.5rem 1.5rem 1rem 1.5rem;
  min-width: 200px;
  max-width: 230px;
}

.contact-icon{
  width: 15px;
  height: 15px;
}
}


@media (min-width: 768px) and (max-width: 991px) {

  header nav{
    gap: 80px;
  }

  header nav a{
    font-size: 2rem;
  }

  .hero-section{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 0;
    padding: 0px;
  }
  .name-and-flower{
    padding-top: 150px;
    gap: 100px;
   scale: 100%;
   flex-direction: column-reverse;
  }
  
  .main-flower-container {
    scale:80%;
    margin-top: 30px;
    left: -50px;
  }
  .section-title{
    text-align: center;
    position: relative;
  }
  .name .shadow-text {
    left: 0;
    right: 0;
    margin: 0 auto;
    width: fit-content;
    text-align: center;
    position: absolute;
  }

  .name .yellow-shadow {
    left: 2%;
    right: 0;
    margin: 0 auto;
    width: fit-content;
    text-align: center;
    position: absolute;
  }

  .about-section{
  margin-top: 10px;
  padding-top:50px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-bottom:0px;
}

.about-bee{
  padding-top:0;
  scale:80%;
  padding-left:0;
}

.about-bee .green-floaty:nth-of-type(4) {
  top: -10% !important;
}

.about-bee .green-floaty:nth-of-type(3) {
  top: 30% !important;
  left: 5% !important;
}

.about-content{
  gap:5px;
}
.about-box-wrapper{
  scale: 80%;
}

.about-section2{
  flex-direction: column;
  gap: 100px;
  margin-top: 20px;
  margin-bottom: 30px;
  padding-bottom: 50px;  
}
  .projects-section{
  margin-top: 0px;
  gap:50px;
  padding-top: 50px;
  margin-bottom:0px;
  padding-bottom: 0;
}
.projects-container{
  display: flex;
  justify-content: center;
  align-items: center;  
  flex-direction: column;
  gap:100px; 

}
.left-card{
  scale: 100%;
}

.projects-desc{
  scale: 100%;
  top: 0px;
}
  .flower-and-floaties-container{
    scale: 50%;
  }
  
  .contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  gap: 40px;
  height: 60px;
  font-size: 2rem;
  font-weight: 700;
  border-radius: 20px;
  text-decoration: none;
  cursor: pointer;
   background: var(--color-hotpink);
  color: var(--color-baby-yellow);
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.3);
}


.half-flower,
  .butterfly {
    display: none !important;
  }

}

@media (min-width: 577px) and (max-width: 767px) {

  header nav{
    gap: 60px;
  }

  header nav a{
    font-size: 2rem;
  }

  .hero-section{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 0;
    padding: 0px;
  }
  .name-and-flower{
    padding-top: 150px;
    gap: 100px;
   scale: 100%;
   flex-direction: column-reverse;
}

  .main-flower-container{
    scale:70%;
    left: -70px;
    margin-top: 30px;
  }

  .about-section{
    gap: 100px;
    margin-top: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom:0px;
    scale: 0.8;
  }
  .about-bee{
    padding-left: 0;
    left:-20px;
  }
    .section-title{
    text-align: center;
    position: relative;
  }
  .name .shadow-text {
    left: 0;
    right: 0;
    margin: 0 auto;
    width: fit-content;
    text-align: center;
    position: absolute;
  }

  .name .yellow-shadow {
    left: 2%;
    right: 0;
    margin: 0 auto;
    width: fit-content;
    text-align: center;
    position: absolute;
  }

  .about-section2{
  flex-direction: column-reverse;

  }

  .photo-container{
    scale: 0.8;
  }

  .projects-container{
    flex-direction: column;
     align-items: center;
    justify-content: center;
  }
  .projects-section{
    align-items: center;
    justify-content: center;
  }

  .left-card{
    scale: 90%;

  }

  .projects-desc{
    scale: 90%;
  }

  .skills-section{
    margin-bottom: 0;
    gap:0;
  }

  .flower-and-floaties-container{
    scale: 40%;
  }

  .contact-me-section{
    margin-top:0;
    gap:40px;
  }
  .contact-buttons-container{
  margin-top:0;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  gap: 8px;
  height: 40px;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;

}

.contact-icon{
  width: 15px;
  height: 15px;
}

.butterfly{
 /* display: none !important; */
 left: -300px;
  }
  .half-flower{
 display: none !important;
  }
}

@media (min-width: 630px) and (max-width:991px) {
  .main-flower-container{
    scale: 90%;
  }
  .name-and-flower{
    gap: 150px;
  }
}

@media(min-width: 768px) and (max-width:991px) {
  .contact-icon{
  width: 30px;
  height: 30px;
}
.contact-btn{
  gap:15px;
}
}
@media (min-width: 830px) and (max-width:990px) {
  
  .main-flower-container{
    scale: 100%;
    left: 0px !important;
  }
  .name-and-flower{
     gap: 200px;
  }
    .skills-section{
      padding-top: 50px;
      margin-bottom: 20px;
    }
  .flower-and-floaties-container{
    scale: 60%;
  }

}


@media (min-width: 992px) and (max-width: 1200px) {

  header nav{
    gap: 100px;
  }

  header nav a{
    font-size: 2rem;
  }

  .hero-section{
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0px;
    margin: 0;
    padding-bottom: 30px;
    padding-left: 0;
  }
  .name-and-flower{
    padding-top: 150px;
    gap: 100px;
   scale: 100%;
   flex-direction: row;
}

  .main-flower-container{
    scale:70%;
    left: -90px;
  }

  .about-section{
    gap: 20px;
  }

  .about-bee{
    padding-left:0px;
  }

  .about-section2{
    gap:20px;
    padding: 20px;
  }

  .photo-container{
    scale: 0.7;
  }
  .projects-container{
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .flower-and-floaties-container{
    scale: 70%;
  }
  .contact-me-section{
    padding-bottom: 50px;
  }

  .contact-buttons-container{
    padding-bottom: 50px;
  }

  .half-flower{
    scale: 60%;
  } 

}


  @media (min-width: 1500px) {
    .main-container{
      flex-direction: column;
      margin:0;

    }
    .hero-section{
      justify-content: center;
      align-items: center;
      gap:0;
      left: 500px;   
      width:100%;   
      padding-left: 0;
      left:0;
      margin:0;
      scale: 120%;
    }
    .about-section{
      justify-content: center;
      align-items: center;
    }

    .main-flower-container {
    scale: 80%;
    left: -100px;
  }

  }



  @media (min-width: 1201px) and (max-width: 1399px) { 
  .name-and-flower{
    display: flex;
    flex-direction: row;
    gap: 200px !important;
  }

  .main-flower-container {
    scale: 80%;
    left: -70px;
  }

  .projects-container{
    scale: 90%;
    flex-direction: row;
  }


  .flower-and-floaties-container{
    scale: 80%;
  }
}