
@import url('https://fonts.googleapis.com/css2?family=Akaya+Telivigala&family=Lora:wght@400;500&family=Montserrat:wght@500;600;700&family=Pacifico&family=Red+Hat+Mono:wght@300;400;500;600&family=Roboto:wght@400;500;700&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
a{
    text-decoration: none;
    color:blue;
    font-weight: 900;
}
h1,h2,h3,h4,h5 {
    font-family: "Red Hat Mono",sans-serif;
    font-weight: 400;
    color:blue;
}
p{
    color:black;
}


header {
    width: 100%;
    margin-top: 10px;
    margin: auto;
    background-color:red;
}

nav {
    width: 90%;
    padding: 16px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    margin-top: 5px;
    display: flex;
    list-style: none;
}

.header-logo{
    width: 120px;
}

.logo {
    
    display: block;
    background-size: cover;
   width: 60%;
   height: 70%;
   margin-left:-70px;
}

nav ul li {
    /* border: 1px solid whitesmoke; */
    border-radius: 3px;
    padding:  8px;
    margin: 0 5px;
    
}

nav ul li a {
    font-family: "Red Hat Mono",sans-serif;
    transition: all 0.4s ease;
    text-transform:capitalize;
    text-decoration: none;
    color:darkblue;
    font-weight: bolder;

    
    font-family: "Montserrat", sans-serif;
}
/* BOOK NOW BUTTON */
.filled-btn{
    transition: all 0.4s ease;
    /* border: 1px solid #fff; */
    border-radius: 3px;
    
}
.filled-btn:hover {
    transform: translateY(-4px);
    
}
.filled-btn a:hover {
    color: #fff;
}
/* END OF BOOK NOW */

nav  a:hover {
    text-decoration: underline;
    transition: all 0.4s ease;
    transform: translateY(-4px);
}

.mobile-menu-icon {
    display: none;
    position: absolute;
    top: 1rem;
    right: 2rem;
    z-index: 1;
    cursor: pointer;
}

.hamburger-menu {
    width: 2rem;
    height: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    transition: all 0.5s;
}

.hamburger-menu .line {
    background-color: #000;
    height: 3px;
    width: 100%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

nav.open ul {
    transform: translateX(0);
}

nav.open .hamburger-menu {
    transform: rotate(180deg);
}

nav.open .hamburger-menu .line:nth-of-type(1) {
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg) translate(0.6rem, 0.1rem);
}

nav.open .hamburger-menu .line:nth-of-type(2) {
    display: none;
}

nav.open .hamburger-menu .line:nth-of-type(3) {
    -webkit-transform: rotateZ(-45deg);
    transform: rotateZ(-45deg) translate(0.6rem, -0.1rem);
}

@media  (max-width: 992px) {
    nav {
        width: 90%;
    }
    .mobile-menu-icon {
        display: block;
        top: auto;
    }
    header {
        
        width: 100%;
        background-color:red;
    }
    nav ul {
        position: absolute;
        top: 0;
        left: 0;
       margin: 0 auto;
        align-items: center;
        width: 50%;
        flex-direction: column;
        height: auto;
        background-color:red;
        transform: translateX(-40rem);
        transition: transform 0.5s ease-in-out;
    }

    nav ul li {
        border: none;
        margin: auto ;
        align-items: flex-start;
        justify-content: flex-start;
        width: 100%;
    }
    nav ul li a {
        color:darkblue;
    }
    .filled-btn a{
        color:blue;
    }
    
    nav ul li:not(:last-child) {
        border-bottom: 1px solid #ccc;
    }
} 
/* @@@@@@@@
END OF NAVBAR */


/* HOME SECTION */
#home {
    width:100%;
    margin: 0 auto;
}
.home-container {
    height: 100%;
    background: url("./images/home.jpg") no-repeat;
    background-size: cover; 
    width: 100%;
   margin: 15px auto 0 auto;
}
.home-card-container{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 80%;
    height: 100%;
    padding: 20px 0;   
}

.home-card{
    margin: 0 auto;
    background: #333333;
    border-radius: 5px;
    color: #fff;
        margin: 0 auto;
        width: 100%;
        padding: 0px  20px;   
        opacity: 0.9;
}
.card-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 16px;
        margin: 0 auto;
        padding: 5px;
        width: 100%;
      
}
.card-content h2 {
    padding: 5px 0px;
    margin-bottom: 10px;
    color:blue;
    text-align: center;
    font-size: 2.5rem;
    border-bottom: 1px solid blue;
    
}
.card-content h3 {
    line-height: 45px;
    margin-bottom: 10px;
    color:blue;
    font-size: 2rem;
}
.home-card p {
    margin-bottom: 8px;
    color:blue;
    text-transform: capitalize;
    font-size: 1.2rem;
}

