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

/* BASE */
body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #111;
  line-height: 1.7;
}

/* CONTAINER */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 0px;
}

/* ================= HEADER ================= */

.main-header {
  width: 100%;
  background: #ffffff;

  border-bottom: 1px solid rgba(0,0,0,0.05);

  box-shadow:
    0 2px 6px rgba(0,0,0,0.03),
    0 8px 20px rgba(0,0,0,0.04);
}

.main-header .container {
  max-width: 100%;
  margin: 0;
}


.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;

  /* padding: 16px 16px; */
  padding: 25px 25px;
}

/* LEFT SIDE (logo + title) */
.header-left {
  display: flex;
  align-items: center;
  gap: 0px;
}

.header-left img {
  height: 100px;
  width: auto;
  display: block;
}

.site-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #3a3a3a;
}

/* RIGHT SIDE (nav links) */
.header-right {
  display: flex;
  gap: 10px;
}

.header-right a {
  text-decoration: none;
  color: #6a6a6a;

  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;

  position: relative;
  transition: color 0.25s ease;
}

/* underline effect */
.header-right a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;

  width: 0%;
  height: 1px;
  background: #b88c8c;

  transition: width 0.3s ease;
}

.header-right a:hover {
  color: #3a3a3a;
}

.header-right a:hover::after {
  width: 100%;
}

.header-right a.active {
  color: #3a3a3a;
}

.header-right a.active::after {
  width: 100%;
}

/* HEADER LEFT (logo + text) */
.header-left {
  display: flex;
  align-items: center;
  gap: 0px;
}

/* LOGO IMAGE */
.header-left img {
  height: 78px;   /* skinny + elegant */
  width: 33px;
  display: block;

  opacity: 0.9;   /* softens it */
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* subtle hover polish */
.header-left img:hover {
  opacity: 1;
  transform: scale(1.03);
}

/* TITLE
.site-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #3a3a3a;
} */

/* TITLE WRAPPER */
.site-title {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

/* TOP LINE */
.site-title .line-1 {
  font-family: 'Playfair Display', serif;
  font-size: 23px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #3a3a3a;
}

/* BOTTOM LINE */
.site-title .line-2 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6a6a6a;
}
/* ================= INFO BAR ================= */

/* .info-bar {
  width: 100%;
  background: #f4ecec;
  text-align: center;
  padding: 15px 25px;

  border-bottom: 1px solid rgba(0,0,0,0.04);
} */


/* .info-bar {
  width: 100%;
  background: #f4ecec;
  text-align: center;
  padding: 10px 20px;

  border-bottom: 1px solid rgba(0,0,0,0.04);

  box-shadow:
    0 2px 8px rgba(0,0,0,0.06),
    0 0 18px rgba(184, 140, 140, 0.15);

  position: relative;
  z-index: 10;
} */

.info-bar {
  width: 100%;
  background: #f4ecec;
  text-align: center;
  padding: 12px 20px;

  border-bottom: 1px solid rgba(0,0,0,0.04);

  /* enhanced glow + lift */
  box-shadow:
    0 2px 10px rgba(0,0,0,0.07),
    0 0 28px rgba(184, 140, 140, 0.22),
    0 10px 30px rgba(0,0,0,0.04);

  position: relative;
  z-index: 10;
}



.info-bar p {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #5a5a5a;
  font-weight: bolder;
}

/* ================= NAV ================= */

.main-nav {
  width: 100%;
  background: #ffffff;

  margin-top: -5px;
  border-top: 1px solid rgba(0,0,0,0.03);

  box-shadow:
    0 2px 6px rgba(0,0,0,0.03),
    0 12px 30px rgba(0,0,0,0.05);
}

/* NAV ROW */
.header-right {
  display: flex;
  justify-content: center;
  gap: 21px;
}
  /* display: flex;
  justify-content: center;
  gap: 50px;
  padding: 16px 16px;
} */


/* NAV LINKS
.nav-inner a {
  position: relative;
  text-decoration: none;
  color: #6a6a6a;

  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;

  transition: color 0.25s ease;
} */

/* underline */
.nav-inner a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;

  width: 0%;
  height: 1px;
  background: #b88c8c;

  transition: width 0.3s ease;
}

.nav-inner a:hover {
  color: #2f2f2f;
}

.nav-inner a:hover::after {
  width: 100%;
}

.nav-inner a.active {
  color: #000;
}

.nav-inner a.active::after {
  width: 100%;
}

/* ================= HERO ================= */

