/* ==========================
    Font Styles START
    ========================= */

/* Import font styles from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Marcellus&display=swap');

/* Fonts Classes for Website */
.marcellus-regular {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
}


.dm-sans-uniquifier {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* ==========================
    Font Styles END
    ========================= */

/* ==========================
    Background Images START
    ========================= */

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.bg-home {
  background-image: url("../img/cherry-blossoms-7110279_1920.jpg");
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.bg-sub {
  background-image: url("../img/cherry-blossoms-7110279_1920.jpg");
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

 /* ==========================
    Background Images END
    ========================= */

 /* ==========================
    Link Styles START
    ========================= */

    a{
      text-decoration: none;
      color: rgb(236, 182, 204);
    }

    a:hover{
      color: white;

    }

 /* ==========================
    Link Styles END
    ========================= */

 /* ==========================
    Heading a paragraph Styles START
    ========================= */

    h1{font-size: 6rem;}
    h2{font-size: 5rem;}
    h3{font-size: 4rem;}
    h4{font-size: 3rem;}
    h5{font-size: 2rem;}
    h6{font-size: 1.6rem;}

    h1,h2,h3,h4,h5,h6{
       font-family: "Marcellus", serif;
       font-weight: 400;
       font-style: normal;
       padding: 0;
       margin: 0 0 20px 0;
    }

    p{
       font-family: "DM Sans", sans-serif;
       font-weight: 600;
       font-style: normal;
       font-size: 1rem;
       line-height: 1.75;
       padding: 0;
       margin: 0 0 20px 0;
    }

  /* ==========================
    Heading a paragraph Styles END
    ========================= */

  /* ==========================
    Button Styles START
    ========================= */

.action-btn {
  background-color: #d9a9a9;
  box-shadow: 0px 0px 3px 3px rgba(184, 157, 157, 0.1);
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-decoration: none;
  font-size: 1.2rem;
  color: #ffffff;
  padding: 7px 17px 7px 17px;
  border: none;
  outline: none;
  border-radius: 7px;
  cursor: pointer;
}

.action-btn:hover {
  background-color:#ffffff;
  color:#d9a9a9;
}

/*=============
  Navbar START
  =============== */

.nav-container {
   background-color: rgb(255, 251, 254);
   box-shadow: px 0px 10px rgba(126, 90, 90, 0.1);
   font-size: 1.2rem;
   font-family: "DM Sans", sans-serif;
   font-optical-sizing: auto;
   font-weight: 200;
   font-style: normal;
   height: 60px;
   width: 100%;
   position: sticky;
   top: 0;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.navbar ul {
  display: flex;
}

 .nav-container .navbar {
  justify-content: space-between;
}

 .navbar ul li {
list-style-type: none ;
}

.nav-container .navbar ul li {
 padding: 0px;
 margin: 0 20px;
}

.navbar a {
 color: #d9a9a9;
text-decoration: none;
} 

.navbar a:hover {
  color: #fff5fa;
}

@media screen and (min-width: 390px) and (max-width: 787px) {
 .nav-container {
  height: auto;
 }
   .nav-container .navbar {
    flex-direction: column;
  }
}

/*=============
  Navbar END
  =============== */

/*=============
  Home Page and Sub Page Containers START
  =============== */

.homepage-container {
  background-color: rgb(255, 255, 255, 0.15);
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  color:#382020;
}

.homepage-container h1 {
  margin: 150px 0 -10px 0;
}

.subpage-container {
  background-color: rgba(255, 255, 255, 0.5);
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  flex-grow: 1;
}

.grid-container{
  display: flex;
  justify-content: center;
}

.grid-cards{
  display: grid;
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 20px;
}

.grid-card{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color:rgba(240, 202, 202, 0.544);
  color:#ffffff;
  height: 100px;
  border-radius: 10px;
  font-size: 1.5rem;
  font-family: "DM Sans", sans-serif;
}

.grid-cards a:hover{
  background-color: rgba(240, 202, 202, 0.332);
  border-radius: 10px;
}

/*=============
   Home Page and Sub Page Containers END
   =============== */

/*=============
   Sub Page Content Styles START
   =============== */

.subpage-content {
  width: 80%;
  height: 100%;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  color:#352525;
}

.photo {
  width: 50%;
  border-radius: 10px;
}

.subpage-content details {
  background-color:#ebdbdb;
  border: 1px solid #ffffff;
  border-radius: 10px;
  margin-bottom: 5px;
}

.subpage-content summary {
  padding: 20px;
  font-weight: bold;
  font-size: 1.1rem;
  color:#d9a9a9;
  cursor: pointer;
  outline: none;
  list-style-type: '🌸';
}

.subpage-content summary:hover {
  background-color:#fff5fa;
  border-radius: 10px;
}

.subpage-content details p {
  padding: 10px;
  margin-left: 28px;
  line-height: 1.5;
  color:#352525;
}

.subpage-content h2 element {
  font-size: 1.5rem;
  color:#352525;
  padding-bottom: 5px;
  margin-top: 1.5rem;
}

.subpage-content ul {
  list-style: none;
  padding-left: 0;
}

.subpage-content li {
  background-color: rgba(255, 255, 255, 0.441);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 10px;
  line-height: 1.5;
}

.subpage-content li a {
  font-weight: bold;
  font-size: 1.2rem;
  color:#a86868;
  text-decoration: none;
}

.subpage-content li a:hover {
  text-decoration: underline;
}

/*=============
   Sub Page Content Styles END
   =============== */

/*=============
   Contact Form Styles START
   =============== */

   form {
       font-family: "DM Sans", sans-serif;
       font-weight: 600;
       font-style: normal;
       font-size: 1rem;
       line-height: 1.75;
       padding: 0;
       margin: 0 0 20px 0;
   }
   
   input[type=text], select{
    width: 100%;
    padding: 20px;
    margin: 10px 0px 20px 0px;
    display: inline-block;
    border: 1.5px solid #352525;
    border-radius: 10px;
    box-sizing: border-box;
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 1rem;
    line-height: 1.75;
   }

   input[type=email] {
    width: 100%;
    padding: 20px;
    margin: 10px 0px 20px 0px;
    display: inline-block;
    border: 1.5px solid #352525;
    border-radius: 10px;
    box-sizing: border-box;
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 1rem;
    line-height: 1.75;
   }

   textarea {
    width: 100%;
    height: 150px;
    padding: 20px;
    margin: 10px 0px 20px 0px;
    display: inline-block;
    border: 1.5px solid #352525;
    border-radius: 10px;
    box-sizing: border-box;
    resize: none;
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 1rem;
    line-height: 1.75;
   }

   input[type=submit] {
    width:25%;
    background-color: #d9a9a9;
    box-shadow: 0px 0px 3px 3px rgba(184, 157, 157, 0.3);
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    font-size: 1.2rem;
    color: #ffffff;
    padding: 7px 17px 7px 17px;
    border: none;
    outline: none;
    border-radius: 7px;
    cursor: pointer;
   }

  input[type=submit]:hover {
    background-color: #ffffff;
    color:#d9a9a9;
}

   /*=============
   Contact Form Styles END
   =============== */

/*=============
   Footer Styles START
   =============== */

.footer-container {
  background-color:#d9a9a9;
  height: 40px;
  width: 100%;
  padding: 20px 0px 10px 0px;
}

.footer-content {
  text-align: center;
  color: #ffffff;
  font-size: 0.8rem;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
}

/*=============
   Footer Styles END
   =============== */