
  @import url("https://use.typekit.net/yys0lbz.css");

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "gelica", sans-serif;
font-weight: 400;
font-style: normal;
}

body {
  /* max-width: 1400px; */
  margin: auto;
}

/* General max width rule for all containers */
section, .connect-container, .about-wrapper, .gallery, .gallery-grid, .hero-image-wrapper, .site-header {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}



/* Header */
    .site-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 100px;
      background: white;
      position: relative;
      z-index: 100;
    }

    .logo-container {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo {
      height: 40px;
      width: 340px;
    }

    .nav-links {
      display: flex;
      gap: 40px;
    }

    .nav-links a {
      text-decoration: none;
      color: #111;
      font-size: 18px;
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: #c00;
    }

    .hamburger {
      display: none;
      font-size: 28px;
      cursor: pointer;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .site-header {
        padding: 20px;
        flex-wrap: wrap;
      }

      .logo {
        width: 240px;
      }

      .hamburger {
        display: block;
      }

      .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 20px 0;
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-top: 1px solid #ddd;
        z-index: 10;

        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.4s ease, opacity 0.4s ease;
      }

      .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
      }
    }

    @media (max-width: 393px) {
      .logo {
        width: 200px;
      }

      .nav-links a {
        font-size: 16px;
      }

      .hamburger {
        font-size: 24px;
      }

      .site-header {
        padding: 16px;
      }
    }

    html {
      scroll-behavior: smooth;
    }



/* Section Divider */
.sectiondivider {
  display: block;
  width: 92%;
  max-width: 1400px;
  margin: 40px auto;
  text-align: center;
}

@media (max-width: 700px) {
  .sectiondivider {
    max-width: 90%;
    margin: 30px auto;
  }
}

@media (max-width: 393px) {
  .sectiondivider {
    max-width: 90%;
    margin: 20px auto;
  }
}






/* Hero Section */
.hero {
  padding: 40px 0;
  display: flex;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: auto;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
  object-fit: cover;
}

/* Logo positioning */
.hero-logo {
  position: absolute;
  top: 20%;
  left: 10%;
  width: clamp(px, 3vw, 800px);
  font-size: clamp(22px, 5vw, 74px);
  height: auto;
  line-height: 1.4;
}

/* Text styling */
.hero-text {
  position: absolute;
  bottom: -10%;
  left: 5%;
  font-size: clamp(28px, 6vw, 74px);
  line-height: 1.4;
  padding: 0 10px;
  max-width: 90%;
  color: #000;
  text-wrap: balance;
}

.hero-text p {
  margin: 0;
}

.hero-text .red {
  color: #cc0000;
}

.hero-text .black {
  color: #000;
}

p .red{
    color: #cc0000;
}

#fontweight {
  font-weight: 200;
  font-style: italic;
}

#fontsize  {
    font-size: clamp(22px, 6vw, 74px);
}

/* Mobile-specific tweaks */
@media (max-width: 393px) {
  .hero-logo {
  position: absolute;
  top: 25%;
  left: 10%;
  width: clamp(140px, 3vw, 392px);
  font-size: clamp(14px, 6vw, 16px);
  height: auto;
  }

  .hero-text {
    bottom: -10%;
    left: 5%;
    text-align: left;
  }

  .hero-image {
    max-height: 400px;
  }
}





/* Lets connect section */
/* Lets connect section */
.connect {
  padding: 100px 0 20px 0;
  display: flex;
  justify-content: center;
  background: #fff;
}

.connect-container {
  display: flex;
  align-items: start;
  gap: 180px;
  flex-wrap: wrap;
  justify-content: center;
}

.connect-button {
  border: 2px solid #cc0000;
  color: #cc0000;
  padding: 12px 50px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 80px;
  transition: all 0.3s ease;
}

.arrow {
  font-size: 30px;
  margin-top: 3px;
}

.arrow img {
  height: 20px;
  width: auto;
}

.connect-description {
  max-width: 440px;
  font-size: 20px;
  color: #111;
  line-height: 1.6;
}

/* Tablet */
@media (max-width: 700px) {
  .connect {
    padding: 20px 0 20px 0;
  }

  .connect-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    justify-content: center;
  }

  .connect-button {
    font-size: 16px;
    padding: 10px 30px;
    gap: 40px;
    margin: auto;
      gap: 20px;
  }

  .arrow {
    font-size: 18px;
  }

  .connect-description {
    font-size: 18px;
  }
}

/* Mobile */
@media (max-width: 393px) {
  .connect-button {
    font-size: 14px;
    padding: 8px 24px;
    gap: 20px;
  }

  .arrow {
    font-size: 16px;
  }

  .connect-description {
    font-size: 16px;
    padding: 0 10px;
  }
}





/* About section */

.about {
  padding: 60px 0;
  text-align: center;
}

.about-wrapper {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: auto;
}

.about-image {
  width: 100%;
  border-radius: 20px;
  filter: grayscale(100%);
  object-fit: cover;
  opacity: 90%;
}

/* Responsive floating text */
.about-text {
  position: absolute;
  bottom: -22.5%;
  right: 5%;
  text-align: right;
  max-width: 50%;
  line-height: 1.6;
}

