/* fonts from  https://fonts.google.com/ */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&family=Zilla+Slab:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&display=swap');

:root {
    --color1: #000000;
    --color2: #ffffff;
    --color3: #fffee5;
    --shadow-color: rgba(0, 0, 0, 0.1); 
    --spacing-small: 10px;
    --spacing-medium: 20px; 
    --spacing-large: 40px; 
}
  
html{
    height: 100%;
    width: 100%;
}

body{
    background-color: var(--color3);
    padding: 20px;
    font-family: "Comfortaa", sans-serif;
    font-optical-sizing: auto;
    font-size: 25px;
    height: 100%;
    width: 100%;
    overflow: auto;
    white-space: nowrap;
    justify-content: flex-start;
}

h1{
    font-family: "Comfortaa", sans-serif;
    font-weight: 600;
    font-size: 70px;
    color: var(--color1);
    margin: 70px 0px 20px 0px;
    padding: 20px;
}

nav {
    width: auto;
}

ul {
    list-style-type: none;
    margin: -30px;
    padding: 0px;
    overflow: hidden;
    background-color: #b0d1e5;
    width: 100%;
}

li {
    display: inline;
    float: left;
    border-right: 1px solid #000000;
    padding: 0px 20px 0px 20px;
}
  
li a {
    display: block;
    color: rgb(0, 0, 0);
    text-align: center;
    padding: 20px;
    text-decoration: none;
    font-size: 25px;
}
  
li a:hover {
    background-color: #f7dbe5;
}

.flex-grid {
    display: flex;
    align-items: flex-end; 
    width: 100%;
    height: auto;
    overflow: scroll
}

.flex-item {
    flex: 1;
    gap: 15px;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.form-view {
    padding: 30px;
}

/* .reserve-view {
    padding: 0px;
    margin: 0px;
} */

input[type="submit" i] {
    background-color: #ffda1f; 
    border: none;
    color: rgb(0, 0, 0);
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-family: "Comfortaa", sans-serif;
    font-size: 20px;
    border-radius: 6px; 
    width: 415px;
}

input[type="submit" i]:focus {
    outline: none; 
    box-shadow: 0 0 10px #585757;
}

input[type="text"] {
    padding: 8px 12px; 
    border: 1px solid #ccc; 
    border-radius: 4px; 
    font-size: 16px; 
    width: 200px; 
    height: 50px;
    box-sizing: border-box; 
    margin: 0px 0px 0px 30px;
}

input[type="text"]:focus {
    outline: none; 
    border-color: #ff7fc1; 
    border-width: 2px;
    box-shadow: 0 0 10px #ff7fc1; 
 }

select {
    padding: 8px 12px; 
    border: 1px solid #ccc; 
    border-radius: 4px; 
    font-size: 16px; 
    width: 200px; 
    height: 50px;
    box-sizing: border-box; 
    background: linear-gradient(to right, #fff47b, rgb(244, 127, 207)); 
    background-color: white; 
    margin: 0px 0px 0px 28px;
}

select:focus {
    outline: none; 
    border-color: #ff7fc1; 
    border-width: 2px;
    box-shadow: 0 0 10px #ff7fc1;
}

.flower-image {
    display: flex;
    position: relative;
    width: 175px;
    height: 175px;
    object-fit: cover;
    margin-bottom: -20px;
    justify-content: center;
    align-items: center;
}

.flower-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center;
    height: 100%;
    min-width: 200px;
}

.vertical-line {
    position: relative;
    width: 5px;
    background-color: #80df69;
    z-index: 1;
}

.normal-leaf-image, .invisible-leaf-image {
    position: absolute;
    width: 50px;
    height: 50px; 
    z-index: 0;
    justify-content: center; 
    transform-origin: bottom center;
}

.invisible-leaf-image {
    opacity: 0.5;
}

.task-title {
    color: #ef3796;
    text-transform: uppercase;
}

.play-button {
    background-color: #f7dbe5;
    position: absolute; 
    top: 15px;
    right: 15px;
    padding: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%
}
