@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&display=swap');

/* Reset and base styles */
html, body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Instrument Serif", serif;
  background: #fff; /* dark greenish background */
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


/* Navbar */
.navbar {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  background: rgba(244, 244, 244, 0.98);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    background 0.3s,
    box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.12);
  border-bottom: 1.5px solid #e0e0e0;
}

.navbar.hide {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}

/* Navbar hide effect */
.navbar.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1);
}

@keyframes fadeSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 25;
}
.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none; /* So center doesn't block clicks */
}
.nav-left {
  justify-content: flex-start;
}

.nav-right {
  justify-content: flex-end;
  position: relative;
}

.nav-right a {
  color: hsl(0, 0%, 30%);
  font-family: "Inter", serif;
  font-size: 25px;
  text-decoration: none;
  transition: color 0.3s;
  margin-left: 20px;
}

.nav-right a:hover {
  color: hsl(0, 0%, 0%);
}

.nav-left a {
  margin-right: 20px;
  color: hsl(0, 0%, 0%);
  font-family: "Inter", serif;
  font-size: 25px;
  transition: color 0.3s;
  text-decoration: none;
}
.nav-left a:last-child {
  margin-right: 0;
}
.nav-left a:hover {
  color: hsl(0, 0%, 27%);
}

.nav-center .name {
  font-size: 50px;
  color: hsl(0, 0%, 20%);
  font-family: "Instrument Serif", serif;
   pointer-events: auto; /* Allow interaction if needed */
}


.menu-toggle {
  background: none;
  border: none;
  color: hsl(0, 0%, 27%);
  font-size: 30px;
  cursor: pointer;
  transition: transform 0.3s ease;
  z-index: 1001;
  font-family: "Instrument Serif", serif;
}

.dropdown-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  position: absolute;
  top: 48px;
  right: 0;
  background-color: hsl(0, 0%, 27%);
  min-width: 180px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  flex-direction: column;
  display: flex;
  transform: translateY(-10px);
  transition: opacity 0.3s, max-height 0.3s, transform 0.3s;
}
.dropdown-content.show {
  opacity: 1;
  max-height: 300px;
  transform: translateY(0);
  pointer-events: auto;
}
.dropdown-content a {
  color: hsl(40, 23%, 95%);
  padding: 15px 30px 15px 10px;
  font-size: 20px;
  transition: background 0.3s;
  text-decoration: none;
}
.dropdown-content a:hover {
  background-color: hsl(0, 0%, 20%);
}

