/* =============================================
   Premium CSS for ALINA ENNS Website
   Beige / Cream / Mocha / Espresso Palette
   Full Responsive + Animations + Scroll Effects
   ============================================= */

:root{
  --beige:#E8DCC8;
  --mocha:#B39A82;
  --cream:#FAF8F4;
  --espresso:#3A302A;
  --gold:#D8C89A;
  --max-width:1100px;
}
html, body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

*{box-sizing:border-box;margin:0;padding:0}
body{
  font-family:"Inter",sans-serif;
  background:var(--cream);
  color:var(--espresso);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}

/* GLOBAL */
.container {
  max-width: 1100px; /* or your --max-width */
  margin: 0 auto;    /* center horizontally */
  padding: 0 24px;   /* space on left/right */
}

section.section{padding:80px 0;border-top:1px solid rgba(0,0,0,0.04)}
h2{
  font-family:"Playfair Display";
  font-size:32px;
  margin-bottom:20px;
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 5px 10px;  /* normal size */
  background: var(--mocha);
  backdrop-filter: blur(10px);
  transition: padding .3s ease, background .3s ease, box-shadow .3s ease;
  z-index: 9999;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px;
}

header.shrink {
  padding: 1px 10px;   /* smaller */
  background: var(--mocha);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.logo img {
  height: 30px; /* adjust size */
  width: auto;
  display: block;
}

.mobile-nav {
  display: flex;
  gap: 24px; /* spacing between links */
}

.mobile-nav a {
  text-decoration: none;
  color: var(--espresso);
  font-weight: 600;
  transition: 0.3s;
}

.mobile-nav a:hover {
  color: var(--cream);
}

/* HERO */
.hero {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #F5EBE0;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 48px;
  align-items: center;
  padding: 150px 150px; /* add side padding so text doesn’t touch edges */
}

.hero-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.hero-content .btn {
  display: block;
  margin: 0 auto;
}


.eyebrow {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--mocha);
  margin-bottom: 20px;
}

.hero h1 {
  font-family: "Playfair Display";
  font-size: 48px;
  margin-bottom: 20px;
}

.lead {
  font-size: 18px;
  margin-bottom: 20px;
  color: #554d47;
}

.btn {
  display:inline-block;
  padding:12px 20px;
  background:var(--mocha);
  color:var(--cream);
  font-weight:700;
  border-radius:8px;
  text-decoration: none;
  transition:.3s;
  text-align: center;
  max-width: 200px;
  margin: 0 auto 20px auto;
}


.btn:hover {
  background: var(--espresso);
}

/* Portrait */
.portrait{
  background:var(--beige);
  height:560px;
  border-radius:14px;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
}
.portrait img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .6s;
}
.portrait:hover img{transform:scale(1.03)}


/* ABOUT SECTION */
.about-section {
  padding: 80px 20px;
  background: linear-gradient(to right, #fdf6f0, #fff9f4);
  text-align: center;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--mocha);
  margin: 12px auto 0;
  border-radius: 2px;
}

.about-intro {
  max-width: 800px;
  margin: 0 auto 60px auto;
  text-align: left;
  line-height: 1.6;
  color: #3b322d;
}

.about-intro .highlight {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--mocha);
}

.about-intro blockquote {
  font-style: italic;
  border-left: 4px solid var(--mocha);
  padding-left: 16px;
  margin: 20px 0;
  color: #5a4c42;
}

.about-intro p {
    text-align: center;
}

.about-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.card {
  background: var(--cream);
  padding: 28px 24px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--mocha);
}

.card ul {
  padding-left: 20px;
  color: #61574f;
  list-style-type: disc;
  line-height: 1.6;
}

.card ul li strong {
  color: #3b322d;
}

/* SERVICES SECTION */
.services-section {
  padding: 80px 20px;
  background: #F5EBE0;
  text-align: center;
}

.services-section .section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  margin-bottom: 50px;
  display: inline-block;
  position: relative;
}