.about-text h2 {
  font-size: clamp(28px, 6vw, 74px);
  line-height: 1.2;
  margin: 0;
}

.about-text .red {
  color: #cc0000;
  font-weight: normal;
}

.about-text .black {
  color: #000;
  font-weight: normal;
}

/* Description */
.about-description {
  max-width: 460px;
  margin: 100px 60px 0;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6;
  color: #222;
  text-align: left;
  padding: 0 20px;
}


/* Small screens */
@media (max-width: 700px) {
  .about-text {
    bottom: -25%;
    right: 7%;
    max-width: 80%;
  }

  .about-text h2 {
    text-align: right;
  }

  .about-description {
  max-width: 460px;
  margin: 100px 60px 0;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6;
  color: #222;
  text-align: left;
  padding: 0 20px;
}

}

@media (max-width: 393px) {
  .about-text {
    position: static;
    margin-top: 20px;
    text-align: center;
    max-width: 100%;
  }

  .about-text h2 {
    text-align: center;
  }

  .about-description {
    padding: 0 15px;
  }
}





/* Gallery section */
.gallery {
  padding: 80px 0;
  text-align: center;
}

.gallery-title {
  font-size: 54px;
  margin-bottom: 40px;
  text-align: left;
  padding: 0 30px;
}

.gallery-title .red {
  color: #cc0000;
}

.gallery-title .black {
  color: #000;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.gallery-item img {
  width: 100%;
  border-radius: 12px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

@media (max-width: 700px) {
  .gallery-title {
    font-size: 38px;
    text-align: center;
    padding: 0 10px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 393px) {
  .gallery-title {
    font-size: 30px;
  }

  .gallery-grid {
    gap: 16px;
  }
}







/* Contact Section */
.contact-header {
  text-align: center;
  padding: 60px 20px 30px;
}

.contact-header h1 {
  font-size: 42px;
  color: #c00;
  margin-bottom: 10px;
}

.contact-header h2 {
  font-size: 36px;
  color: black;
  margin-bottom: 15px;
}

.contact-header p {
  font-size: 20px;
  color: #111;
}

.contact-header a {
  color: #111;
  text-decoration: none;
  font-size: 20px;
}

.contact-header a:hover {
  text-decoration: none;
  transform: scale(1.9);
  color: #c00;
}

@media (max-width: 700px) {
  .contact-header h1 {
    font-size: 32px;
  }

  .contact-header h2 {
    font-size: 26px;
  }

  .contact-header p,
  .contact-header a {
    font-size: 18px;
  }
}

@media (max-width: 393px) {
  .contact-header h1 {
    font-size: 28px;
  }

  .contact-header h2 {
    font-size: 22px;
  }

  .contact-header p,
  .contact-header a {
    font-size: 16px;
  }
}





/* Footer */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 40px 100px;
  max-width: 1400px;
  margin: auto;
  border-top: 1px solid #000;
  margin-right: 20px;
  margin-left: 20px;
}

.footer-left,
.footer-right {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.footer-left a {
  text-decoration: none;
  color: black;
  font-size: 20px;
  transition: color 0.3s;
}

.footer-left a:hover {
  color: #c00;
}

.footer-right img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s;
}

.footer-right img:hover {
  transform: scale(1.1);
}

.footer-copyright {
  width: 100%;
  text-align: center;
  font-size: 14px;
  color: #555;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 700px) {
  .footer {
    flex-direction: column;
    align-items: center;
    padding: 30px 40px;
    gap: 20px;
  }

  .footer-left {
    justify-content: center;
    gap: 20px;
  }

  .footer-left a {
    font-size: 18px;
  }

  .footer-right {
    justify-content: center;
    gap: 20px;
  }
}

@media (max-width: 393px) {
  .contact-header h1 {
    font-size: 28px;
  }

  .contact-header h2 {
    font-size: 24px;
  }

  .contact-header p {
    font-size: 16px;
  }

  .footer-left a {
    font-size: 16px;
  }

  .footer-right img {
    width: 24px;
    height: 24px;
  }

  .footer-copyright {
    font-size: 13px;
  }
}

.background {
  background-color: #fcf9ce;
  max-width: 1400px;
  margin: auto;
}





/* === Resume Section === */
/* === Resume Section === */
.resume-section {
  max-width: 1400px;
  margin: auto;
  background-color: #fcf9ce;
  padding: 60px 20px;
  border-radius: 20px;
  overflow: visible;
  position: relative;
}

.resume-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
}

.resume-left,
.resume-right {
  flex: 1;
  min-width: 300px;
}

.resume-title {
  font-size: 60px;
  font-weight: 500;
  margin-bottom: 30px;
}

.resume-summary p {
  font-size: 18px;
  line-height: 1.6;
  color: #111;
}

.resume-block {
  margin-bottom: 40px;
}

.resume-block h2 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #000;
}

.resume-block p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  font-weight: 200;
}

strong {
  font-weight: 500;
}

/* === Hover Animation for Skills === */
.hover-skill {
  position: relative;
  margin-bottom: 18px;
}