/* About Section */
.about-section {
  min-height: 100vh; /* Full viewport height */
  width: 100vw;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url('blurry.png') center center/cover no-repeat;
  position: relative;
  z-index: 1;
}
.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.45); /* adjust for more/less white overlay */
  z-index: 2;
  pointer-events: none;
}
.about-section > * {
  position: relative;
  z-index: 3;
}
.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  max-width: 1200px;
  width: 100%;
  flex-wrap: wrap;
}
.about-content {
  flex: 1 1 50%;
  max-width: 600px;
}
.about-img {
  flex: 1 1 40%;
  display: flex;
  justify-content: flex-end;
}
.about-img img {
  width: 350px;
  max-width: 90vw;
  border-radius: 2rem;
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

/* Contact Form Styles */
/*contact section*/
.contact-section {
  width: 100vw;
  min-height: 100vh;
  margin: 0;
  padding: 40px 0;
  background: #fff;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-header h2 {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 20px;
}

.contact-header p {
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.contact-header a {
  color: #000;
  text-decoration: underline;
}

.contact-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.half {
  flex: 1 1 45%;
}

.form-group.full {
  flex: 1 1 100%;
}

.form-group label {
  font-size: 0.9rem;
  margin-bottom: 6px;
}

input[type="text"],
input[type="email"],
textarea {
  font-size: 1rem;
  border: none;
  border-bottom: 1px solid #999;
  padding: 10px 4px;
  background: transparent;
  font-family: 'Georgia', serif;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.checkbox {
  flex: 1 1 100%;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}

.checkbox input {
  margin-right: 8px;
}

.send-btn {
  margin-top: 10px;
  padding: 12px 28px;
  background-color: #cfd6cb;
  color: #000;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.send-btn:hover {
  background-color: #f8f589;
}

.send-btn span {
  margin-left: 6px;
}
.showcase,
.review,
.contact-section {
  min-height: 100vh;
  width: 100vw;
  box-sizing: border-box;
  padding-top: 100px;    /* Space for navbar */
  padding-bottom: 60px; /* Bottom space for breathing room */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-fade-in {
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4,0,0.2,1);
}
.page-fade-in.visible {
  opacity: 1;
}

/* Footer Styles */
footer {
  background-color: #f8f589;
  font-family: 'Instrument Serif', serif;
  padding: 4rem 2rem;
  color: #222;
  width: 100vw;
  box-sizing: border-box;
}
footer a {
  color: #222;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}
footer hr {
  margin: 3rem 0;
  border: none;
  border-top: 1px solid #222;
}

/* Centered white box on dark background */
.content-centered-box {
  background: #fff;
  max-width: 540px;
  margin: 32px auto;
  padding: 2.5rem 2rem;
  border-radius: 0;
  box-shadow: none;
  font-family: 'Playfair Display', serif;
  color: #222;
  font-size: 1.15rem;
  line-height: 1.7;
}

.content-centered-box h2 {
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  margin-bottom: 2rem;
  color: #222;
}

.content-centered-box p {
  margin-bottom: 1.5rem;
  font-size: 1.15rem;
  line-height: 1.7;
}

@media (max-width: 600px) {
  .content-centered-box {
    max-width: 98vw;
    padding: 1.2rem 0.7rem;
    font-size: 1rem;
  }
  .content-centered-box h2 {
    font-size: 1.5rem;
  }
}

/* Custom Cursor */
body {
  cursor: none;
}
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background: rgba(34, 34, 34, 0.8);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: background-color 0.3s ease, transform 0.15s ease;
  z-index: 9999;
}
.cursor.active {
  background-color: rgba(34, 34, 34, 0.8);
  transform: translate(-50%, -50%) scale(1.5);
}

.about-section {
  display: flex;
  align-items: center; /* Changed from flex-start */
  justify-content: center;
  min-height: 90vh;
  padding: 120px 0 40px 0;
}

.about-container {
  display: flex;
  align-items: center; /* Changed from flex-start */
  justify-content: space-between;
  gap: 3rem;
  max-width: 1200px;
  width: 100%;
  flex-wrap: nowrap;
}

.about-content {
  flex: 1 1 55%;
  max-width: 700px;
}

.about-label {
  color: black;
  font-size: 1.5rem;
  font-family: 'Inter', serif;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.about-label::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #ff6600;
  border-radius: 50%;
  margin-right: 8px;
}

.about-content h1 {
  font-size: 3rem;
  font-family: "Instrument Serif", serif;
  line-height: 1.1;
  font-weight: 200;
  margin: 0 0 2rem 0;
  color: #222;
}

.about-btn {
  display: inline-block;
  margin-top: 2.5rem;
  padding: 0.8rem 2.2rem;
  background: #dbe8db;
  color: #222;
  border: none;
  border-radius: 10px;
  font-size: 1.2rem;
  text-decoration: none;
  font-family: inherit;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.about-btn:hover {
  background: #f8f589;
}

.about-img {
  flex: 1 1 40%;
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem; /* Added for alignment */
}

.about-img img {
  width: 350px; /* Reduced from 400px for balance */
  max-width: 90vw;
  border-radius: 2rem;
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  background: #fff;
}

/* Responsive design for mobile */
@media (max-width: 900px) {

  .about-content h1 {
    font-size: 2.2rem;
    line-height: 1.3;
  }
  .about-section {
    padding-top: 90px;
  }
  .about-container {
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 2rem;
  }
  .about-img {
    justify-content: center;
    width: 100%;
    margin-top: 0; /* Remove extra margin on mobile */
  }
  .about-img img {
    width: 100%;
    max-width: 380px;
    border-radius: 16px;
    object-fit: cover;
    height: auto;
  }
  .about-content {
    max-width: 100%;
  }
}
/* === Review Content Section Styles === */
.review-content-section {
  padding: 80px 40px;
  background-color: #ffffff;
  font-family: "Instrument Serif", serif;
  color: #1a1a1a;
}

.review-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
}

.review-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 220px;
}



.review-heading {
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
  color: #222;
}

.review-right {
  flex: 3;
  min-width: 280px;
}

.review-subheading {
  font-size: 3.5rem;
  font-weight: 50;
  margin-bottom: 30px;
  margin: 20px 20px 20px 20px;
  color: #333;
}

.review-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.review-list li {
  position: relative;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  padding-left: 8px;
  margin-bottom: 20px;
  margin-top: 20px;
  margin-right: 20px;
  margin-left: 20px;
  margin-right: 40px;
  font-size: 1.3rem;
  line-height: 1.25;
  letter-spacing: 0.5px;
  color: #444;
}

.review-list li::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: #ff7e5f;
  border-radius: 50%;
}

/* Responsive layout */
@media (max-width: 768px) {
  .review-container {
    flex-direction: column;
  }

  .review-heading {
    font-size: 1.6rem;
  }

  .review-subheading {
    font-size: 1.2rem;
  }
}

/* === Professional Background Section Styles === */
.professional-background-section {
  padding: 60px 40px;
  background-color: #fff;
  font-family: "Instrument Serif", serif;

  color: #222;
}

.professional-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.professional-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 220px;
}