.hero-image {
  width: 100%;
  position: relative; /* ✅ FIX: required for overlays */
  background-color: #f4ecec;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* 🚨 FIXED OVERLAY (no more half-dark bug) */
/* If you don't want overlay, you can delete this block safely */
.hero-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(255, 255, 255, 0.28); /* subtle only */
  pointer-events: none;
}

/* ================= SECTIONS ================= */

.section {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
}

.section:nth-of-type(even) {
  background: #f2eeee;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 20px;
}

.section p {
  max-width: 600px;
  margin: 0 auto;
}

/* ================= CARDS ================= */

.cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 30px;
}

.card {
  width: 230px;
  padding: 30px;
  background: #fff;
  border-radius: 10px;

  text-decoration: none;
  color: #2f2f2f;

  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  transition: 0.25s ease;
}

.card:hover {
  transform: translateY(-5px);
}

/* ================= ABOUT HERO ================= */

.about-hero img {
  width: 100%;
  height: auto;
  display: block;
}

/* ================= ABOUT SECTION ================= */

.about-section {
  padding: 80px 20px;
}

/* INTRO TEXT */
.about-intro {
  max-width: 750px;
  margin-bottom: 40px;
}

.about-intro h1 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 25px;
  color: #3a3a3a;
}

.about-intro p {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 15px;
  color: #444;
}

/* ================= BREAK IMAGE ================= */

.about-break-image {
  margin: 40px 0;
}


  /* ================= ABOUT HERO ================= */

.about-hero img {
  width: 100%;
  height: auto;
  display: block;
}

/* ================= ABOUT SECTION ================= */

.about-section {
  padding: 60px 20px;
}

/* INTRO TEXT */
.about-intro {
  max-width: 750px;
  margin-bottom: 40px;
}

.about-intro h1 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 25px;
  color: #3a3a3a;
}

.about-intro p {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 15px;
  color: #444;
}

/* ================= BREAK IMAGE ================= */

.about-break-image {
  margin: 60px 0;
}

.about-break-image img {
  width: 100%;
  max-width: 700px; /* keeps it elegant */
  display: block;
  margin: 0 auto;
  border-radius: 4px;
  transition: opacity 0.3s ease;
}

/* hover softness */
.about-break-image img:hover {
  opacity: 0.9;
}

/* ================= FOUNDER ================= */

.about-founder {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  margin-top: 60px;
  flex-wrap: wrap;
}

/* IMAGE */
.founder-image {
  width: 350px;
  flex-shrink: 0;
}

.founder-image img {
  width: 100%;
  display: block;
  border-radius: 4px;
  transition: opacity 0.3s ease;
}

.founder-image img:hover {
  opacity: 0.9;
}

/* TEXT */
.founder-text {
  flex: 1;
  min-width: 260px;
}

.founder-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #3a3a3a;
}

.founder-text p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 14px;
  color: #444;
}

/* ================= CLASSES PAGE ================= */

.page-section {
  padding: 60px 0;

  text-align: center;
}

.page-section.alt {
  background: #f6f2f2;
}

/* TITLE */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 19px;
  color: #333;
  text-align: center;
}

/* INTRO TEXT */
.section-intro {
  max-width: 650px;
  margin: 0 auto 14px auto;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}

.download-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin: 35px 0 50px 0;
  padding: 10px;
}

/* BUTTON STYLE */
.download-card {
  display: inline-block;
  width: 220px;

  padding: 18px 20px;
  text-align: center;

  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 6px;

  text-decoration: none;

  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;

  color: #444;

  box-shadow: 0 6px 18px rgba(0,0,0,0.04);

  transition: all 0.25s ease;
}

/* HOVER EFFECT (elegant lift) */
.download-card:hover {
  transform: translateY(-5px);
  border-color: rgba(184, 140, 140, 0.5);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  color: #2f2f2f;
}

/* optional subtle click feel */
.download-card:active {
  transform: translateY(-2px);
}

/* ================= INFO BOX ================= */

.info-box {
  display: inline-block;
  background: #ffffff;
  padding: 25px 30px;
  border-radius: 8px;

  box-shadow: 0 6px 18px rgba(0,0,0,0.05);

  margin-bottom: 25px;
  text-align: left;
}

.info-box p {
  font-size: 14px;
  margin-bottom: 8px;
  color: #444;
}

.info-box p:last-child {
  margin-bottom: 0;
}

/* ================= NOTE ================= */