.hover-skill p {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(-5px);
  transition: all 0.4s ease;
  font-size: 14px;
  color: #333;
  line-height: 1.5;
  margin: 0;
}

.hover-skill:hover p {
  opacity: 1;
  max-height: 100px;
  transform: translateY(0);
  margin-top: 8px;
}

.hover-skill strong {
  cursor: pointer;
  font-weight: 500;
  color: #000;
  position: relative;
  display: inline-block;
}

.hover-skill strong::after {
  content: "*";
  font-size: 22px;
  color: #cc0000;
  margin-left: 6px;
  opacity: 0.8;
}

/* === Download Button === */
.resume-download {
  margin-top: 20px;
}

.download-btn {
  border: 2px solid #cc0000;
  color: #cc0000;
  padding: 12px 50px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  transition: all 0.3s ease;
  background-color: transparent;
}

.download-btn:hover {
  background-color: #cc0000;
  color: #fff;
  transform: scale(1.03);
}

#skills {
  margin-top: 40px;
  margin-left: 60px;
  border-left:  solid #cc0000;
  padding-left: 20px;
}

#shillsparent {
  padding-top: 10px;
}

#expand {
  padding-top: 10px;
}

/* === Responsive === */
@media (max-width: 700px) {
  .resume-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .resume-title {
    font-size: 42px;
  }

  .download-btn {
    font-size: 18px;
    padding: 10px 40px;
    gap: 40px;
  }
}

@media (max-width: 393px) {
  .resume-title {
    font-size: 36px;
  }

  .resume-summary p,
  .resume-block p {
    font-size: 16px;
  }

  .download-btn {
    font-size: 16px;
    padding: 8px 30px;
    gap: 20px;
  }
}







/* services */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 30px;
}


.services h2 {
  font-size: 60px;
  font-family: 'Gelica', serif;
  margin-top: 60px;
  padding-bottom: 40px; 
}

.service-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease forwards;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.service-card img {
  max-height: 100px;
  margin-bottom: 16px;
  padding: auto;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #111;
}

.service-card p {
  font-size: 15px;
  color: #555;
  margin-bottom: 12px;
  line-height: 1.8;
  padding: 20px 0 20px 0;
}

.order-now {
  border: 2px solid #cc0000;
  color: #cc0000;
  padding: 12px 50px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  transition: all 0.3s ease;
  background-color: transparent;
}

.order-now:hover {
  background-color: #cc0000;
  color: #fff;
  transform: scale(1.03);
}

/* Fade-up animation */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .services h2 {
    font-size: 40px;
    padding: 0 20px 30px;
    text-align: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 393px) {
  .services h2 {
    font-size: 32px;
  }

  .service-card p {
    font-size: 14px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  .order-now {
    font-size: 13px;
  }
}



/* Sticky Notes */



.full-bg-wrapper {
  width: 100%;
}

.notes-section {
  max-width: 1400px;
  margin: 40px auto;
  height: 600px;
  position: relative;
  padding: 10px 20px;
  
}


.textalign {
  text-align: center;
  padding-top: 20px;
  font-size: 20px;
}

.textalign h2 {
  color: #cc0000;
  margin-bottom: 10px;
}


.sticky-note {
  width: 280px;
  padding: 20px 24px;
  border-radius: 10px;
  background: #fffbe6;
  font-family: inherit;
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.2),
              0 2px 6px rgba(0, 0, 0, 0.2);
  border: 1px solid #e1d9b5;
  position: absolute;
}

.sticky-note.learning{
  width: 280px;
  padding: 20px 24px;
  border-radius: 10px;
  background: #ece6ff;
  font-family: inherit;
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.2),
              0 2px 6px rgba(0, 0, 0, 0.2);
  border: 1px solid #e0dbf5;
  position: absolute;
}

#learningbar {
    background: #c18ade;
}

.note-top-bar {
  height: 8px;
  width: 60px;
  background: #d8bf6e;
  border-radius: 5px;
  margin: 0 auto 10px auto;
}

.sticky-note h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.sticky-note ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.sticky-note li {
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 400;
  margin: 8px 0;
  font-size: 14px;
}

.sticky-note li.done {
  text-decoration: line-through;
  opacity: 0.6;
}

 b {
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  text-decoration: line-through;
  opacity: 0.6;
} 



/* Note positions using percentages for responsiveness */
.dream {
  top: 200px;
  left: 5%;
}

.learning {
  top: 280px;
  left: 35%;
}

.weekend {
  top: 150px;
  left: 65%;
}

/* Responsive */
/* Responsive for tablets & small laptops */
@media (max-width: 700px) {
  .sticky-note {
    position: static;
    margin: 20px auto;
    width: 90%;
  }

    .sticky-note.learning {
    position: static;
    margin: 20px auto;
    width: 90%;
  }

  .notes-section {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-size: cover;
  }
}

/* Responsive for small phones */
@media (max-width: 393px) {
  .sticky-note {
    width: 95%;
    padding: 18px;
  }

  .textalign {
    font-size: 16px;
  }

  .textalign h2 {
    font-size: 20px;
  }

  .note-top-bar {
    width: 50px;
    height: 6px;
  }
}