.professional-heading {
  font-size: 1.8rem;
  font-weight: 600;
  color: #1e1e1e;
  margin: 0;
}

.professional-right {
  flex: 3;
  min-width: 280px;
}

.professional-title {
  font-size: 2.5rem;
  font-weight: 100;
  margin-bottom: 32px;
  margin-left: 60px;
  line-height: 1.2;
  letter-spacing: 0.5px;
  color: #1a1a1a;
}

.professional-text p {
  font-size: 1.2rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #444;
  margin-left: 60px;
  margin-right: 20px;
  inline-size: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .professional-container {
    flex-direction: column;
  }

  .professional-title {
    font-size: 1.6rem;
  }

  .professional-heading {
    font-size: 1.2rem;
  }
}

.projimg {
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  background-color: #fff;
}

.projimg img {
  width: 100vw;
  height: 100vh;
  object-fit:cover;
  display: block;
  border-radius:0%;
  box-shadow: none;
}

.partnerships-section {
  padding: 6rem 2rem;
  background: #fff;
  color: #111;
  font-family: "Instrument Serif", serif;
}

.partnerships-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 4rem;
  flex-wrap: wrap;
}

.partnerships-left {
  flex: 1 1 200px;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0%;
}

.left-label {
  font-size: 2rem;
  font-weight: 600;
  color: #222;
  margin-left: 40px;
  font-family: "Instrument Serif", serif;
  margin: 0%;
}

.partnerships-right {
  flex: 3 1 600px;
}

.right-heading {
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 2rem;
  margin-left: 60px;
}

.partnerships-right p {
  font-size: 1.2rem;
  line-height: 1.25;
  margin-bottom: 1rem;
  margin-right: 20px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  margin-left: 60px;
}

.partnerships-right a {
  color: #222;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Scroll fade-in animation */
.scroll-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
}

.scroll-fade.visible {
  opacity: 1;
  transform: none;
}

/* Contact form fade/slide-in animation */
.contact-form {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
}

.contact-form.visible {
  opacity: 1;
  transform: none;
}

/* Fade-in animation for page load */
.page-fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s cubic-bezier(0.4,0,0.2,1), transform 1.2s cubic-bezier(0.4,0,0.2,1);
}
.page-fade-in.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 600px) {
  html, body {
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
  }
  .about-section,
  .contact-section,
  .review-content-section,
  .professional-background-section,
  .partnerships-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    box-sizing: border-box;
  }
  .about-container,
  .review-container,
  .professional-container,
  .partnerships-container {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box;
  }
  .about-img img,
  .projimg img {
    max-width: 100vw !important;
    width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block;
  }
  .projimg {
    width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
  }
  /* Prevent horizontal scroll from any element */
  * {
    box-sizing: border-box;
    max-width: 100vw;
  }
}

