@import url('https://fonts.googleapis.com/css2?family=Lora&family=Cormorant+Garamond&display=swap');

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
    grid-template-columns: 1fr;
    font-family: "Lora", serif;
    font-size:25px;
    background:#F2E8E4;
    color:#854937;
    line-height:1.6;
}

/* NAVBAR */

header{
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    min-height:70vh;
    background:linear-gradient(rgba(0,0,0,.4),rgba(0,0,0,.4)),url('../images/hero.jpg');
    background-size:cover;
    background-position:center;
    color:white;
    padding:10px 0;
    padding-bottom: 2rem;
    grid-template-areas:
    "nav-area"
    "hero"
    "btn";
}

/* Hamburger toggle (hidden by default) */

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0.5rem;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: white;
    margin: 6px 0;
    transition: all 0.3s ease;
}

nav{
    display:grid;
    /*flex-direction: row;*/
    grid-template-columns: 1fr auto;
    grid-template-areas: "logo nav-bar";
    grid-area: nav-area;
    padding: 0 3rem;
    align-items: center;
}

.logo{
    justify-self: start;
    text-align: left;
    font-family: "Cormorant Garamond", serif;
    color:white;
    font-size: clamp(18px, 4.5vw, 40px);
    padding-left: 0;
    white-space: nowrap;
}

nav ul{
    display: flex;
    flex-direction: row;
    list-style:none;
    gap:25px;
    padding-right: 3rem;
    justify-content: flex-end;
}

nav a{
    color:white;
    text-decoration:none;
    font-weight:500;
    font-size: 18px;
}


nav a:hover {
    color: #E2A18F;
}

.btn:hover {
    background: #d88f7c;
}

.process-step:hover {
    transform: translateY(-5px);
    transition: 0.3s ease;
}

/* HERO */

.hero{
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding-left: 3rem;
    padding-bottom: 2rem;
    grid-area: hero;
}

.hero-content {
    padding-left: 3rem;
    padding-bottom: 2rem;
}

.large-Text{
    font-size: clamp(36px, 6vw, 65px);
    line-height: 1;
}

.small-Text{
    /*display:flex;*/
    font-size: clamp(16px, 2.5vw, 25px);
    align-items: flex-end;
    padding-top: 2rem;

}


.hero h1{
    font-size:52px;
    margin-bottom:20px;
}

.hero p{
    font-size:20px;
    margin-bottom:30px;
}

.btn{
    display: block;
    background:#E2A18F;
    color:white;
    padding:14px 28px;
    border:none;
    border-radius:6px;
    font-size:16px;
    cursor:pointer;
    margin: 0 auto;
}

/* SECTIONS */

.white-section{
    display:grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    padding:70px 10%;
    text-align:center;
    color: #4D5B59;
    background-color: #FFFFFF;
    grid-template-areas:
    "heading"
    "text-body"
    "btn";
}

.green-section{
    padding:90px 10%;
    text-align:center;
    color: white;
    background-color: #4D5B59;
}

.grey-section{
    padding:90px 10%;
    text-align:center;
    color: #4D5B59;
    background-color: #D9D5CA
}

#white {
    font-size:36px;
    margin-bottom:40px;
    color: #4D5B59;
}

#green {
    font-size:36px;
    margin-bottom:40px;
    color: white;
}

#grey {
    font-size:36px;
    margin-bottom:40px;
    color: #4D5B59;    
}


/* Why Luce */

.whyluce {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 5rem;
}

/*Services*/

.services{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    padding-bottom: 5rem;
}

/*Meet your therapist*/

.meet-your-therapist{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
    text-align:left;
}

.meet-your-therapist img{
    width:100%;
    border-radius:5px;
}

#therapist {
    text-align:left;
}

#name-info {
    align-self: flex-start;
}


/* PROCESS */

.process-step{
    background:white; 
    padding:25px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
}

/* TESTIMONIALS */

.testimonials{
    background:#F2CECE;
}

.testimonial{
    background:white;
    padding:25px;
    border-radius:10px;
}