.card-content button {
    color: #fff;
    display: block;
    border: 1px solid #fff;
    padding: 15px 80px;
    background-color:blue;
    cursor: pointer;
    transition: 0.4 all ease;
}

.card-content button:hover {
    background: #1a1919;
}


@media (min-width: 688px){
    .home-container{
        height: 600px;
        margin: 0 auto;
    }
    .home-card{
        padding: 30px ;
        width: 80%;
        margin: 0 auto;
        
    }
}


/* RANGE SECTION */
.range-container {
   
    color: #696262;
    width: 98%;
    margin: 50px auto 0px auto;
}
.range-top-content {
   
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}
.range-top-content h2{
    border-bottom: 1px solid blue;
    padding: 10px 0;
    color:blue;
    font-weight: 200;
    font-size: 2.3rem;
}
.range-top-content p {
    padding: 20px;
    font-size: 1.2rem;
    margin-top: 10px;
    color: #696262;
  line-height: 24px;
  letter-spacing: 1px;
}
.underLine {
    border-bottom: 1px solid blue;
}
.bold {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1919;
}
.range-content {
   
    width: 98%;
    margin: 0 auto;
    display: flex;
   flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.range-left-content {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    padding: 10px;
    
}

.range-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 15px 0px;
}
.range-icon i {
    
    margin: 0px 4px 0px 0px;
    color: #fff;
    padding: 5px;
    margin-right: 15px;
    border-radius: 3px;
    background-color:blue;
    border: 1px solid white;
}

/* IMAGE RANGE */

.range-right-content{
   width: 100%; 
   margin: 0 auto;
    padding: 40px;
}
.slide-container{
    box-shadow: 7px 7px 7px 2px rgba(77,69,69,0.75);
    -webkit-box-shadow: 7px 7px 7px 2px rgba(77,69,69,0.75);
    -moz-box-shadow: 7px 7px 7px 2px rgba(77,69,69,0.75);
    margin: 0 auto;
    position: relative;
    height: 300px;
    overflow: hidden;
    width: 100%;
}
.images-container{
  width: 100%;
   
    display: flex;
    justify-content: flex-start;
    height: 300px;
    transition: 0.4s all ease-in-out;
    
}
.images-container img {
    display: block;
   object-fit: cover;
   width: 100%;
    height: 100%;
    margin: 0 auto;
}

@media (min-width:992px) {
    .range-content{
        margin: 30px auto 0px auto;
        flex-direction: row;
        
    }
    .range-top-content p{
        padding: 10px 100px;
    }
    .range-right-content{
        width: 50%;
    }
    .range-icon i{
        margin: 0 auto;
        padding: 20px;
    }
    .images-container img {
        min-width: 100%;
        min-width: 100%;
    }
}

/* @@@@@@@
TAG SECTION
@@@@@@@@@@ */