@media (max-width: 600px) {
.navbar {
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    padding: 10px 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .nav-left, .nav-center, .nav-right {
    flex: 1;
    display: flex;
    align-items: center;
  }
  .nav-left { justify-content: flex-start; }
  .nav-center { justify-content: center; }
  .nav-right { justify-content: flex-end; }
  .nav-center .name {
    font-size: 1.3rem;
    font-family: "Instrument Serif", serif;
    color: #333;
  }
  .nav-left a, .nav-right a {
    font-size: 1rem;
    color: #000;
    font-family: "Inter", sans-serif;
    margin: 0 5px;
  }

    .dropdown-content a {
  color: hsl(40, 23%, 95%);
  padding: 15px 30px 10px 10px;
  font-size: 15px;
  transition: background 0.3s;
}
.dropdown-content a:hover {
  background-color: hsl(0, 0%, 20%);
}
}

/* Media query for content container */
@media (max-width: 600px) {
  /* Content Container - Center the content and give it breathing room */
  .content-container {
      max-width: 700px;
      margin: 0 auto;
      padding: 2rem 1rem;
  }

  /* Heading Spacing */
  .content-container h2 {
      font-size: 2rem;
      margin-bottom: 1.5rem;
  }

  /* Paragraph Spacing */
  .content-container p {
      font-size: 1rem;
      line-height: 1.8;
      margin-bottom: 1.5rem;
  }

  /* List Styling - Clean dot style */
  .content-container ul {
      list-style-type: disc;
      margin-left: 1.5rem;
      margin-bottom: 1.5rem;
  }

  .content-container ul li {
      margin-bottom: 1rem;
      line-height: 1.7;
  }
}

/* === Section Centered Box Styles === */
.section-centered-box {
  background: #fff;
  max-width: 540px;
  margin: 32px auto;
  padding: 2.5rem 2rem;
  border-radius: 0;
  box-shadow: none;
  font-family: 'Playfair Display', serif;
  color: #222;
  font-size: 1.15rem;
  line-height: 1.7;
}

.section-centered-box h2,
.section-centered-box h1 {
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  margin-bottom: 2rem;
  color: #222;
}

.section-centered-box p {
  margin-bottom: 1.5rem;
  font-size: 1.15rem;
  line-height: 1.7;
}

@media (max-width: 600px) {
  .section-centered-box {
    max-width: 98vw;
    padding: 1.2rem 0.7rem;
    font-size: 1rem;
  }
  .section-centered-box h2,
  .section-centered-box h1 {
    font-size: 1.5rem;
  }
}

@media (max-width: 600px) {
  .nav-left a[href="#contact"] {
    display: none !important;
  }
}

@media (max-width: 900px) {
  .review-list {
    padding: 0 10px; /* Add side padding on mobile */
    max-width: 90%;  /* Slightly reduced width for smaller screens */
    font-size: 1.1rem; /* Smaller font for mobile */
    line-height: 1.6;
  }

  .review-list li {
    margin-bottom: 16px; /* Tighter spacing on mobile */
  }
}

@media (max-width: 600px) {
  .review-list {
    padding: 0 0 0 10px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .review-list li {
    margin-bottom: 14px;
    margin-left: auto;
    font-family: montserrat, sans-serif;
    font-size: 1.2rem; /* Smaller font size on mobile */
  }

  .review-right {
    margin-left: auto; /* Remove left margin on mobile */
    padding-left: 10px; /* Add left padding for alignment */
  }
  .review-right h2 {
    font-size: 1.8rem; /* Smaller heading on mobile */
    margin-left: auto; /* Center the heading */
  }
}

@media (max-width: 600px) {
  .professional-text {
    padding: 0 0 0 10px; /* Add side padding on mobile */
    font-size: 1rem;
    line-height: 1.5;
  }

  .professional-text p {
    margin-bottom: 1.2em; /* Add space between paragraphs */
    line-height: 1.3;
    margin-left: auto;
    font-family: montserrat, sans-serif;
  }
}
@media (max-width: 600px) {
  .partnerships-right {
    padding: 0 0 0 10px; /* Add side padding on mobile */
    font-size: 1rem;
    line-height: 1.5;
  }
  .partnerships-right h2 {
    font-size: 1.8rem; /* Smaller heading on mobile */
    margin-left: auto; /* Center the heading */
  }

  .partnerships-right p {
    margin-bottom: 1.2em; /* Add space between paragraphs */
    margin-left: auto;
    line-height: 1.3;
font-family: montserrat, sans-serif;
  }
}