@charset "utf-8";
/* CSS Document */

<style>
    body {
      margin: 0;
      padding: 0;
      background-color: #fff;
    }

    .header-top {
      background-color: #a60000;
      text-align: center;
      padding: 15px 0 10px;
    }

    .logo {
      max-height: 80px;
    }

    .custom-navbar {
      background-color: #a60000;
    }

    .custom-navbar .nav-link,
    .custom-navbar .dropdown-toggle {
      color: #fff;
      margin: 0 12px;
      font-weight: 500;
      font-size: 1rem;
      transition: all 0.3s ease-in-out;
    }

    .custom-navbar .nav-link.active,
    .custom-navbar .nav-link:hover,
    .custom-navbar .dropdown-menu a:hover {
      background-color: #d11818;
      color: #fff;
      border-radius: 8px;
      padding: 6px 15px;
    }

    .custom-navbar .dropdown-menu {
      background-color: #a60000;
      border: none;
      text-align: center;
    }

    .custom-navbar .dropdown-item {
      color: #fff;
      transition: 0.3s ease;
    }

    .phone-bar {
      background-color: #a60000;
      padding: 10px 0 20px;
      text-align: center;
    }

    .phone-btn {
      color: #fff;
      background-color: #d11818;
      padding: 10px 20px;
      border-radius: 30px;
      font-weight: 500;
      text-decoration: none;
      transition: 0.3s ease;
      display: inline-block;
    }

    .phone-btn:hover {
      background-color: #ff2d2d;
      color: #fff;
    }

    @media (max-width: 991px) {
      .custom-navbar .navbar-nav {
        text-align: center;
      }
    }
  </style>
  <style>
    .carousel {
      position: relative;
    }

    .carousel-item img {
      height:600px;
      object-fit: cover;
      width: 100%;
      border-radius: 10px;
    }

    .carousel-control-prev,
    .carousel-control-next {
      width: 5%;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      background-color: #a60000; /* East Lake Inn color */
      border-radius: 50%;
      padding: 15px;
    }

    .carousel-indicators [data-bs-target] {
      background-color: #a60000;
    }
  </style>
<style>
    .about-section {
      padding: 60px 0;
      background-color: #fff;
    }

    .about-section h1 {
      font-size: 2rem;
      font-weight: bold;
      color: #000;
    }

    .about-section h1 span {
      display: block;
      font-size: 2.5rem;
      color: #a60000; /* Deep red from logo */
    }

    .about-section .underline {
      width: 40px;
      height: 3px;
      background-color: #a60000;
      margin-bottom: 20px;
    }

    .about-section p {
      font-size: 1.05rem;
      color: #333;
    }

    .read-more-btn {
      background-color: #a60000;
      color: #fff;
      font-weight: 500;
      padding: 10px 25px;
      border-radius: 10px;
      text-decoration: none;
      display: inline-block;
      transition: 0.3s;
      margin-top: 20px;
    }

    .read-more-btn:hover {
      background-color: #d11818;
      color: #fff;
    }

    .about-img {
      max-width: 100%;
      border-radius: 10px;
    }

    .image-style {
      position: relative;
      text-align: center;
    }

    .image-style img {
      max-width: 100%;
    }

    @media (max-width: 768px) {
      .about-section {
        text-align: center;
      }

      .about-section h2 span {
        font-size: 2rem;
      }
    }
  </style>
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css">
  <style>
    .amenities-section {
      background: #000 url('3.jpg') no-repeat center center/cover;
      padding: 60px 0;
      color: #fff;
      position: relative;
    }

    .amenities-box {
      background: #fff;
      color: #000;
      border-radius: 10px;
      padding: 40px;
      margin-top: 30px;
      box-shadow: 0 0 20px rgba(0,0,0,0.3);
    }

    .amenities-title {
      text-align: center;
      font-family: 'Georgia', serif;
      font-size: 2.5rem;
      font-weight: bold;
    }

    .amenities-title .stars {
      color: gold;
      font-size: 1.2rem;
      margin-top: 5px;
    }

    .img-border {
      border: 5px solid #fff;
      padding: 5px;
      border-radius: 10px;
    }

    .amenities-list {
      list-style: none;
      padding-left: 0;
      margin: 0;
    }

    .amenities-list li {
      padding: 5px 0;
      font-size: 1rem;
    }

    .amenities-list li::before {
      content: '\f111';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      color: red;
      margin-right: 10px;
      font-size: 0.6rem;
      vertical-align: middle;
    }

    @media (max-width: 767px) {
      .img-col {
        margin-bottom: 20px;
      }
    }
  </style>
  <style>
    body {
      font-family: 'Segoe UI', sans-serif;
    }

    .attractions-section {
      padding: 60px 20px;
      background-color: #fff;
    }

    .section-title {
      font-family: 'Georgia', cursive;
      font-size: 2.5rem;
      font-weight: bold;
      color: #c40000;
    }

    .title-underline {
      width: 50px;
      height: 4px;
      background-color: #c40000;
      margin: 10px auto 40px;
    }

    .attraction-box {
      text-align: left;
      margin-bottom: 40px;
      padding: 25px;
      border: 1px solid #ddd;
      border-radius: 15px;
      background-color: #fff;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
      height: 100%;
    }

    .attraction-box h5 {
      font-weight: 600;
      margin-bottom: 15px;
    }

    .attraction-box p {
      font-size: 15px;
      color: #333;
      line-height: 1.6;
    }

    .read-more-btn {
      background-color: #d60000;
      color: white;
      padding: 10px 25px;
      border-radius: 10px;
      font-weight: bold;
      border: none;
      margin-top: 10px;
    }

    .read-more-btn:hover {
      background-color: #a80000;
    }
	.footer-link:hover {
  color: #ff4d4d !important;
  text-decoration: underline;
}

.footer-social:hover {
  color: #ff4d4d !important;
  transform: scale(1.1);
  transition: 0.3s;
}

 .btn-book-now { margin-left:15px;
      position: relative;
      background-color: #fd0f0f;
      color: white;
      font-weight: 600;
      padding: 12px 30px;
      border: none;
      border-radius: 30px;
      overflow: hidden;
      transition: background-color 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 1px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .btn-book-now::before {
      content: '';
      position: absolute;
      top: 0;
      left: -75%;
      width: 50%;
      height: 100%;
      background: linear-gradient(120deg, rgba(255,255,255,0.2), rgba(255,255,255,0.6), rgba(255,255,255,0.2));
      transform: skewX(-25deg);
    }

    .btn-book-now:hover::before {
      animation: shine 1.2s ease-in-out;
    }

    @keyframes shine {
      0% {
        left: -75%;
      }
      100% {
        left: 125%;
      }
    }

    .btn-book-now:hover {
      background-color: #a00000;
      color: #fff;
    }

  </style>
  .content {color:#000; text-decoration:none;}
  .content a{color:#000; text-decoration:none;}
    .content a:hover{color:#a60000; text-decoration:none;}