/* ==================================================
   MARFLEET STUDIOS
   Luxury Boutique Accommodation Theme
   ================================================== */

/* ==================================================
   ROOT VARIABLES
   ================================================== */

:root {

  --charcoal: #1A1A1A;
  --oldwhite: #F5F0EB;
  --terracotta: #B5603A;
  --frenchgrey: #7A7A72;
  --oak: #C8A97A;

  --white: #ffffff;

  --shadow-sm:
    0 10px 25px rgba(0,0,0,.05);

  --shadow-md:
    0 20px 45px rgba(0,0,0,.08);

  --shadow-lg:
    0 30px 70px rgba(0,0,0,.12);

  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 32px;

  --container: 1280px;

  --transition:
    all .35s ease;

}

/* ==================================================
   RESET
   ================================================== */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  background:var(--oldwhite);
  color:var(--charcoal);
  font-family:'Inter',sans-serif;
  line-height:1.8;
  overflow-x:hidden;
}

img{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
  color:inherit;
}

ul{
  list-style:none;
}

/* ==================================================
   TYPOGRAPHY
   ================================================== */

h1,
h2,
h3,
h4{
  font-family:'Cormorant Garamond',serif;
  font-weight:500;
  letter-spacing:-.03em;
}

h1{
  font-size:clamp(4rem,8vw,7rem);
  line-height:1;
}

h2{
  font-size:clamp(2.8rem,5vw,4.5rem);
  line-height:1.1;
}

h3{
  font-size:2rem;
}

h4{
  font-size:1.4rem;
}

p{
  color:var(--frenchgrey);
}

.section-label{
  display:block;
  color:var(--terracotta);
  font-size:.8rem;
  letter-spacing:4px;
  text-transform:uppercase;
  margin-bottom:20px;
}

/* ==================================================
   LAYOUT
   ================================================== */

.container{
  width:min(var(--container),90%);
  margin:auto;
}

.section{
  padding:140px 0;
}

.section-heading{
  max-width:800px;
  margin:0 auto 80px;
  text-align:center;
}

.section-heading p{
  margin-top:20px;
  font-size:1.1rem;
}

/* ==================================================
   BUTTONS
   ================================================== */

.btn-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:16px 34px;

  border-radius:999px;

  background:var(--terracotta);

  color:white;

  font-weight:500;

  transition:var(--transition);
}

.btn-primary:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-md);
}

.btn-secondary{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:16px 34px;

  border:1px solid white;

  border-radius:999px;

  color:white;

  transition:var(--transition);
}

.btn-secondary:hover{
  background:white;
  color:var(--charcoal);
}

.btn-secondary-dark{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:16px 34px;

  border-radius:999px;

  border:1px solid var(--charcoal);

  transition:var(--transition);
}

.btn-secondary-dark:hover{
  background:var(--charcoal);
  color:white;
}

.btn-dark{
  display:inline-block;

  padding:16px 28px;

  margin-top:30px;

  border-radius:999px;

  background:var(--charcoal);

  color:white;

  transition:var(--transition);
}

.btn-dark:hover{
  transform:translateY(-3px);
}

/* ==================================================
   NAVBAR
   ================================================== */

.navbar{

  position:fixed;

  top:0;
  left:0;

  width:100%;

  z-index:999;

  backdrop-filter:blur(14px);

  background:rgba(245,240,235,.88);

  border-bottom:
  1px solid rgba(0,0,0,.05);

}

.nav-container{

  height:90px;

  display:flex;

  align-items:center;

  justify-content:space-between;

}

.logo{
  font-family:'Cormorant Garamond',serif;
  font-size:2rem;
}

.nav-links{
  display:flex;
  gap:40px;
}

.nav-links a{
  position:relative;
}

.nav-links a::after{

  content:"";

  position:absolute;

  left:0;
  bottom:-8px;

  width:0;
  height:30px;

  background:var(--terracotta);

  transition:.3s;
}

.nav-links a:hover::after{
  width:auto;
}

/* ==================================================
   HERO
   ================================================== */

.hero{

  min-height:100vh;

  background:
  url("images/hero.jpg")
  center center/cover;

  position:relative;

  display:flex;
  align-items:center;

}