.note {
  font-size: 14px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* added */

/* ADDITIONAL TEXT UNDER INTRO */
.section-text {
  max-width: 650px;
  margin: 0 auto 14px auto;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}

/* ================= ACADEMY IMAGES ================= */

/* ================= ACADEMY IMAGES ================= */

.academy-images {
  display: flex;
  gap: 24px;
  margin: 45px 0;
  justify-content: center;
  flex-wrap: wrap;
}

.academy-images img {
  width: 300px;          /* BIGGER */
  max-width: 100%;
  height: auto;          /* ✅ no cropping */
  object-fit: contain;   /* shows full image */

  border-radius: 4px;

  opacity: 0.85;
  transition: all 0.3s ease;
}

.academy-images img:hover {
  opacity: 0.95;
  transform: translateY(-3px);
}

/* ================= PRIVATE LESSONS ================= */

.private-section {
  max-width: 650px;
  margin: 60px auto 20px auto;
  text-align: left;
}

.sub-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: #3a3a3a;
}

.private-section p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 14px;
  color: #444;
}
/* ================= SINGLE ACADEMY IMAGE ================= */

/* .academy-image-single {
  max-width: 500px;
  margin: 50px auto;
}

.academy-image-single img {
  width: 100%;
  height: auto;
  display: block;

  border-radius: 4px;

  opacity: 0.85; /* softens quality 
  transition: all 0.3s ease;
}

/* subtle hover polish 
.academy-image-single img:hover {
  opacity: 0.75;
  transform: scale(1.01);
} */
/* .academy-images {
  display: flex;
  gap: 18px;
  margin: 40px 0;
  flex-wrap: wrap;
  justify-content: center;
}

.academy-images img {
  width: 240px;
  height: 260px;
  object-fit: cover;

  border-radius: 4px;

  opacity: 0.75; /* key for lower quality images 
  transition: all 0.3s ease;
}

/* hover polish 
.academy-images img:hover {
  opacity: 0.95;
  transform: translateY(-3px);
} */



/* ================= ANNOUNCEMENT ================= */

.announcement-box {
  margin: 40px auto;
  padding: 16px 20px;
  max-width: 600px;

  background: #f4ecec;
  border-left: 3px solid #b88c8c;

  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #5a5a5a;
}
/* ================= STUDIO RENTAL ================= */

.rental-section {
  padding: 60px 20px;
}

/* TITLE */
.rental-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: #3a3a3a;
}

/* TEXT */
.rental-text {
  max-width: 750px;
  margin-bottom: 50px;
}

.rental-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #3a3a3a;
}

.rental-text p {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 15px;
  color: #444;
}

/* IMAGES */
.rental-images {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}

.rental-images img {
  width: 40%;
  display: block;
  border-radius: 4px;
}

.rental-images img:hover {
  opacity: 0.85;
}

/* PRICING */
.rental-pricing {
  max-width: 500px;
  padding-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.rental-pricing p {
  font-size: 14px;
  line-height: 1.8;
  color: #444;
}

.rental-pricing strong {
  font-size: 16px;
  color: #2f2f2f;
}

/* ================= RENTAL FORM ================= */

.rental-form {
  margin-top: 80px;
  max-width: 700px;
}

/* TITLE */
.rental-form h2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 25px;
  color: #3a3a3a;
}

/* FORM LAYOUT */
.rental-form form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ROWS */
.form-row {
  display: flex;
  gap: 16px;
}

.form-row input {
  flex: 1;
}

/* INPUTS */
.rental-form input,
.rental-form textarea {
  width: 100%;
  padding: 12px 14px;

  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 4px;

  font-family: 'Inter', sans-serif;
  font-size: 13px;

  transition: all 0.25s ease;
}

/* TEXTAREA */
.rental-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* FOCUS EFFECT */
.rental-form input:focus,
.rental-form textarea:focus {
  outline: none;
  border-color: #b88c8c;
  box-shadow: 0 0 0 2px rgba(184,140,140,0.15);
}

/* BUTTON */
.rental-form button {
  align-self: flex-start;

  padding: 12px 24px;
  border: none;
  border-radius: 3px;

  background: #b88c8c;
  color: white;

  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;

  cursor: pointer;
  transition: all 0.25s ease;
}

.rental-form button:hover {
  background: #a37474;
}

/* NOTE */
.form-note {
  margin-top: 20px;
  margin-bottom: 0px;
  padding-bottom: 0px;
  font-size: 14px;
  color: #666;
}


/* ================= CONTACT SECTION ================= */

.contact-section {
  padding: 80px 20px;
  background: #ffffff;
}

/* LAYOUT */
.contact-container {
  max-width: 1100px;
  margin: 0 auto;

  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
}

/* FORM SIDE */
.contact-form {
  flex: 1;
}

.contact-form h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: #3a3a3a;
}

/* FORM INPUTS */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: flex;
  gap: 15px;
}