.services-section .section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--mocha);
  margin: 12px auto 0;
  border-radius: 2px;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: var(--cream);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  padding: 28px 24px;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--mocha);
}

.card ul {
  padding-left: 20px;
  list-style-type: disc;
  color: #5e554d;
  line-height: 1.6;
}

.card ul li {
  margin-bottom: 8px;
}

.card ul li ul {
  padding-left: 20px;
  list-style-type: circle;
}

.card ul li ul li {
  margin-bottom: 6px;
  color: #3b322d;
}

/* TEAM SECTION */
.team-section {
  padding: 80px 20px;
  background: #fff9f4;
  text-align: center;
}

.team-section .section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  margin-bottom: 40px;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
}

.team-section .section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--mocha);
  margin: 12px auto 0;
  border-radius: 2px;
}

.team {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.team::-webkit-scrollbar {
  height: 8px;
}

.team::-webkit-scrollbar-thumb {
  background: var(--mocha);
  border-radius: 10px;
}

.member {
  min-width: 240px;
  text-align: center;
  background: var(--beige);
  border-radius: 14px;
  padding: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.member:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.member img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  filter: grayscale(0.15);
  transition: 0.4s;
}

.member:hover img {
  filter: grayscale(0);
}

.member h4 {
  margin: 10px 0 4px;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: var(--mocha);
  justify-content: center;
}
.member h4 a {
  color: var(--mocha);
  text-decoration: none;
  transition: color 0.3s;
}

.member h4 a:hover {
  color: #a66e4b; /* slightly lighter/different shade on hover */
  text-decoration: underline;
}

.member p {
  color: #71675f;
  font-size: 14px;
  margin-bottom: 0;
  justify-content: center;
}

.team-socials {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 20px;              /* distance between icons */
}

.team-socials a {
  display: inline-flex;
  text-decoration: none;  /* no underline */
  color: var(--mocha);         /* keeps same color */
  padding: 0;
  margin: 0;
}

/* ICONS */
.team-socials img {
  width: 50px;
  height: 50px;
  filter: brightness(0);      /* makes them dark */
  transition: .3s ease;
}

/* ON HOVER — change color */
.team-socials img:hover {
  transform: scale(2s);
  color: var(--espresso);
  /* this gives a warm beige/golden effect */
}


/* PRICING SECTION */
.pricing-section {
  padding: 80px 20px;
  background: #F5EBE0;
  text-align: center;
}

.pricing-section .section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  margin-bottom: 50px;
  display: inline-block;
  text-transform: uppercase;
  position: relative;
}

.pricing-section .section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--mocha);
  margin: 12px auto 0;
  border-radius: 2px;
}

.pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.price-card {
  flex: 1 1 240px;
  background: var(--cream);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.price-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--mocha);
}

.price-card .description {
  font-size: 0.95rem;
  color: #5e564f;
  margin-bottom: 14px;
  line-height: 1.5;
}

.price-card .price {
  font-size: 24px;
  font-weight: 800;
  margin: 10px 0 16px 0;
  color: var(--mocha);
}

.price-card ul {
  padding-left: 20px;
  color: #5e564f;
  list-style-type: disc;
  line-height: 1.6;
}

.price-card.extra {
  text-align: center;
  background: #fef6ec;
}

/* CONTACT SECTION */
.contact-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, var(--beige), var(--cream));
  text-align: center;
}

.contact-section .section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  margin-bottom: 40px;
  display: inline-block;
  position: relative;
}

.contact-section .section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--mocha);
  margin: 12px auto 0;
  border-radius: 2px;
}

.contact {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 30px;
}

/* Contact Info */
.contact-info {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: var(--mocha);
}

.info-item a {
  color: var(--mocha);
  text-decoration: none;
  transition: color 0.3s;
}

.info-item a:hover {
  color: #a66e4b;
}

/* Contact Form */
#contactForm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

#contactForm input,
#contactForm textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.08);
  background: white;
  width: 100%;
  font-size: 0.95rem;
}

