@font-face {
    font-family: "Rubik";
    src: url("fonts/rubik/Rubik-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
 
  @font-face {
    font-family: "Rubik";
    src: url("fonts/rubik/Rubik-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
  }
 
 :root {
    --main-font-size: clamp(1rem, 1.2vw, 1.5rem);
    --light-color-1: hsl(33, 79%, 99%);
    --light-color-2: hsl(33, 79%, 96%);
    --color-accent: hsl(213, 81%, 92%);
 
    background-color: var(--light-color-1);
    font-family: "Rubik", Helvetica, "sans-serif";
    font-size: var(--main-font-size);
    box-sizing: border-box;
    line-height: 1.5;
 }
 
 body {
    margin: 0px;
 }
 
 .top {
    color: hsl(0, 0%, 22%);
    /* margin: 1em;
    padding: 2em; */
    display: flex;
    position: relative;
    flex-direction: column;
    /* gap: 1em; */
    align-items: flex-start;
    height: 100vh;
 }
 
 .layers {
    position: relative;
 }
 
 .header {
    align-self: center;
 }
 
 .content {
    padding: 1em;
    width: 100%;
    box-sizing: border-box;
 }
 
 .content-bg-1 {
    background-color: var(--light-color-1);
 }
 
 .content-bg-2 {
    background-color: var(--light-color-2);
 }
 
 .hero-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }
 
 .description-text {
    text-align: justify;
    font-family: "Rubik", Helvetica, "sans-serif";
    font-size: var(--main-font-size);
 }
 
 button {
    background-color: var(--color-accent);
    border-color: hsl(0, 0%, 82%);
    border-width: 1px;
    border-radius: 0.25em;
    font-family: "Rubik", Helvetica, "sans-serif";
    font-size: var(--main-font-size);
    padding: 0.5em;
    margin: 0.25em;
    cursor: pointer;
 }
 
 a {
    color: inherit;
    cursor: pointer;
    font-size: var(--main-font-size);
 }
 
 a:hover {
    font-weight: bold;
 }
 
 button:hover {
    background-color: hsl(213, 81%, 95%);
 }
 
 .buttons {
    padding-top: 1em;  
 }
 
 .cards {
    display: flex;
    gap: 1em;
    flex-wrap:wrap;
 }
 
 .card {
    box-sizing: border-box;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    gap: 1em;
    border-radius: 1em;
    min-width: 10em;   
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 300px;
 }
 
 .card:hover {
    cursor: pointer;   
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
 }
 
 .footer {
    background-color: hsl(0, 0%, 22%);
    color: hsl(33, 79%, 99%);
    width: 100%;
    padding: 1.5em;
    padding-top: 3em;
    margin-top: 2em;
    box-sizing: border-box;
 }
 
 .chat {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 300px;
    width: 200px;
    padding: 1em;  
    position: fixed;
    bottom: 50px;
    right: 100px;
    z-index: 10;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    background-color: hsla(260, 61%, 13%, 0.9);
    resize: none;
    padding: 1.5em;
    gap: 1em;
 }
 
 @media (max-width: 700px) {
    .chat {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: 300px;
        width: 100%;
        position: relative;
        bottom: 0px;
        right: 0px;
        z-index: 0;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
        border-radius: 10px;
        background-color: hsl(260, 61%, 13%);
        resize: none;
        box-sizing: border-box;
    }
 }
 
 .chat h3 {
    width: 100%;
    color: white;
    text-align: center;
 }
 
 .chat button {
    width: 100%;
 }
 
 .chat-text-area {
    width: 100%;
    flex: 1;
    background-color: hsla(0, 0%, 100%, 0.9);
    border: none;
 }
 
 .book-with-us {
    display: flex;
    gap: 1.25em;
    flex-wrap: wrap;
 }
 
 .card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
 }
 
 .card-description {
    padding: 1em;
    text-align: justify;
    word-break: break-word;
 }
 
 .card-header {
    font-weight: 600;
 }
 