/* ==========================================================
   Batik Santoso — Tentang Kami stylesheet
   ========================================================== */

:root{
  --navy: #0d1228;
  --navy-deep: #090c1c;
  --gold: #fdd13c;
  --gold-soft: #e8c96a;
  --cream: #f5efe1;
  --white: #ffffff;
  --max-width: 1440px;
}

*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  background: var(--navy);
  color: var(--white);
  font-family: 'EB Garamond', serif;
  -webkit-font-smoothing: antialiased;
}

img{ display:block; max-width:100%; height:auto; }
a{ text-decoration:none; color:inherit; }
ul{ list-style:none; margin:0; padding:0; }

/* ---------------- Logo (Gambar) ---------------- */

.logo, .footer-logo, .about-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.logo:hover, .footer-logo:hover, .about-logo:hover {
  opacity: 0.8;
}

/* Ukuran logo di Navbar */
.logo img {
  height: 75px;
  width: auto;
}

/* Ukuran logo di bagian Tengah (About) */
.about-logo img {
  height: 130px;
  width: auto;
  margin-bottom: 2rem;
}

/* Ukuran logo di Footer */
.footer-logo img {
  height: 150px;
  width: auto;
  margin-bottom: 1rem;
}

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

.hero{ position: relative; width: 100%; }

.navbar{
  position:absolute;
  top:0; left:0; right:0;
  z-index: 10;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  padding: 2.4rem 4.5vw 0;
}

.nav-links{ display:flex; gap: 2.6rem; padding-top: .45rem; }

.nav-links a{
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.15rem;                       
  color: var(--gold);
  letter-spacing: .5px;                     
  transition: opacity .2s ease;
}

.nav-links a:hover{ opacity: .72; }

.hero-media {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-img{
  width:100%;
  height:100%;
  object-fit: cover;
  object-position: center;
}

.hero-gradient{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(9,12,28,.6) 0%, rgba(9,12,28,.05) 24%, rgba(9,12,28,0) 50%, rgba(9,12,28,.6) 80%, var(--navy) 100%),
    linear-gradient(90deg, rgba(9,12,28,.35) 0%, rgba(9,12,28,0) 35%);
}

.hero-title{
  position:absolute;
  left: 4.5vw;
  bottom: 8%;
  margin:0;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 900;               
  font-size: clamp(1.7rem, 4vw, 3.1rem);
  line-height: 1.05;              
  letter-spacing: -0.5px;         
  text-transform: uppercase;
  max-width: 60%;
}

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

.about{
  position:relative;
  width: 100%;
  padding: 5rem 4.5vw 1rem;
  text-align:center;
  overflow: hidden;
}

.about-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0.9;
  z-index:0;
}

.about-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, var(--navy) 0%, rgba(13,18,40,.75) 12%, rgba(13,18,40,.75) 88%, var(--navy) 100%);
  z-index:0;
}

.about-logo,
.about-copy,
.about-row,
.about-slogan,
.siluet{
  position:relative;
  z-index:1;
}

.about-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;                    
  max-width: 1050px;              
  margin: 0 auto 8rem; 
  color: #fdd13c;                 
  font-family: 'Cormorant Garamond', serif; 
  font-weight: 400;               
  font-size: 1.05rem;             
  line-height: 1.2;               
  letter-spacing: 0.3px;          
  text-shadow: 0 0 1px rgba(253, 209, 60, 0.2); 
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;             
}

.about-column {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;      
  text-align: justify;              
}

.about-copy p { 
  margin: 0; 
}

/* ---- three-tile row ---- */

.about-row{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  max-width: var(--max-width);
  margin: 0 auto 2.4rem;
  text-align:left;
}

.about-tile{
  margin:0;
  position:relative;
  border-radius: 22px;
  overflow:hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  background:#d9d5ca;
}

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

.about-tile-quote{ position:relative; }

.about-tile-quote figcaption{
  position:absolute;
  left: 1.7rem;
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
  font-family:'Playfair Display', serif;
  font-weight: 450;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--white);
  text-align: center;
}

.about-slogan{
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  letter-spacing: .5px;
  color: var(--gold-soft);
  font-size: 1.1rem;
  margin: 0 0 4rem;
}

/* ---- siluet full-width section ---- */

.siluet {
  position: relative;
  overflow: hidden;
  margin-left: -4.5vw;
  margin-right: -4.5vw;
  margin-bottom: -1rem;
  height: 100vh;
  border-radius: 0;
  box-shadow: 0 -10px 40px rgba(0,0,0,.3);
}

.siluet-bg{
  width:100%;
  height:100%;
  object-fit: cover;
}

.siluet-overlay{
  position:absolute;
  inset:0;
  background: radial-gradient(circle at center, rgba(20,10,10,.15) 0%, rgba(15,8,8,.55) 100%);
}

.siluet-title{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  margin:0;
  text-align:center;
  color: var(--white);
  font-family:'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4.4vw, 3.4rem);
  line-height: 1.15;
  letter-spacing: 1px;
  text-shadow: 0 4px 24px rgba(0,0,0,.35);
}

/* ================= FOOTER ================= */

footer{
  position:relative;
  padding: 5rem 4.5vw 3rem;
  text-align:center;
  overflow: hidden;
}

.footer-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:1;
  z-index:0;
}

.footer-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, var(--navy) 0%, rgba(13,18,40,.7) 20%, rgba(13,18,40,.85) 100%);
  z-index:0;
}

.footer-inner{
  position:relative;
  z-index:1;
  max-width: 780px;
  margin: 0 auto;
}

.footer-logo{ justify-content:center; margin-bottom: 2.5rem; }

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  color: #fdd13c;
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: 0.2px;
  max-width: 950px;
  margin: 0 auto 3.5rem;
  opacity: 0.9;
}

.social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.social-row a{
  display:inline-flex;
  width: 68px;
  height: 68px;
  transition: transform .2s ease;
}

.social-row img{ width:100%; height:100%; object-fit:contain; }
.social-row a:hover{ transform: translateY(-3px); }

.copyright {
  font-family: 'EB Garamond', serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.5px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px){
  .navbar{ padding: 1.6rem 5vw 0; flex-direction:column; gap: 1rem; }
  .nav-links{ gap: 1.4rem; padding-top: 0; }
  
  /* Ukuran logo di HP */
  .logo img { height: 35px; }
  .about-logo img { height: 45px; }
  .footer-logo img { height: 50px; }

  .hero-media{ height: 400px; }
  .hero-title{ font-size: clamp(1.4rem, 5.6vw, 2rem); bottom: 5%; max-width: 90%; }

  .about{ padding: 3.4rem 5vw 1rem; }
  
  .about-copy{ 
    grid-template-columns: 1fr; 
    text-align: center; 
    font-size: 1.1rem; 
    height: auto; 
    gap: 1.8rem;
  }
  
  .about-row{ grid-template-columns: 1fr; }
  .about-tile{ aspect-ratio: 4/3; }

  .siluet{ aspect-ratio: 3/4; height:auto; margin-bottom:0; }

  .social-row a{ width: 56px; height: 56px; }
}

@media (max-width: 480px){
  .about-row{ gap: .9rem; }
}