
html, body {
    /* background-color: #3e1417 !important; */
    background: rgba(62, 20, 23, 0.9);
    font-family: "Lato", sans-serif;
    overflow-x: hidden;
}

.navbar-custom {
    background: linear-gradient(rgba(0,0,0,0.9), rgba(62, 20, 23, 0.9)); 
    border-bottom: 1px solid #F1F1F1;
    /* background: rgba(62, 20, 23, 1); */
    padding-left: 108px;
    padding-right: 108px;
  }


.hero {
    background:linear-gradient(rgba(62,20,23,0.1), rgba(0, 0, 0, 0.9)), url('./assets/images/about_us.png'); /* You can replace this with your own image URL */
    background-size: cover;
    background-position: center;
    height: 95vh;
    display: flex;
    justify-content: center;
    align-items:end;
    /* color: white; */
}

.hero h1 {
  font-size: 72px;
  font-style: bold;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7)); /* Gradient colors */
  -webkit-background-clip: text; /* Works in Webkit browsers like Chrome/Safari */
  background-clip: text; /* Standard syntax */
  color: transparent; /* Makes the text transparent */
}



/* --- */

.hero1 {
  height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 8rem;
  position: relative;
  overflow: visible; /* Allow overflow from child */
  background: linear-gradient(rgba(62,20,23,0.1), rgba(0, 0, 0, 0.9));
}

.hero1-image {
  width: 90%;
  height: 70vh;
  /* max-width: 1000px; */
  border-radius: 5rem;
  overflow: visible; /* Important to allow the text to extend outside */
  background: white;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.hero1-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5rem;
}

.hero1-title {
  position: absolute;
  bottom: -1em; /* Half of the text height outside */
  left: 50%;
  transform: translateX(-50%);
  /* font-size: 2.5rem; */
  /* font-weight: bold; */
  /* color: #ffffff; */
  white-space: nowrap;
  z-index: 2;

  font-size: 72px;
font-style: bold;
background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.8)); /* Gradient colors */
-webkit-background-clip: text; /* Works in Webkit browsers like Chrome/Safari */
background-clip: text; /* Standard syntax */
color: transparent; /* Makes the text transparent */
}

.hero1-subtitle {
  position: absolute;
  bottom: -7rem;
  left: 50%;
  transform: translateX(-50%);
  /* font-size: 1.25rem; */
  /* color: #ffffff; */
  white-space: nowrap;
  z-index: 2;
}


.launching-soon-row {
  padding-left: 108px;
  padding-right: 108px;
  height: 10rem;
  display: flex;
  justify-content:space-evenly;
  align-items: center;
  background-color: #F1F1F1;
  color: #3e1417;
}

/* ----- */

.first-section {
    background-image:linear-gradient( rgba(0, 0, 0, 0.9), rgba(62,20,23,0.1))
}


.btn-gradient {
    background-image: linear-gradient(to right, #3e1417 80%, #5F3B3F); /* Gradient colors */
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.9);
    /* transition: background 0.3s ease;  */
    /* Add transition for hover effect */
}

.btn-dark-gradient {
    background-image: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.3)); /* Gradient colors */
    color: white;
    /* border: 1px solid rgba(255, 255, 255, 0.7); */
}

.card-transparent {
    /* background-color: rgba(62, 20, 23, 0.5);  */
    background-color: transparent;
    /* border: 1px solid rgba(255, 255, 255, 0.9);  */
    border: 1px solid #8D5256;
}

.card-transparent > .card-body {
  background-color: transparent;
    /* background-color: rgba(62, 20, 23, 0.3);  */
}

/* Optional: For card hover effect */
/*
.card-transparent:hover {
    background-color: rgba(255, 255, 255, 0.8); 
} */

.card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.home-explore-row {
  height: 18rem;
}

.music-header-bar {
    height: 60%; /* Bar height */
    background-color: #FFDB59; 
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
    width: 30px;
    z-index: 10;
    position:absolute;
    top: 20px;
    right: 20px;
}

