:root {
    --titles: #342710;
    --brown: #9a7d4d;
    --light-text: #ece5c6;
    --white: var(--white);
}

* {
  margin: auto;
  padding: 0;
}

body{
  background-color: var(--white);
}

h2 {
  font-family:"Chela One",system-ui;
  text-align: center;
  color: var(--titles);
  font-size:4rem;
}

a {
    color: var(--brown);
    text-decoration: none;
    font-size: 25px;
}

p {
  display: flex;
  text-align: center;
  justify-content: center;
  padding: 1em;
  
}

ul {
    list-style-type: none;
    margin-top: 10%px;
}

nav a{
    font-size: 32px;
    font-weight: 700;
}

.nav-item {
  color: var(--titles);
  font-family: "Chela One",system-ui;
  padding: 0 1rem;
}

.nav-item :hover {
  background-color: #9a7d4d;
  opacity: 80%;
  border-radius: 10px;
}



img {
    width:100%;
    border-radius: 10px;
    
}

.logo {
    max-width: 100px;
}
.logo-footer {
  height:100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-row{
    width:100%;
    margin: 0 auto;
    padding: 1.5% 0;
    display: flex;   
}

.hero {
  width: 100%;
  height: 100vh;
  background-image: url(../Media/cafe.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
}

h1{
  width: 100%;
  height: 100%;
  font-family:"Chela One",system-ui;
  text-align: center; 
  color: var(--titles);
  position:absolute;
  top:30%;
}
.subtext {
  width: 100%;
  height: 100%;
  font-family:"Chela One",system-ui;
  text-align: center; 
  color: var(--titles);
  position:absolute;
  top:50%;
  font-size: 3.5em;
}
.banner-text {
  background-color: var(--titles);
  font-family:"Chela One",system-ui;
  font-size: 2em;
  max-width: 15em;
  background-color: #585F55;
  grid-template-columns: span 6;
}

.banner-text p {
  color:var(--light-text);
  padding:0;
}

.flex-center {
  grid-column: span 12;
  justify-content: center;
  align-items: center;
  width:100%;
  height:100%;
  display: flex;
}

footer{
    background-color: var(--brown);
}

footer li {
    color: var(--light-text);
}
footer img {
  max-width: 7em;
}
iframe {
  aspect-ratio: 4x3;
}

ion-icon { 
  padding:.5em;
  transform: scale(2);
  color: var(--light-text)

}
.about-flex {
  width: 100%;
  background-color: var(--brown);
}
.about-items {
  width:80%;
  margin: auto;
  padding: 2rem;
  display: flex;
  flex-direction: row;
  justify-content: start;
  color: var(--light-text);
}
.about-title {
  font-family:"Chela One",system-ui;
  font-size: 2em;
  color: var(--titles);
  padding: 1rem;
  display: flex;
  font-size: 4rem;
}
.about {
  color:var(--light-text);
  display: flex;
  font-size: 1.1rem;
}

.text-light {
  padding:0;
}
.my-gallery {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 1.5rem;
}

@media screen and (max-width: 400px) {
  .hero {
    height:50%;
  }
  .subtext {
    font-size: 2em;
  }
  .flex-row {
    width: 80%;
  }
  .about-flex {
    width: 100%;
    margin: 0 auto;
  }
  .about {
    width: 100%;
  }
  .about-items {
    flex-direction: column;
    align-items: center;
  }
  .text-light {
    width: 50%;
  }
  .grid-item {
    width: 100%;
    margin: 0%;
  }
  .banner-text {
    font-size: smaller;
  }
  .main-carousel {
   width: 80%;
   padding: 0;
   margin: 0 auto;
  }
}