#contactForm textarea {
  grid-column: 1 / 3;
  min-height: 140px;
  resize: vertical;
}

#contactForm button {
  grid-column: 1 / 3;
  width: max-content;
  justify-self: center;
  padding: 12px 24px;
  background: var(--mocha);
  color: var(--cream);
  font-weight: 700;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

#contactForm button:hover {
  background: #a66e4b;
}

/* FOOTER */
footer {
  padding: 40px 0;
  text-align: center;
  color: #6a6158;
  font-size: 14px;
  background: #fdf6f0;
}

footer a {
  color: #6a6158;
  text-decoration: none;
  margin: 0 8px;
  transition: color 0.3s;
}

footer a:hover {
  color: var(--mocha);
}

/* REVEAL ANIMATION */
.reveal{
  opacity:0;
  transform:translateY(20px);
  transition:all .9s cubic-bezier(.2,.9,.3,1);
}
.reveal.show{
  opacity:1;
  transform:none;
}


/* RESPONSIVE */
@media(max-width:1000px){
  .hero {
    grid-template-columns: 1fr; /* stack text + portrait vertically */
    padding: 80px 24px;         /* reduce padding for mobile */
    gap: 40px;                   /* space between stacked sections */
  }
  .two-col{
    grid-template-columns:1fr
  }
  .grid{
    grid-template-columns:repeat(2,1fr)
  }
  .hero-content {
    max-width: 100%;             /* take full width */
    text-align: center;
  }

  .hero h1 {
    font-size: 2.4rem;           /* scale down title */
  }

  .lead {
    font-size: 1rem;             /* scale down subtitle */
    margin-bottom: 16px;
  }

  .btn {
    max-width: 180px;            /* smaller button on mobile */
  }

  .hero .portrait {
    width: 100%;
    max-width: 360px;            /* reduce portrait size */
    margin: 0 auto;
  }
}

@media(max-width:600px){
  nav{display:none}
  .grid{grid-template-columns:1fr}
  .team{gap:16px}

  .hero-content {
    margin-bottom: 20px;
  }

  .hero {
    padding: 100px 16px 60px 16px; /* top padding to clear header */
  }

  .eyebrow {
    display: block;       /* make sure it shows */
    font-size: 14px;
    margin-bottom: 12px;
    text-align: center;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .lead {
    font-size: 0.95rem;
  }

  .btn {
    max-width: 160px;
  }
}

@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
  }
  .about-card {
    margin-top: 30px;
  }
  .card {
    padding: 24px;
  }
  .team {
    gap: 16px;
  }

  .member {
    min-width: 200px;
  }
  .price-card {
    flex: 1 1 100%;
  }
}
@media (max-width: 700px) {
  #contactForm {
    grid-template-columns: 1fr;
  }
  
  #contactForm textarea, 
  #contactForm button {
    grid-column: 1 / 2;
  }
  
  .contact-info {
    flex-direction: column;
    gap: 20px;
  }
}

/* Hamburger styling */
#hamburger {
  cursor: pointer;
  font-size: 2rem; /* size of the icon */
  color: var(--espresso);
  z-index: 10001;
  position: relative;
}

#hamburger i {
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Optional hover */
#hamburger:hover i {
  color: var(--beige);
}

/* Fullscreen menu */
.fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #F5EBE0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1500;
}

.fullscreen-menu.open {
  opacity: 1;
  pointer-events: all;
}

.fullscreen-menu nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}

.fullscreen-menu nav a {
  font-size: 1.8rem;
  color: var(--espresso);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.fullscreen-menu nav a:hover {
  color: var(--mocha);
}
/* SHOW BURGER + HIDE DESKTOP NAV ON MOBILE */ 
@media (max-width: 900px) {
  header nav {
    display: none;        /* hide desktop nav */
  }

  .hamburger {
    display: block;       /* show hamburger on mobile */
  }
}
@media (min-width: 901px) {
  .hamburger {
    display: none;
  }
}