.drama-header-bar {
    height: 60%; /* Bar height */
    background-color: #48A5D4;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
    width: 30px;
    z-index: 10;
    position:absolute;
    top: 20px;
    right: 20px;
}

.discourse-header-bar {
    height: 60%; /* Bar height */
    background-color: #FF7E08;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
    width: 30px;
    z-index: 10;
    position:absolute;
    top: 20px;
    right: 20px;
}

.dance-header-bar {
    height: 60%; /* Bar height */
    background-color: #4FD4BE;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
    width: 30px;
    z-index: 10;
    position:absolute;
    top: 20px;
    right: 20px;
}

/* .card-header-position {
    position:absolute;
    top: 20px;
    right: 20px;
} */

.music-slanted-bar {
    height: 40px; /* Bar height */
    background-color: #FFDB59; 
    /* border-top-left-radius: .25rem;
    border-top-right-radius: .25rem; */
    border-radius: 10px;
    width: 70%;
    /* position:absolute; */
    top: 60%;
    transform: rotate(60deg); /* Slants the div at a 45-degree angle */
    transform-origin: center; /* Ensures the rotation happens around the center */
    z-index: -1;
}

.drama-slanted-bar {
    height: 40px; /* Bar height */
    background-color: #48A5D4;
    /* border-top-left-radius: .25rem;
    border-top-right-radius: .25rem; */
    border-radius: 10px;
    width: 70%;
    /* position:absolute; */
    top: 60%;
    transform: rotate(60deg); /* Slants the div at a 45-degree angle */
    transform-origin: center; /* Ensures the rotation happens around the center */
    z-index: -1;
}

.discourse-slanted-bar {
    height: 40px; /* Bar height */
    background-color: #FF7E08;
    /* border-top-left-radius: .25rem;
    border-top-right-radius: .25rem; */
    border-radius: 10px;
    width: 70%;
    /* position:absolute; */
    top: 60%;
    transform: rotate(60deg); /* Slants the div at a 45-degree angle */
    transform-origin: center; /* Ensures the rotation happens around the center */
    z-index: -1;
}

.dance-slanted-bar {
    height: 40px; /* Bar height */
    background-color: #4FD4BE; 
    /* border-top-left-radius: .25rem;
    border-top-right-radius: .25rem; */
    border-radius: 10px;
    width: 70%;
    /* position:absolute; */
    top: 60%;
    transform: rotate(60deg); /* Slants the div at a 45-degree angle */
    transform-origin: center; /* Ensures the rotation happens around the center */
    z-index: -1;
}

.section-overlay-img {
  top: 70%;
  position: absolute;
  transform: translate(-50%, -50%); /* Adjust image to be centered */
  z-index: 10;
}

.card-body:hover .original-content {
    display: none;
}

.new-content {
    display:none;
}

.new-content >  h3 , .new-content > p {
  color: #F7DEE0 !important;
}

.card-body:hover .new-content {
    display: block;
}


.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%; /* Make it round */
  background-color: white;
  color: #3e1417; 
  font-size: 20px; /* Icon size */
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #3e1417; /* Optional: red border for a clearer button */
  cursor: pointer;
  transition: background-color 0.3s;
}

.icon-btn:hover {
  background-color: #f8f9fa; /* Change background on hover */
}

.icon-btn i {
  transform: rotate(315deg); /* Rotate the icon by 45 degrees */
}


.event-home-card {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  background-color: transparent;
  border: 1px solid #A68588;
}

.swap-btn {
  font-size: 16px;
  font-style: normal;
}