#tag{
    color: #333333;
    width: 100%;
}
.tag-container{
    width: 100%;
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.tag-left-container{
    width: 100%;
  padding: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-top: 5px;
    gap: 1rem;
}

.tag-about{
    margin: 0 auto;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: flex-start;
}
.tag-about h2 {
    border-bottom: 1px solid blue;
    padding: 10px 0;
    color: #333333;
    font-weight: 200;
    font-size: 2.3rem;
}
.tag-about h4 {
    font-weight: 900;
    color: #000;
    margin: 0 auto;
}
.tag-about p {
    font-size: 1.2rem;
    padding: 10px;
    color: #696262;
  line-height: 24px;
  letter-spacing: 1px;
}
.tag-cards{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
   
    padding: 10px;
    margin: 0 auto;
}
.tag-right-container {
   width: 100%; 
   margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
   
    align-items: center;
    justify-content: center;
}

.tag-img {
    width: 100%;
    min-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content:center;
      
}
 .tag-img img{
    background-size: cover;
    object-fit: cover;
    margin: 5px 0px;
    display: block;
   width:100%;
   
   
    
   
 }

 @media (min-width:992px){
    .tag-container{
        margin: 100px auto 0 auto;
        flex-direction: row;
        justify-content: center;
        align-items: inherit;
    }
    .tag-right-container {
       
        width: 55%;
        margin: 40px auto 0 auto;
    }
    .tag-video {
        width: 50%;
        margin: 0 auto;
        
    }
    .tag-left-container{
        height: auto;
        justify-content: flex-start;
        align-items: flex-start;
    }
 }

/* PRICING */

.table-container {
    margin-top: 50px;
width: 100%;

}
.table-container h2 {
    font-size: 2rem;
    margin: 0 auto;
    border-bottom: 1px solid blue;
    text-align: center;
    padding: 20px;
}
.table-container table {
    margin: 0 auto;
    width: 80%;
    text-align: left;
    padding: 30px;
}

.table-container th  {
    font-size: 1.2rem;
    padding: 15px;
    border-bottom: 1px solid blue;
}
table tr {
    border-bottom: 1px solid blue;
}
.table-container td{
    font-size: 1rem;
    text-align: left;
    padding: 15px;
    border-bottom: 1px solid blue;
}

.book-now {
    margin: 20px auto;
   text-align: center;
}
.book-now button{
    padding: 20px 80px;
    background-color: blue;
    border: none;
    color: #fff;
    transition: 0.4s all ease;
}
.book-now a {
    color: #fff;
}
.book-now button:hover {
    transform: translateY(-4px);
    background:black;
    opacity: 0.6;
}
/* CONTACT SECTION */

.contact-container{
    padding: 30px;
    width: 98%;
    margin:  80px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 400ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    border-radius: 4px;
    box-shadow: rgb(179, 179, 179) 0px 2px 1px -1px, rgba(179, 179, 179, 0.945) 0px 1px 1px 0px, rgba(214, 214, 214, 0.966) 0px 1px 3px 0px;
}
.contact-header h3 {
    border-bottom: 1px solid blue;
    font-weight: 300;
    font-size: 2.2rem;
    align-items: center;
    color:blue;
    margin-bottom: 20px;
}
.contact-info{
    display: flex;
    flex-direction: column; 
    gap: 5px;
    justify-content: center;
    padding: 10px;
    font-size: 1.2rem;
    margin:  0 auto;
}
.contact-flex {
    padding: 5px 0px;
    display: flex;
    align-items: center;
    justify-content: start;
}

.contact-info i {
    
    margin-right: 10px;
    color:blue;
    background-color: #fff;
    display: inline-block;
}

.contact-info  h4{
    color: #1a1919;
   
}
.contact-icons {
    padding: 10px;
    margin: 0 auto;
}
.contact-icons ul {
    padding: 20px;
    display: flex;
    list-style: none;
    gap: 1rem;
    margin: 0 10px;
    align-items: center;
}
.contact-icons li {
    margin: 0 5px;
    padding: 15px;
    background-color:blue;
    border-radius: 10px;
    color: #fff;
}

@media (min-width:688px){
    .contact-container{
        flex-direction: row;
        justify-content: space-around;
        align-items: flex-end;
    }
} 

/* FOOTER */
.footer-container {
    /* margin: 0 auto; */
    width: 100%;
    /* background; */
    display: flex;
    flex-direction: column;
    align-items: center;
    height: min-content;
}
.footer-container p {
    color:blue;
    padding: 20px 0;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    margin: 0 auto;
    padding: 0;
    width: 150px;
}
.footer-logo img {
    margin-top: 5px;
    width: 100%;
}


/* POPUP */
.popup{
    background: rgba(0, 0, 0, 0.6) ;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    display: none;
    justify-content: center;
    align-items: center;
}
.popup-content {
    font-family:  "Red Hat Mono", /* "Akaya Telivigala" */ sans-serif;
    font-weight: 600;
    height: auto;
    width: 75%;
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.close {
    position: absolute;
    display: block;
    top: -15px;
    right: -15px;
    background:#fff;
  padding: 15px;
  border-radius: 10px;
  cursor: pointer;
}
.main-popup div {
   width: 100%;
   padding: 10px;
   display: block;
}
.main-popup div input  {
    font-family: "Akaya Telivigala", sans-serif;
    width: 100%;
    display: block;
    background: none;
    border: 1px solid blue;
    font-size: 20px;
    color: #333333;
    outline: none;
    padding: 3px 0  3px 10px;
}
.main-popup div select {
    width: 100%;
    font-family: "Akaya Telivigala", sans-serif;
    width: 100%;
    display: block;
    background: none;
    border: 1px solid blue;
    font-size: 20px;
    color: #333333;
    padding: 3px 0  3px 10px;
}
.main-popup div label {
    font-size: 22px;
    width: 100%;
    color: #333333;
}
.submit  {
  width: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.submit input {
    font-size: 1.3rem;
    font-family: "Akaya Telivigala", sans-serif;
    cursor: pointer;
    border: none;
    background-color: blue;
    border-radius: 10px;
    margin-top: 20px;
    padding: 10px 60px;
    display: block;
    text-align: center;
    margin-right:  0 auto;
    transition: 0.4s all ease 
}
.submit input:hover {
    background-color:blue;
}