input,
textarea {
  width: 100%;
  padding: 12px;

  border: 1px solid rgba(0,0,0,0.1);
  background: #fafafa;

  font-family: 'Inter', sans-serif;
  font-size: 13px;

  outline: none;
  transition: 0.2s ease;
}

/* focus effect */
input:focus,
textarea:focus {
  border-color: #b88c8c;
  background: #fff;
}

/* textarea sizing */
textarea {
  min-height: 120px;
  resize: none;
}

/* BUTTON */
button {
  margin-top: 10px;
  padding: 12px;

  background: #b88c8c;
  color: white;

  border: none;
  cursor: pointer;

  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;

  transition: 0.25s ease;
}

button:hover {
  background: #a37474;
}

/* IMAGE SIDE */
.contact-image {
  flex: 1;
}

.contact-image img {
  width: 100%;
  border-radius: 6px;
  opacity: .9 ;
}

/* INFO BAR BELOW */
.contact-info {
  margin-top: 60px;
  text-align: center;
}

.contact-info p {
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 0px;
  color: #555;
}
/* ================= FOOTER ================= */

footer {
  max-width: 1100px;
  margin: 10px auto;
  padding: 5px;
  text-align: center;

  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #777;
}

/* ================= TEXT ================= */

p {
  font-size: 13px;
  line-height: 1.8;
  font-weight: 300;
  color: #444;
}

/* ================= CENTER ACADEMY SECTION ONLY ================= */

footer p {
  margin: 0;
  line-height: 1.2;
}

/* ================= MOBILE NAV FIX ================= */
@media (max-width: 768px) {

  /* compact header */
  .header-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px 15px;
    gap: 8px;
  }

  /* smaller logo */
  .header-left img {
    height: 55px;
    width: auto;
  }

  /* tighter title */
  .site-title .line-1 {
    font-size: 18px;
    letter-spacing: 1.5px;
  }

  .site-title .line-2 {
    font-size: 13px;
    letter-spacing: 1.5px;
  }

  /* nav clean + compact */
  .header-right {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
    margin-top: 5px;
  }

  .header-right a {
    font-size: 11px;
    letter-spacing: 1.2px;
    white-space: nowrap;
  }
 

  /* ================= HERO IMAGE FIX ================= */
 /* ================= HERO FIX (IMPORTANT) ================= */
  .hero-image {
    margin-bottom: 10px;
  }

  .hero-image img {
    width: 100%;
    height: 45vh;        /* makes it feel like a true hero */
    object-fit: cover;   /* fills space nicely */
    display: block;
  }

  /* ================= REDUCE VERTICAL SPACING ================= */

  .page-section {
    padding: 45px 15px;   /* was 80px → too large */
  }

  .section-title {
    margin-bottom: 10px;
  }

  .section-intro,
  .section-text {
    margin-bottom: 10px;
  }

  /* ================= IMAGE BLOCK SPACING ================= */

  .academy-images {
    margin: 25px 0;      /* was 45px */
    gap: 12px;
  }

  /* ================= PRIVATE / OTHER SECTIONS ================= */

  .private-section {
    margin: 30px auto 10px auto;
  }

  .announcement-box {
    margin: 25px auto;
  }


  /* ================= HEADINGS FIX ================= */
  .section-title,
  .rental-title,
  .about-intro h1,
  .contact-form h2 {
    font-size: 22px;      /* was too large */
    letter-spacing: 2px;
  }

  .sub-title {
    font-size: 18px;
    letter-spacing: 2px;
  }


  /* ================= CONTACT LAYOUT FIX ================= */
  .contact-container {
    flex-direction: column;   /* stack instead of side-by-side */
    gap: 25px;
  }

  .contact-image {
    width: 100%;
  }

  .contact-form {
    width: 100%;
  }

  input,
  textarea {
    font-size: 14px;  /* prevents tiny inputs */
  }

  /* ================= MAKE BUTTONS EASIER ON MOBILE ================= */
  button {
    width: 100%;
    max-width: 250px;
  }
  

  /* ================= HERO IMAGES HIDE (SPECIFIC PAGES) ================= */
  /* add a body class or page-specific hook if needed */

  /* OPTION A: if you add page-specific body classes (BEST WAY) */
  body.classes-page .hero-image,
  body.rental-page .hero-image {
    display: none
  }

  /* ================= RENTAL IMAGES FIX ================= */
  .rental-images {
    flex-direction: column;   /* stack vertically */
    gap: 15px;
    align-items: center;
  }

  .rental-images img {
    width: 90%;              /* make them bigger */
    max-width: 500px;
  }
}