.ribbon1 {
    background-color: #25A047;
    height: 3rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ribbon2 {
    background-color: #EBA71E;
    height: 3rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ribbon3 {
    background-color: #94116F;
    height: 3rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ribbon4 {
    background-color: #3F88C8;
    height: 3rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ribbon5 {
  background-color: #F18A00;
  height: 3rem;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ribbon6 {
  background-color: #10AA91;
  height: 3rem;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.price1 {
  background-color: #E5FFEC;
}

.price1:hover {
  background-color: #E5FFEC;
}

.price2 {
  background-color: #F6E6C4;
}

.price2:hover {
  background-color: #F6E6C4;
}

.price3 {
  background-color: #EFDCEA;
}

.price3:hover {
  background-color: #EFDCEA;
}

.price4 {
  background-color: #E5F3FF;
}

.price4:hover {
  background-color: #E5F3FF;
}

.price5 {
  background-color: #FFE5C1;
}

.price5:hover {
  background-color: #FFE5C1;
}

.price6 {
  background-color: #D4FAF4;
}

.price6:hover {
  background-color: #D4FAF4;
}


.about-row {
  height: 75vh;
}

/* .about-row img  {
  max-height: 100%;
} */


.about-div {
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.001));
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    justify-content: center;
}

.right-col {
  height: 100% !important;
}

.new-img {
  max-height: 100% !important;
}

.about-div  h4 {
  color: #F7DEE0 !important;
}

.about-div  p {
  color: #FFEFDA;
}

.img-rounded {
    /* border-radius: 20px; */
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.natyarangam-section {
    height: 90vh;
    background-repeat: no-repeat;
    background-position: center;
    /* background: url('./assets/images/drama.png') no-repeat center; */
    /* background: linear-gradient(rgba(0,0,0,0.1), rgba(62,20,23,1)), url('./assets/images/natyarangam_logo.png') no-repeat center; */
    /* background: url('./assets/images/natyarangam_logo.png') no-repeat center;  */
    background-size: contain;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items:center;
    color: white;
    border-bottom: 2px solid black;
    position: relative;
}

.natyarangam-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: url('./assets/images/natyarangam_logo.png') no-repeat center center/contain; */
  background: url('./assets/images/natyarangam_logo.png') no-repeat center bottom/contain;
  /* filter: blur(5px); */
  opacity: 0.3;
  z-index: 1;
}



.natyarangam-section > * {
  color: #F7DEE0;
  z-index: 2;
}

.spaces-card {
    /* background-color: rgba(62, 20, 23, 0.1); */
    background-color: rgba(62, 20, 23, 0.9);
    /* color: white; */
    overflow: hidden;
}


.spaces-card > .card-body {
    /* background: linear-gradient( rgba(62, 20, 23,0.1),  rgba(0, 0, 0, 0.3)) */
    background: linear-gradient( rgba(62, 20, 23,1),  rgba(0, 0, 0, 0.5))
}

.spaces-card h4 {
  color: #F7DEE0;
}

.spaces-card p {
  color: #FFEFDA;
}


.expandable {
    height: 0; /* Start with zero height */
    overflow: hidden; /* Hide content when collapsed */
    /* padding: 10px; */
    bottom: 0;
    left: 0;
    transition: height 1s ease-out; /* Smooth height transition */
  }

  .spaces-card:hover .expandable {
    height: 3rem;
  }

  .brass-ribbon {
    background-color: #95241D;
    height: 5rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #FFF9EE;
  }

  .explore-events-btn { 
    background-image: linear-gradient(to bottom, rgba(62, 20, 23, 1), rgba(62,20,23,0.6));
    font-size: 18px;
  }

  .event-body {
    overflow: hidden;
  }

  .event-body > p {
    color: #FFEFDA;
  }
  

  .event-body:hover {
    background: linear-gradient(to bottom, rgba(62,20,23,0.5), rgba(0,0,0, 0.5));
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
  }

  .event-venue-text {
    position: absolute;
    opacity: 0; /* Text is initially hidden */
    transform: translateY(20px); /* Start from below */
    transition: opacity 0.5s ease, transform 0.5s ease; /* Smooth transition with easing */
    /* font-size: 12px; */
    color: white;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .event-body:hover .event-venue-text {
    opacity: 1; /* Text becomes visible */
    transform: translateY(0); /* Text moves into position */
  }


/* 
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 2rem;
    color: #333;
    cursor: pointer;
  }

  .prev {
    left: 10px;
  }

  .next {
    right: 10px;
  } */

  
   /* Change the background color of the dropdown menu */
.dropdown-menu {
    background-color: #3e1417; /* Green background */
  }
  
  /* Change the text color inside the dropdown items */
  .dropdown-item {
    color: white; /* White text */
  }
  
  /* Change the text color on hover */
  .dropdown-item:hover {
    background-color: #3e1417; /* Darker green on hover */
    color: white; /* Keep text white on hover */
  }

  .text-muted-custom {
    color: rgba(255, 255, 255, 0.5);
  }

  .text-ultra-light {
    color: rgba(255, 255, 255, 0.1);
  }

  @media (max-width: 767.98px) { 

    .hero1{
      padding-bottom: 5rem;
    }

    .hero1-title {
      font-size: 40px !important;
    }

    .hero1-subtitle {
      bottom: -5rem;
      font-size: 0.9rem;
    }

    .launching-soon-row {
      padding-left: 0px;
      padding-right: 0px;
      height: 20rem;
    }

    .launching-soon-row img {
      height: 60px;
      width: 60px;
    }

    /* .launching-soon-row div {
      flex-direction: column;
      width: 100%;
    } */

    /* .launching-soon-row div {
      width: 100%;
    } */

    .music-slanted-bar {
        height: 40px; /* Bar height */
        background-color: #FFDB59; 
        /* border-top-left-radius: .25rem;
        border-top-right-radius: .25rem; */
        border-radius: 20px;
        width: 45%;
        position:absolute;
        top:35%;
        left: 20%;
        transform: rotate(60deg); /* Slants the div at a 45-degree angle */
        transform-origin: center; /* Ensures the rotation happens around the center */
        z-index: 1;
    }
    
    .drama-slanted-bar {
        height: 40px; /* Bar height */
        background-color: #48A5D4;
        /* border-top-left-radius: .25rem;
        border-top-right-radius: .25rem; */
        border-radius: 20px;
        width: 45%;
        position:absolute;
        top: 35%;
        left: 20%;
        transform: rotate(60deg); /* Slants the div at a 45-degree angle */
        transform-origin: center; /* Ensures the rotation happens around the center */
        z-index: 1;
    }
    
    .discourse-slanted-bar {
        height: 40px; /* Bar height */
        background-color: #FF7E08;
        /* border-top-left-radius: .25rem;
        border-top-right-radius: .25rem; */
        border-radius: 20px;
        width: 45%;
        position:absolute;
        top: 35%;
        left: 20%;
        transform: rotate(60deg); /* Slants the div at a 45-degree angle */
        transform-origin: center; /* Ensures the rotation happens around the center */
        z-index: 1;
    }
    
    .dance-slanted-bar {
        height: 40px; /* Bar height */
        background-color: #4FD4BE; 
        /* border-top-left-radius: .25rem;
        border-top-right-radius: .25rem; */
        border-radius: 20px;
        width: 45%;
        position:absolute;
        top: 35%;
        left: 20%;
        transform: rotate(60deg); /* Slants the div at a 45-degree angle */
        transform-origin: center; /* Ensures the rotation happens around the center */
        z-index: 1;
    }

    .section-overlay-img {
        top: 70%;
        position: absolute;
        transform: translate(-50%, -50%); /* Adjust image to be centered */
        z-index: 10;
        left: 50%;
      }


      .about-row {
        height: 50vh !important;
        margin-bottom: 15rem !important;
      }

      .right-col  img {
        height: 50vh !important;
      }


      .events-slider-container {
        background: linear-gradient(to top, rgba(62, 20, 23, 0.5), rgba(0, 0, 0, 0.5));
        border-top-right-radius: 90px;
        border-top-left-radius: 90px;
      }


      .slider-container {
        height: 80vh !important;
      }

      .upcoming-title {
        font-size: 1.5rem !important;
        font-weight: 400;
      }

 }




 /* ----------------------------------- */

 .slider-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    height: 100vh;
    /* display: flex; */
  }

   /* .my-slider {
    display: flex;
    height: 100%;
    overflow: hidden;
    justify-content: center;
    align-items: center;
  }

  .my-slider div {
      display: flex;
      min-height: 100% !important;
  } */

  .btn-rounded-gradient {
    /* background: linear-gradient(to right, #ff7e5f, #feb47b); */
    background-color: rgba(27, 26, 26, 0.8);
    border-radius: 50%;
    padding: 15px;
    color: white;
    border: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    position: absolute;
    top: 50%; /* Vertically center the buttons */
    transform: translateY(-50%);
    z-index: 10;
    width: 60px; /* Set width */
    height: 60px; /* Set height to the same as width */
  }

  .previous {
    left: 10px; /* Position to the left */
  }

  .next {
    right: 10px; /* Position to the right */
  }

   /* Center the previous and next buttons horizontally */
   .previous,
  .next {
    top: 50%;
    transform: translateY(-50%);
  }

  .btn-rounded-gradient:hover {
    /* background: linear-gradient(to right, #feb47b, #ff7e5f); */
    background-color: rgba(27, 26, 26, 0.9);
    /* opacity: 0.9;  */
  }


  /* Hide prev/next controls */
.tns-controls {
    display: none !important;
  }
  
  /* Hide pagination dots (nav) */
  .tns-nav {
    display: none !important;
  }
  
  /* Hide the autoplay stop button */
  .tns-playbutton {
    display: none !important;
  }

  .card-img-top-custom {
    height: 20rem;
    object-fit: cover;
  }



  /* spaces effect */

   /* Scrollable Div - Full width and fixed height */
   .scroll-container {
    width: 100vw; /* Full viewport width */
    height: 100%; /* Fixed height for scrolling */
    overflow-y: scroll;  /* Enable vertical scroll */
    scrollbar-width: none;
    position: relative;
    margin: 0; /* Remove margin */
}

    /* Cards Styling */
    .moving-card {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      /* width: 18rem; */
      z-index: 1;
      transition: transform 0.3s ease;
      transform-origin: center center;
  }

  /* Card 1 */
  .card1 {
      z-index: 2;
      transform: translate(-50%, -50%) rotate(-15deg);
      height: 25rem;
      width: 30rem;
      transition: height 0.5s ease-in; /* Smooth height transition */
  }

  /* Card 2 */
  .card2 {
      z-index: 1;
      transform: translate(-50%, -50%) rotate(15deg);
      height: 25rem;
      width: 30rem;
      transition: height 0.5s ease-in; /* Smooth height transition */
  }


  /* about section */
  /* .right-col img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
} */

.new-img {
    display: none;
}

  /* The image that will drop */
  .hero-img {
    position: absolute;
    top: 0%; /* Start the image from the top of the screen */
    left: 50%;
    transform: translateX(-50%);
    width: 140px; /* Adjust width as needed */
    height: auto;
    visibility: visible; /* Ensure image is visible */
    z-index: 1; /* Ensure the image is above other content */
}


.unstyled-link {
  color: #F7DEE0 ;
  text-decoration: none;
}

.unstyled-link:visited, .unstyled-link:active  {
  color: #F7DEE0;
  text-decoration: none;
}

.event-link-unstyled {
  text-decoration: none;
}

.event-link-unstyled:visited, .event-link-unstyled:active  {
  text-decoration: none;
}


/* mobile  nav styles  */

.mobile-nav-button {
  border: none;
  background: none;
  color: #FFF9EE !important;
  margin: 20px;
  padding: 0; /* Adjust padding as needed */
  color: inherit; /* Inherit text color if desired */
}

.mobile-nav-button:focus {
  box-shadow: none;
  outline: none;
}


/* Drawer panel */
        .full-drawer .drawer-panel {
        width: 280px;              /* drawer width */
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;

        transform: translateX(-100%);
        transition: transform 0.35s ease;
        }

        /* When modal is open, slide drawer in */
        .full-drawer.show .drawer-panel {
        transform: translateX(0);
        }

        /* Dark fullscreen overlay */
        .full-drawer .modal-content {
        background-color: #F7DEE0;
        }


        /* Make accordion buttons cleaner */
.drawer-panel .accordion-button {
  box-shadow: none;
}

/* Make accordion borders subtle */
.drawer-panel .accordion-item {
  border-bottom: 1px solid rgba(255,255,255,0.5);
}

.drawer-panel .accordion-button::after {
  filter: invert(1); /* white arrow icon */
}


/* STICKY bottom container */
.drawer-social-icons {
  position: absolute;
  bottom: 100px;
  left: 10px;
  width: 100%;
  
  display: flex;
  justify-content: start;
  gap: 20px;

  padding: 10px 0;
}

/* Social button style */
.drawer-social-icons .social-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  
  display: flex;
  justify-content: center;
  align-items: center;

  background-color: rgba(0,0,0,0.1);
  color: rgba(0,0,0,0.5);
  font-size: 1.3rem;
  text-decoration: none;

  transition: background-color 0.25s ease, transform 0.25s ease;
}

/* Hover effect */
.drawer-social-icons .social-btn:hover {
  background-color: rgba(0,0,0,0.1);
  transform: translateY(-2px);
}


/* Remove Bootstrap’s default arrow */
.drawer-panel .accordion-button::after {
  display: none !important;
}

/* Add + symbol on the RIGHT side */
.drawer-panel .accordion-button::before {
  content: "+";
  font-size: 2.4rem;
  color: black;
  position: absolute;
  right: 16px;   /* pushes + to the end */
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.25s ease;
}

/* When expanded → change to – */
.drawer-panel .accordion-button:not(.collapsed)::before {
  content: "–";
}


/* Base button style */
.menu-toggle {
  width: 25px;
  height: 20px;
  background: none;
  border: none;
  padding: 0;
  /* margin: 10px; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  /* z-index: 2000; */
}

/* Hamburger lines */
.menu-toggle span {
  display: block;
  height: 4px;
  width: 100%;
  background: #000;       /* change color as needed */
  border-radius: 2px;
  transition: all 0.35s ease;
  transform-origin: center;
}

/* When drawer (modal) is open */
.full-drawer.show ~ .menu-toggle span:nth-child(1),
.menu-toggle.active span:nth-child(1) {
  transform: translateY(12px) rotate(45deg);
}

.full-drawer.show ~ .menu-toggle span:nth-child(2),
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.full-drawer.show ~ .menu-toggle span:nth-child(3),
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-12px) rotate(-45deg);
}

.menu-toggle span {
  background: #FFF9EE;
}

.mobile-nav {
  background: linear-gradient(rgba(0,0,0,0.9), rgba(62, 20, 23, 0.9));;
}


.mobile-hero {
  margin-top: 0;
  height: 50vh;
  background: rgba(62, 20, 23, 0.9) url('/assets/images/ngs_mobile_hero.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.mobile-hero-title {
  color: #E8C1AB;
  font-family: "Montserrat", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  position: relative;
  margin-top: 5rem;
}

.mobile-hero-subtitle {
  color: #FEFFFF;
  font-family: "Lato", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  margin-top: 1rem;
}

.mobile-hero-about {
  font-family: "Lato", sans-serif;
  color: #FEEBD0;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.mobile-hero-description {
  font-family: "Lato", sans-serif;
  color: #FEFFFF;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}


.social-links {
  text-decoration: none;
  color: white;
}

.social-links:visited, .social-links:active {
  text-decoration: none;
  color: white;
}

/* .navbar *, .navbar *::before, .navbar *::after {
  outline: 1px solid red !important;
} */