@import url("https://fonts.googleapis.com/css2?family=Funnel+Display:wght@300..800&family=Macondo&display=swap");
* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
}
html,
body {
  width: 100%;
  height: 300vh;
  font-family: "Macondo", cursive;
  font-weight: 400;
  font-style: normal;
}
a {
  color: inherit;
  text-decoration: none;
  font-family: "Funnel Display", sans-serif;
}
p {
  font-family: "Funnel Display", sans-serif;
}
::selection {
  background: rgba(255, 166, 0, 0.381);
  color: azure;
}
img {
  width: 100%;
  height: 100%;
}
#container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: #f5f5dc;
  color: #800000;
}
header {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background: url("img/tiger.jpg");
  background-size: 100% auto;
  position: relative;
  background-position: bottom center;
}
.navbar {
  padding: 1rem 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  color: azure;
  z-index: 10000000000;
}
header #logo {
  font-size: 2rem;
  font-family: Georgia, "Times New Roman", Times, serif;
}
header ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
header ul a {
  font-size: 1.5rem;
}
.banner {
  width: 100%;
  height: 100%;
  position: absolute;
}

.banner-overlay {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8));
}

.banner-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: azure;
}

.banner-content h1 {
  font-size: 4rem;
  text-shadow: 2px 2px 4px black;
}

.banner-content p {
  width: 50%;
  text-align: center;
  font-size: 1.5rem;
  text-shadow: 1px 1px 2px black;
}
.cta {
  margin-top: 1rem;
  padding: 1rem 2rem;
  background: rgba(255, 166, 0, 0.381);
  border-radius: 1rem;
}
main {
  width: 100%;
  height: 180vh;
}
#about {
  width: 100%;
  height: 140vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.about-profile {
  width: 35%;
  height: 40%;
  border-radius: 1rem;
  overflow: hidden;
}
.about-profile img {
  height: auto;
}
.about-content {
  width: 80%;
  height: 50%;
}
.about-content h1 {
  font-size: 3rem;
  line-height: 1.5;
}
.about-content h6 {
  font-size: 1.25rem;
  line-height: 1;
  margin-bottom: 1rem;
  font-weight: 100;
}
.about-content p {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
#para{
    background: #800000;
    color: #f5f5dc;
    padding: 0.5rem 1rem;
}
#para1{
    border: 0.25rem solid orangered;
    border-left: 1rem solid orangered;
    border-right: 1rem solid orangered;
    padding: 0.5rem 1rem;
    border-top-left-radius: 2rem;
    border-bottom-left-radius: 2rem;
    border-top-right-radius: 2rem;
    border-bottom-right-radius: 2rem;
}
#para1:hover{
    color: orangered;
}
#para2{
    border: 2px dashed orangered;
    background: orange;
    color: black;
    padding: 0.5rem 1rem;
    box-shadow: 2px 2px 4px black;
}
#para3{
    padding: 0.5rem 1rem;
    background: black;
}

.more-btn {
  margin-top: 1.5rem;
  border: none;
  border-radius: 1rem;
  background: rgba(255, 166, 0, 0.381);
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  color: #800000;
}
#gallery{
    width: 100%;
    height: 40vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}
.gallery-text{
    width: 80%;
    height: max-content;
    padding: 2rem 0rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.gallery-text h1{
    font-size: 3rem;
}
.gallery-content{
    background: url('img/1.jpg');
    background-size: 100% auto;
    background-position: center;
    width: 80%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    overflow: hidden;
    border-radius: 2rem;
    animation: gallery 6s ease infinite;
}
.explore{
    padding: 1rem 2rem;
    border: none;
    background: darkred;
    font-weight: 800;
    color: azure;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    border-radius: 1rem;
}
.explore:hover{
    background: orangered;
}
@keyframes gallery {
    0%{
        background: url('img/1.jpg');
    }
    20%{
        background: url('img/3.jpg');
    }
    40%{
        background: url('img/balaquila.jpg');
    }
    60%{
        background: url('img/citypalace.png');
    }
    80%{
        background: url('img/jainmandir.jpg');
    }
    100%{}
}

footer {
  height: 20vh;
  width: 100%;
  padding: 1rem 2rem;
  background-color: rgba(139, 0, 0, 0.242);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