/* CTA */

.cta{
    background:#A4533A;
    color:white;
    text-align:center;
    padding:70px 20px;
}

/* CONTACT */

form{
    max-width:500px;
    margin:auto;
}


input, textarea{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border: 1px solid #ccc;
    border-color: #4D5B59;
    color: #4D5B59;
    transition: border 0.2s ease;
}

input:focus, textarea:focus {
    border-color: #A4533A;
    outline: none;
}

/* FOOTER */

footer{
    background:#A4533A;
    color:white;
    text-align:center;
    padding:25px;
}

/*------------ About page ---------------------*/


.about-header {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    min-height:70vh;
    background:linear-gradient(rgba(0,0,0,.4),rgba(0,0,0,.4)),url('../images/hero.jpg');
    background-size:cover;
    background-position:center;
    color:white;
    padding:10px 0;
    padding-bottom: 2rem;
    grid-template-areas:
    "nav-area"
    "hero"
    "btn";
}

.about-header .hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-bottom: 2rem;
    grid-area: hero;
}

.about-text {
    padding-bottom: 5rem;
}

.about-page .white-section{
    display:grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    padding:70px 10%;
    text-align: left;
    color: #4D5B59;
    background-color: #FFFFFF;
    grid-template-areas:
    "heading"
    "sub-heading"
    "text-body"
    "btn";
}

.about-page h2 {
    text-align: center;
}

.about-page h3 {
    font-size: 28px;
    padding-bottom: 1rem;
}


/*---------------Mobile--------------------*/

@media (max-width: 768px) {

  /* GENERAL */
  body {
    font-size: 18px;
  }


 nav {
    grid-template-columns: 1fr auto;
    align-items: center;
    position: relative;
  }
  
  .logo {
      text-align: left;
      /*padding-left: 1.5rem;*/
  }

  /* NAVBAR */
  
  

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;

    /*background: rgba(0, 0, 0, 0.95);*/
    background: #4D5B59;
    backdrop-filter: blur(10px);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    transform: translateY(-100%);
    transition: transform 0.4s ease;
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  .nav-menu li {
    margin: 20px 0;
  }

  .nav-menu a {
    font-size: 28px;
    color: white;
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
  }
  
  .nav-menu a:hover {
  opacity: 0.7;
}

  /* Staggered animation */
  .nav-menu.active li:nth-child(1) a { transition-delay: 0.1s; }
  .nav-menu.active li:nth-child(2) a { transition-delay: 0.2s; }
  .nav-menu.active li:nth-child(3) a { transition-delay: 0.3s; }
  .nav-menu.active li:nth-child(4) a { transition-delay: 0.4s; }

  .nav-menu.active a {
    opacity: 1;
    transform: translateY(0);
  }
  

  /* HERO */
  header {
    height: auto;
    padding: 20px 0;
  }

  .hero {
    padding: 2rem 3rem;
    justify-content: flex-end;
    text-align: left;
  }
  
  .hero-content {
      padding-left: 1.5rem;
      padding-right: 1.5rem;
  }
  
  .page-main {
    padding: 2rem 3rem;
    justify-content: flex-end;
    text-align: left;
  }

  .large-Text {
    font-size: clamp(20px, 4.5vw, 48px);
  }

  .small-Text {
    font-size: clamp(16px, 4.5vw, 18px);
    /*justify-content: flex-end;*/
    text-align: left;
  }

  /* BUTTON */
  .btn {
    width: 90%;
    max-width: 300px;
  }

  /* WHY LUCE */
  .whyluce {
    width: 100%;
    padding-bottom: 2rem;
  }

  /* SECTIONS */


  .grey-section {
    padding: 50px 20px;
  }

  /* SERVICES */
  .services {
    grid-template-columns: 1fr;
  }

  /* MEET YOUR THERAPIST */
  .meet-your-therapist {
    grid-template-columns: 1fr;
    text-align: center;
  }

  #therapist {
    text-align: center;
  }

  /* FORM */
  form {
    width: 100%;
    padding: 0 10px;
  }

}