@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300&family=Open+Sans:wght@300;400&family=Raleway:wght@200;300&display=swap');

/* Css reset */
* {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
}

/* Main styling */
body {
   font-family: 'Raleway', sans-serif;
   font-weight: 100;
   line-height: 1.6;
   color: #333;
   max-width: 100%;
}

h1, h2, h3 {
   padding-bottom: 0.625rem;
   line-height: 1.3;
   font-weight: 100;
}

p {
   margin: 0.625rem 0;
}

ul {
   list-style: none;
}

a {
   text-decoration: none;
   color: #333;
}

img {
   width: 100%;
}



/* Hero */
.hero {
   background: url('../img/place/smotechpicc.png') no-repeat center center/cover;
   height: 100vh;
   color: #fff;
   position: relative;
   padding-top: 0.938rem;
   z-index: 0;
}

.hero .content {
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   text-align: center;
   height: 100%;
   padding: 0 1.25rem;
   line-height: 1.8;
}

.hero .content h5 {
   font-size: 3.25rem;
   font-weight: 600;
   padding-bottom: 1.25rem;
   animation: zoomText 3s infinite alternate ease-in-out;
}

@keyframes zoomText {
   0% {
      transform: scale(1);
   }
   100% {
      transform: scale(1.1);
   }
}

.hero .content p {
   font-size: 1.375rem;
   overflow: hidden;
   white-space: nowrap;
   border-right: none;
   width: auto;
   animation: none;
}

.hero .content .btn {
   margin-top: 1.25rem;
}

.hero::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   height: 100%;
   width: 100%;
   background: rgba(0, 0, 0, 0.4);
}



.text-primary {
   color: rgb(252, 25, 25) !important;
}







/* Icons */
.icons {
   padding: 1.25rem;
}

.icons i {
   font-size: 2.5rem;
   color: #4312b4;
   padding-bottom: 1rem;
}

.icons h3 {
   font-weight: 600;
}




 





/* Video Styling */
.about-video {
   width: auto;
   height: auto;
   max-width: 100%;
   display: block;
   border-radius: 8px; /* optional */
}

/* Responsive for small screens */
@media screen and (max-width: 600px) {
   .about-video {
      width: 100%;
      height: auto;
   }
}




/* Section Styling */
  .logo-section {
    background: #869ce6;
    height: 50vh; /* half the page */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 30px; /* rounded corners */
    overflow: hidden;
    padding: 20px;
    box-sizing: border-box;
  }

  /* Section Title */
  .logo-section h3 {
    
    color: #085024;
    
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 1px;


     padding-top: 1.25rem;
   font-weight: 500;
   font-size: 2.5rem;
  }

  /* Carousel Container */
  .logo-carousel-container {
    overflow: hidden;
    width: 90%;
  }

  /* Track moving left */
  .logo-carousel-track {
    display: flex;
    width: max-content;
    animation: scroll-left 20s linear infinite;
  }

  /* Individual Logos */
  .logo-item {
    flex: 0 0 auto;
    margin: 0 20px;
    transition: transform 0.3s ease;
  }

  .logo-item img {
    height: 12.5rem; /* similar to icons */
    width: auto;
    display: block;
  }

  /* Hover Effect */
  .logo-item:hover {
    transform: scale(1.2);
  }

  /* Loop Animation */
  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  /* Responsive Design */
  @media (max-width: 1024px) {
    .logo-item img {
      height: 2.25rem;
    }
  }

  @media (max-width: 768px) {
    .logo-item img {
      height: 2rem;
      margin: 0 15px;
    }

    .logo-section h3 {
      font-size: 1.5rem;
    }
  }

  @media (max-width: 480px) {
    .logo-item img {
      height: 1.75rem;
      margin: 0 10px;
    }

    .logo-section h3 {
      font-size: 1.3rem;
      margin-bottom: 15px;
    }
  }


/* food */
.food img {
   border-radius: 0.188rem;
}

.food img:hover {
   opacity: 0.7;
}




/* <!-- Add this CSS inside your style.css --> */

.gallery {
  text-align: center;
  padding: 50px 20px;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  justify-content: center;
  align-items: center;
}

.gallery-container img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-container img:hover {
  transform: scale(1.05);
}

/* Responsive layout for mobile (2 columns × 3 rows) */
@media (max-width: 768px) {
  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 85vh;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}

.close:hover {
  color: #f44336;
}




/* Rooms */
.rooms p {
   font-weight: 500;
}

.rooms .room {
   display: flex;
   flex-direction: row;
   padding: 0 1.25rem;
   font-weight: 500;
}

.rooms .room > div {
   display: flex;
   flex-direction: column;
   padding: 0 1.25rem;
}

.rooms .room img {
   border-radius: 0.188rem;
}

.rooms .room h3 {
   padding-top: 1.25rem;
   font-weight: 500;
   font-size: 1.313rem;
}

.rooms .room .list {
   padding: 0.938rem 0 1.875rem 0;
}

.rooms .room .list ul {
   list-style: disc;
   padding: 0 1.125rem;
   font-size: 1.063rem;
}

.rooms .room .list ul li {
   padding: 0.313rem 0;
}

.rooms .room .btn {
   width: 100%;
   margin-top: 0.625rem;
   text-align: center;
}

.rooms .room .btn:hover {
   background: #3cce96;
   color: #fff;
}

/* Contact */
.contact h2 {
   font-weight: 500;
   padding-top: 0.625rem 0;
}

.contact form {
   display: flex;
   flex-direction: column;
   align-items: flex-start;
   justify-content: center;
   width: 100%;
}

.contact input {
   width: 100%;
   padding: 0.625rem;
   border: 0.063rem solid #ddd;
}