.hero-overlay{

  position:absolute;
  inset:0;

  background:
  linear-gradient(
    rgba(0,0,0,.65),
    rgba(0,0,0,.45)
  );

}

.hero-content{

  position:relative;
  z-index:2;

  color:white;

  max-width:900px;

}

.eyebrow{

  display:block;

  color:var(--oak);

  letter-spacing:4px;

  text-transform:uppercase;

  margin-bottom:20px;

}

.hero p{

  color:rgba(255,255,255,.85);

  font-size:1.15rem;

  max-width:700px;

  margin-top:30px;

}

.hero-buttons{

  display:flex;

  flex-wrap:wrap;

  gap:20px;

  margin-top:40px;

}

.contact-strip{

  display:flex;

  gap:40px;

  margin-top:40px;

  color:white;

}

.hero-badges{

  display:grid;

  grid-template-columns:
  repeat(4,1fr);

  gap:15px;

  margin-top:50px;

}

.badge{

  padding:16px;

  border-radius:999px;

  text-align:center;

  backdrop-filter:blur(20px);

  background:
  rgba(255,255,255,.12);

  border:
  1px solid rgba(255,255,255,.15);

}

/* ==================================================
   FEATURES
   ================================================== */

.features-grid{

  display:grid;

  grid-template-columns:
  repeat(3,1fr);

  gap:30px;

}

.feature-card{

  background:white;

  border-radius:var(--radius-md);

  padding:40px;

  text-align:center;

  box-shadow:var(--shadow-sm);

  transition:var(--transition);

}

.feature-card:hover{
  transform:translateY(-8px);
  box-shadow:var(--shadow-md);
}

/* ==================================================
   STUDIOS
   ================================================== */

.studio-grid{

  display:grid;

  grid-template-columns:
  repeat(2,1fr);

  gap:50px;

}

.studio-card{

  overflow:hidden;

  border-radius:var(--radius-lg);

  background:white;

  box-shadow:var(--shadow-md);

  transition:var(--transition);

}

.studio-card:hover{

  transform:translateY(-12px);

  box-shadow:var(--shadow-lg);

}

.studio-card img{

  width:100%;

  height:420px;

  object-fit:cover;

}

.studio-content{
  padding:45px;
}

.studio-price{

  color:var(--terracotta);

  margin:18px 0;

  font-weight:600;

}

.studio-content ul{
  margin-top:25px;
}

.studio-content li{
  margin-bottom:12px;
}

/* ==================================================
   WHY SECTION
   ================================================== */

.why-grid{

  display:grid;

  grid-template-columns:
  repeat(4,1fr);

  gap:25px;

}

.why-card{

  background:white;

  padding:35px;

  border-radius:var(--radius-md);

  box-shadow:var(--shadow-sm);

  transition:var(--transition);

}

.why-card:hover{

  transform:translateY(-8px);

  box-shadow:var(--shadow-md);

}

.why-card p{
  margin-top:12px;
}

/* ==================================================
   CORPORATE
   ================================================== */

.corporate-section{

  background:#efe7df;

  padding:140px 0;

}

.corporate-box{

  text-align:center;

  max-width:850px;

  margin:auto;

}

.corporate-box p{
  margin:25px auto 40px;
}

.corporate-tags{

  display:flex;

  justify-content:center;

  gap:15px;

  flex-wrap:wrap;

  margin-top:40px;

}

.corporate-tags span{

  background:white;

  padding:12px 20px;

  border-radius:999px;

}

/* ==================================================
   GALLERY
   ================================================== */

.gallery-grid{

  columns:4;

  column-gap:20px;

}

.gallery-grid img{

  width:100%;

  margin-bottom:20px;

  border-radius:24px;

  transition:.6s;

  cursor:pointer;

}

.gallery-grid img:hover{

  transform:scale(1.05);

}

/* ==================================================
   LOCATION
   ================================================== */

.location-grid{

  display:grid;

  grid-template-columns:
  1fr 1fr;

  gap:60px;

  align-items:center;

}

.map-placeholder{

  min-height:450px;

  background:white;

  border-radius:32px;

  display:flex;

  align-items:center;

  justify-content:center;

  box-shadow:var(--shadow-md);

}

/* ==================================================
   TESTIMONIAL
   ================================================== */

.testimonial-card{

  max-width:900px;

  margin:auto;

  text-align:center;

  background:white;

  border-radius:32px;

  padding:80px;

  box-shadow:var(--shadow-md);

}

