/* ------------------------------------------------------------
   GENERAL RESET & BODY
------------------------------------------------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Asap Condensed', sans-serif;
  background-color: #5A6F8A; /* slate blue primary background */
  color: #FAFAF7; /* default text color white for premium contrast */
  line-height: 1.7;
  overflow-x: hidden;
}

/* ------------------------------------------------------------
   LINKS & BUTTONS
------------------------------------------------------------ */
a {
  text-decoration: none;
  color: inherit;
}

button, .button-primary {
  font-family: 'Asap Condensed', sans-serif;
  background-color: #E6A1B2;
  color: #FAFAF7;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  letter-spacing: 0.5px;
}

button:hover, .button-primary:hover {
  transform: scale(1.05);
  background-color: #FA879F; /* brighter pink accent hover */
}

/* ------------------------------------------------------------
   HEADER & NAVIGATION
------------------------------------------------------------ */
.site-header {
  width: 100%;
  background-color: #96C0EF; /* light blue top menu */
  padding: 0.8rem 2rem;
  display: flex;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo img.logo-icon-top {
  height: 50px;
  transition: transform 0.3s ease;
}

.nav-logo img.logo-icon-top:hover {
  transform: scale(1.1) rotate(-3deg);
}

.nav-links button {
  margin-left: 1.5rem;
}

/* ------------------------------------------------------------
   HERO SECTION
------------------------------------------------------------ */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  background: #96C0EF; /* light blue hero background */
}

.hero-logo {
  max-width: 220px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: 'Jayagiri Sans', sans-serif;
  font-size: 4rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.hero-subhead {
  font-family: 'Instrument Serif', serif;
  font-size: 1.7rem;
  max-width: 700px;
}

/* ------------------------------------------------------------
   SECTION TITLES
------------------------------------------------------------ */
.section-title.instrument-header {
  font-family: 'Instrument Serif', serif;
  font-size: 3rem;
  margin-bottom: 2.5rem;
  padding-left: 1.5rem;
  color: #FAFAF7;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.25);
}

/* ------------------------------------------------------------
   ABOUT SECTION
------------------------------------------------------------ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  padding: 3rem 0;
  margin: 0 2rem;
}

.about-portrait {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.portrait-wrapper {
  border-radius: 50%;
  overflow: hidden;
  width: 300px;
  height: 300px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.25);
}

.about-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.accent-circle {
  position: absolute;
  width: 100px;
  height: 100px;
  background: #FA879F;
  border-radius: 50%;
  top: -20px;
  left: -20px;
  opacity: 0.2;
  z-index: -1;
}

.about-text {
  font-size: 1.2rem;
  line-height: 1.9;
  color: #FAFAF7;
  position: relative;
}

.accent-square {
  position: absolute;
  width: 120px;
  height: 120px;
  background: #96C0EF;
  bottom: -20px;
  right: -20px;
  opacity: 0.15;
  z-index: -1;
}

/* Fade-in Reveal */
.about-portrait.reveal,
.about-text.reveal,
.hero-inner,
.gallery img {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.about-portrait.visible,
.about-text.visible,
.hero-inner.visible,
.gallery img.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ------------------------------------------------------------
   SERVICES / WHAT I OFFER
------------------------------------------------------------ */
.services-layout {
  display: flex;
  gap: 3rem;
  margin: 0 2rem;
  flex-wrap: wrap;
}

.services-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-card {
  padding: 1.8rem;
  border-radius: 25px;
  background: linear-gradient(135deg, #96C0EF 0%, #FA879F 100%);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.25);
}

.service-card h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 1.7rem;
  margin-bottom: 1rem;
}

.services-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.services-main-image {
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.25);
  transition: opacity 0.3s ease;
}

/* ------------------------------------------------------------
   GALLERY
------------------------------------------------------------ */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 1.5rem;
  margin: 0 2rem;
}

.gallery img {
  width: 100%;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 36px rgba(0,0,0,0.25);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: rgba(0,0,0,0.85);
  justify-content:center;
  align-items:center;
  z-index:9999;
}

.lightbox-content {
  max-width:90%;
  max-height:90%;
  opacity:0;
  transition: opacity 0.3s ease;
}

.lightbox-close {
  position:absolute;
  top:2rem;
  right:2rem;
  font-size:3rem;
  color:#FAFAF7;
  cursor:pointer;
}

/* ------------------------------------------------------------
   CONTACT FORM
------------------------------------------------------------ */
.contact-section p,
.contact-section label {
  color: #FAFAF7;
  font-size:1.2rem;
}

.contact-form input,
.contact-form textarea {
  width:100%;
  padding:0.8rem;
  border-radius:8px;
  border:none;
  margin-bottom:1rem;
  font-size:1rem;
}

.form-success-message {
  margin-top:1rem;
  color:#FAFAF7;
  font-weight:600;
  font-size:1.15rem;
}

/* ------------------------------------------------------------
   FOOTER
------------------------------------------------------------ */
.site-footer {
  text-align:center;
  padding:2rem 1rem;
  font-size:0.95rem;
  color:#FAFAF7;
}

/* ------------------------------------------------------------
   MEDIA QUERIES
------------------------------------------------------------ */
@media(max-width:900px){
  .about-grid,
  .services-layout {
    flex-direction: column;
    text-align:center;
    gap:2rem;
  }
  .about-portrait, .services-image {
    justify-content:center;
  }
}