.contact input:focus {
   outline: none;
   border: 0.063rem solid #7f63e6;
   font-size: 0.825rem;
}

.contact .form-group {
   padding-bottom:1.25rem;
   width: 100%;
}

.form-group label {
   display: none;
}

.contact .btn {
   padding:0.75rem;
}


/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: all 0.3s ease-in-out;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-icon {
  width: 35px;
  height: 35px;
  margin-top: 12px;
}


/* About-info
.hero.about-post {
   background: url(../img/home/about-post.jpg) no-repeat center center/cover;
   height: 50vh;
}

.hero.about-post .content {
   padding-top: 1.25rem;
}

.hero.about-post .content h1 {
   font-size: 4.375rem;
}

.post {
   display: flex;
   flex-direction: column;
   align-items: flex-start;
   justify-content: center;
   padding: 2.5rem 2.813rem;
   font-weight: 500;
   font-size: 1.094rem;
   text-align: center;
}

.post h1 {
   font-weight: 500;
   padding-top: 0.625rem;
   font-size: 2.125rem;
}


 
.post-one {
   padding: 1.875rem 0 1.875rem;
   border-bottom: 0.063rem solid #3cce96;
}
 */
.rooms.about-rooms .btn:hover {
   background: #14af74;
}

.post-two {
   padding: 0 0 1.25rem;
   margin: 0 0 1.875rem;
   border-bottom: 0.063rem solid #806ee6;
}

.post-two:last-child {
   border-bottom: none;
}

.contact-info {
   display: flex;
   align-items: center;
   justify-content: center;
   text-align: center;
   padding: 0 0 1.875rem;
   font-size: 1.25rem;
   font-weight: 500;
}

.contact-info p {
   padding: 0 1.25rem;
}

.contact-info i {
   color: #aaa;
   padding: 0.625rem;
}

.contact-info p:last-child {
   background: #707bda;
   color: #fff;
   padding: 0.938rem;
   border: 0.063rem solid #ddd;
}

/* Thank you */
.container {
   background-color: #7975ec;
   height: 100vh;
   color: #fff;
}

.thankyou {
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   text-align: center;
   height: 80%;
   margin: 0 3.125rem;
}

.thankyou .content {
   background: url('../img/home/thankyou.gif') no-repeat center center/cover;
   padding-top: 25rem;
   font-weight: 500;
}

.thankyou .content h1 {
   font-size: 2.813rem;
   background-color: #0284d0;
   padding: 0.313rem;
   border-radius: 0.313rem;
}

.thankyou .content p {
   font-size: 0.95rem;
}


#alcohol-menu .container {
   text-align: center; /* Centers the text inside the container */
}

#alcohol-menu h2 {
   font-size: 2em;
   margin-bottom: 10px;
   color: #f0e7e7;
}

#alcohol-menu p {
   font-size: 0.9em;
   color: #fdfdfd;
   margin-bottom: 20px;
}





.course_boxes {
   display: flex;
   justify-content: space-between;
   padding: 20px;
   flex-wrap: wrap;
}

.course_box {
   flex: 1;
   margin: 10px;
   max-width: 30%;
   background-color: #f1f1f1; /* A subtle background color to fit the alcohol theme */
   border: 1px solid #ccc; /* Lighter border for a cleaner look */
   border-radius: 8px; /* Slightly rounded corners */
   overflow: hidden;
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Adds depth to the card */
   transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effect */
}

.course_box:hover {
   transform: scale(1.05); /* Slightly enlarges the card on hover */
   box-shadow: 0 8px 16px rgba(204, 70, 70, 0.2); /* Enhances the shadow on hover */
}

.card {
   display: flex;
   flex-direction: column;
   height: 100%;
}

.card-img-top {
   width: 100%;
   height: 250px; /* Increased height for better display of the alcohol images */
   object-fit: cover;
   border-bottom: 1px solid #ddd; /* Adds a subtle divider between image and text */
}

.card-body {
   padding: 15px;
   text-align: center;
}

.card-title {
   font-size: 0.8em;
   font-weight: bold;
   color: #333; /* Dark text for the title */
   margin-bottom: 10px;
   text-transform: uppercase; /* Uppercase for added emphasis */
}

.card-text {
   font-size: 0.7em;
   color: #555; /* A softer text color for description */
   line-height: 1.5;
}


/*  */

/* Media queries */
/* ? @900px */
@media(max-width: 56.25rem) {
   .navbar .logo {
      order: 1;
      padding: 0.938rem 0;
      transform: none;
   }
   
   .navbar nav {
      order: 3;
   }
   
   .navbar .social {
      display: none;
      order: 2;
   }
   
   .hero .content h1 {
      font-size: 4.688rem;
   }

   .hero .content p {
      font-size: 1.25rem;
   }
}

/* ? @768px */
@media(max-width: 48rem) {
   .flex-items {
      flex-direction: column;
   }

   section.flex-columns .column {
      flex: 100%;
      max-width: 100%;
   }

   section.flex-grid .column {
      flex: 50%;
      max-width: 50%;
   }

   .rooms .room {
      flex-direction: column;
      padding: 0.313rem 6.25rem;
   }

   .rooms .room > div {
      padding: 0;
   }
}

/* ? @600px */
@media(max-width: 37.5rem) {
   .navbar {
      flex-direction: column;
      height: 6.875rem;
   }

   .navbar .logo {
      padding: 0 1.25rem 0.938rem;
   }

   .navbar nav a {
      padding: 0.938rem 0.813rem;
   }
}

/* ? @500px */
@media(max-width: 31.25rem) {
   .hero .content {
      line-height: 1.6;
   }

   .hero .content p {
      font-size: 1.188rem;
   }

   .rooms .room {
      padding: 0.625rem 1.875rem;
   }
}