.quote{

  font-size:6rem;

  line-height:1;

  color:var(--terracotta);

}

.testimonial-card p{

  font-size:1.3rem;

  margin-bottom:30px;

}

/* ==================================================
   FAQ
   ================================================== */

.faq-container{
  max-width:900px;
}

.accordion-item{

  background:white;

  border-radius:24px;

  overflow:hidden;

  margin-bottom:20px;

  box-shadow:var(--shadow-sm);

}

.accordion-header{

  width:100%;

  padding:28px;

  border:none;

  background:white;

  cursor:pointer;

  text-align:left;

  font-size:1rem;

  font-weight:600;

}

.accordion-content{

  max-height:0;

  overflow:hidden;

  transition:max-height .4s ease;

}

.accordion-item.active .accordion-content{

  max-height:250px;

}

.accordion-content p{

  padding:0 28px 28px;

}

/* ==================================================
   CTA
   ================================================== */

.cta-section{
  padding:140px 0;
}

.cta-box{

  text-align:center;

  max-width:850px;

  margin:auto;

}

.cta-box p{

  margin:25px auto 40px;

}

.cta-buttons{

  display:flex;

  justify-content:center;

  gap:20px;

  flex-wrap:wrap;

}

/* ==================================================
   FOOTER
   ================================================== */

.footer{

  background:var(--charcoal);

  color:white;

  padding-top:100px;

}

.footer-grid{

  display:grid;

  grid-template-columns:
  2fr 1fr 1fr;

  gap:80px;

}

.footer h3,
.footer h4{
  margin-bottom:20px;
}

.footer p,
.footer a{
  color:rgba(255,255,255,.7);
}

.footer li{
  margin-bottom:12px;
}

.footer-bottom{

  margin-top:80px;

  padding:30px;

  text-align:center;

  border-top:
  1px solid rgba(255,255,255,.08);

  color:rgba(255,255,255,.5);

}

/* ==================================================
   WHATSAPP
   ================================================== */

.whatsapp-btn{

  position:fixed;

  right:25px;
  bottom:25px;

  width:70px;
  height:70px;

  border-radius:50%;

  background:#25D366;

  color:white;

  display:flex;

  align-items:center;
  justify-content:center;

  font-size:30px;

  z-index:999;

  box-shadow:var(--shadow-lg);

}

/* ==================================================
   ANIMATIONS
   ================================================== */

.fade-up{

  opacity:0;

  transform:translateY(40px);

  transition:
  opacity .8s ease,
  transform .8s ease;

}

.fade-up.show{

  opacity:1;

  transform:translateY(0);

}

/* ==================================================
   TABLET
   ================================================== */

@media(max-width:1024px){

  .studio-grid,
  .location-grid{
    grid-template-columns:1fr;
  }

  .why-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .gallery-grid{
    columns:2;
  }

  .hero-badges{
    grid-template-columns:repeat(2,1fr);
  }

}

/* ==================================================
   MOBILE
   ================================================== */

@media(max-width:768px){

  .section{
    padding:90px 0;
  }

  .nav-links{
    display:none;
  }

  h1{
    font-size:3.5rem;
  }

  h2{
    font-size:2.5rem;
  }

  .hero{
    text-align:center;
  }

  .hero-buttons{
    justify-content:center;
  }

  .contact-strip{
    flex-direction:column;
    gap:15px;
  }

  .hero-badges{
    grid-template-columns:1fr;
  }

  .features-grid,
  .why-grid{
    grid-template-columns:1fr;
  }

  .studio-grid{
    grid-template-columns:1fr;
  }

  .gallery-grid{
    columns:1;
  }

  .footer-grid{
    grid-template-columns:1fr;
    gap:50px;
  }

  .testimonial-card{
    padding:50px 30px;
  }
.logo{
    display:flex;
    align-items:center;
}

.logo img{
    max-height:40px;
    width:auto;
}.logo{
    display:flex;
    align-items:center;
    height:70px;
    overflow:hidden;
}

.logo img{
    height:180px;
    width:auto;
    margin-top:-55px;
}
}.logo img{
    height: 90px !important;
    width: auto !important;
    border: 2px solid rgb(252, 242, 242);
}