﻿@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}


/* General Styles */
body {
    font-family: 'Lato', sans-serif;
background: url(../assets/images/img/body-bg.png) center center / cover no-repeat !important;

background-attachment: fixed;
background-size: cover;
    color: #2E2B2B; /* Dark Brown text */
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
   font-family: 'Jost', sans-serif;
    font-weight: 700;
    /* Dark Brown */
}


h1 {
   font-family: 'Jost', sans-serif;
  font-size: 20px!important;
    color: #eafff6;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 600;
}

h1 a {
   font-family: 'Jost', sans-serif;
  font-size: 32px!important;
    color: #eafff6;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 600;
}


h1 a:hover {
   font-family: 'Jost', sans-serif;
  font-size: 20px!important;
    color: #eafff6;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 600;
}


p, a, li {
    font-family: 'Lato', sans-serif;
   
    font-weight: 400;
}



/* Top Bar */
.topbar {
    /* Rich Green to Sky Blue */
    color: #ffffff;
    font-size: 17px;
    padding: 10px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	    background: #783fc4;
}

/* Container Layout */
.topbar-container {
    width: 90%;
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Sections */
.topbar-left, .topbar-center, .topbar-right {
    display: flex;
    align-items: center;
    flex: 1;
}

.topbar-left {
    justify-content: flex-start;
}

.topbar-center {
    justify-content: center;
    font-weight: 400;
    color: #f0f0f0;
    font-size: 16px;
    text-align: center;
}

.topbar-right {
    justify-content: flex-end;
    gap: 12px;
}

/* Call Link */
.call-link {
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.call-link:hover {
    color: #c8e6c9; /* Soft mint green */
}

/* Social Media Icons */
.social-icon {
    font-size: 15px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.social-icon i {
    color: #ffffff;
}

.social-icon:hover {
    background: #ffffff;
}

.social-icon:hover i {
    color: #0288d1; /* Accent blue */
}

/* Book Now Button */
.book-now {
    background: linear-gradient(to right, #ffffff, #dcedc8);
    color: #1b5e20;
    padding: 9px 18px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.book-now:hover {
    background: linear-gradient(to right, #a5d6a7, #81d4fa); /* Soft green to blue */
    color: #004d40;
    transform: scale(1.06);
}



/* 🔹 Responsive Design - Tablet & Mobile */
@media screen and (max-width: 1024px) {
    .topbar-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .topbar {
        padding: 12px 0;
    }

    .topbar-left,
    .topbar-center,
    .topbar-right {
        width: 100%;
        justify-content: center;
        margin-bottom: 8px;
    }

    .topbar-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .social-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .book-now {
        font-size: 13px;
        padding: 7px 14px;
    }
}

/* 🔹 Mobile View Fixes */
@media screen and (max-width: 768px) {
    .topbar {
        flex-direction: column;
        padding: 10px 0;
    }

    .topbar-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .topbar-left,
    .topbar-center,
    .topbar-right {
        width: 100%;
        justify-content: center;
        text-align: center;
        margin-bottom: 6px;
    }

    .topbar-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .social-icon {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }

    .book-now {
        font-size: 12px;
        padding: 6px 12px;
    }
}
#nav-list li a.active {
  color: #f1f313; /* or any highlight color */
  font-weight: bold;
  border-bottom: 2px solid #0259a9;
  
}
/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Transparent Header */
.transparent-header {
    background: transparent;
    padding: 15px 0;
    position: absolute;
    width: 100%;
    z-index: 102;
    transition: background-color 0.3s ease;
    color: #fff;
}

header.sticky {
    background-color: rgba(255, 255, 255, 0.95);
    color: #1C1C1C; /* Changed from #333 */
}


header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Enlarged Logo */
.logo-img {
      height: 80px;
    position: relative;
    z-index: 103;
    background: #fff;
    padding: 6px;
}

/* Hamburger Menu */
#hamburger-menu {
    display: none;
    cursor: pointer;
    position: relative;
}

.hamburger-lines {
    width: 25px;
    height: 3px;
   background-color: #fff;
    margin: 5px;
    transition: all 0.3s ease;
}

#hamburger-menu:hover .hamburger-lines:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

#hamburger-menu:hover .hamburger-lines:nth-child(2) {
    opacity: 0;
}

#hamburger-menu:hover .hamburger-lines:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

/* Enhanced Full-Screen Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00C9A7 0%, #007BFF 100%);
    backdrop-filter: blur(10px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mobile-menu-overlay.open {
    display: block;
    opacity: 1;
}

/* Center Content */
.mobile-menu-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 20px;
    text-align: center;
    color: white;
    animation: fadeSlide 0.6s ease forwards;
}

@keyframes fadeSlide {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.mobile-logo img {
    width: 160px;
    margin-bottom: 40px;
    filter: drop-shadow(0 5px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.mobile-logo img:hover {
    transform: scale(1.1);
}

.mobile-menu-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 320px;
}

.mobile-menu-content ul li {
    margin: 12px 0;
}

.mobile-menu-content ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 20px;
    color: #fff;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.3s, transform 0.2s ease;
    text-decoration: none;
}

.mobile-menu-content ul li a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.mobile-menu-content ul li .btn-book-now {
    background: #8a5dc6;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 6px 15px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
}

.mobile-menu-content ul li .btn-book-now:hover {
    background:#0571bc;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.5);
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 42px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.close-btn:hover {
    transform: rotate(90deg);
}

/* Desktop Navigation */
.desktop-nav {
    list-style: none;
    display: flex;
    gap: 25px;
}

.desktop-nav.open {
    display: block;
}

header nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 400;
    font-size: 20px;
    transition: color 0.3s ease, transform 0.3s ease;
}

header nav ul li a:hover {
    color: #ffffff;
    transform: scale(1.05);
}

/* Neon "Book Now" Button */
.btn-book-now {
    background-color: #007BFF;
    padding: 15px 30px;
    border-radius: 10px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.6);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.btn-book-now:hover {
   background-color: #4CAF50;
   color: #fff;
    box-shadow: 0 0 25px rgba(76, 175, 80, 0.7);
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.vegas-slide-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Dark overlay */
.opacity-mask {
    position: relative;
    z-index: 1;
      background-color: rgb(0 0 0 / 55%);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hero Text */
.slide-animated.one {
    font-size: 1.2rem;
    font-weight: 500;
    color: #f1f313;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

.slide-animated.two {
    font-size: 3rem;
    color: #ffffff;
    font-weight: bold;
    margin-top: 10px;
    opacity: 0;
    animation: fadeInUp 1s ease 1s forwards;
}

@media (max-width: 768px) {
    .hero {
        height: 100vh; /* Fullscreen on mobile too */
        width: 100%;
        position: relative;
        overflow: hidden;
    }

    .vegas-slide-wrapper {
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }

    .opacity-mask {
        padding: 0 20px;
        text-align: center;
    }

    .slide-animated.one {
        font-size: 1rem;
    }

    .slide-animated.two {
        font-size: 1.8rem;
        line-height: 1.3;
    }
}


/* Keyframes for Fade-in Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Layout */
@media (max-width: 820px) {
    .container {
        padding: 0 10px;
    }

    .desktop-nav {
        display: none;
    }

    /* Show Hamburger Menu */
    #hamburger-menu {
        display: block;
    }

    .logo {
        display: flex;
        justify-content: left;
        width: 100%;
    }

    .btn-book-now {
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    

    .btn-book-now {
        padding: 8px 15px;
    }

    header .logo img {
        height: 70px;
    }
}


/* Welcome Section Background */
.Wytheville-welcome-section {
   /* background: linear-gradient(135deg, #00c9a740, #00b4d800, #00e5ff00);*/
   /*background: linear-gradient(135deg, #783fc4, #00b4d800, #d1dc0b);*/
  background: repeat url(assets/images/img/body-bg.png)!important;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Diagonal Overlay */
.Wytheville-welcome-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
       /*background: linear-gradient(60deg, #90c036 30%, transparent 80%);*/
    z-index: 0;
}

/* Main Container */
.Wytheville-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left Content */
.Wytheville-text {
    flex: 1;
    max-width: 600px;
}

.section-subtitle {
    font-size: 20px;
    color: #eafff6;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}


.section-subtitle:hover {
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.section-title {
    font-size: 40px;
    color: #FFFFFF;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); /* Enhanced shadow for readability */
}

.section-description {
    font-size: 20px;
    color: #f2f9fc;
    margin-bottom: 15px;
    line-height: 1.8;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.35); /* Better legibility */
}

/* Floating Images */
.Wytheville-images {
    flex: 1;
    position: relative;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.Wytheville-floating-image {
    width: 300px;
    height: auto;
    border-radius:80px 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease-in-out;
}

.Wytheville-image1 {
    animation: floatUpDown 4s infinite alternate ease-in-out;
}

.Wytheville-image2 {
    animation: floatUpDownReverse 4s infinite alternate ease-in-out;
}

@keyframes floatUpDown {
    from { transform: translateY(0); }
    to { transform: translateY(-20px); }
}

@keyframes floatUpDownReverse {
    from { transform: translateY(-20px); }
    to { transform: translateY(0); }
}

/* Read More Section */
.read-more-section {
    margin-top: 20px;
    position: relative;
}

#read-more-toggle {
    display: none;
}

.read-more-button {
    display: inline-block;
    background: linear-gradient(to right, #007BFF, #4CAF50);
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.read-more-button:hover {
    background: linear-gradient(to right, #4CAF50, #007BFF);
}

.read-more-content {
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: all 0.5s ease;
    margin-top: 0;
    padding: 0;
    color: #f2f9fc;
    font-size: 20px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Expanded Content Visibility */
#read-more-toggle:checked ~ .read-more-content {
    max-height: 2000px;
    visibility: visible;
    padding-top: 20px;
}

/* Hide Images When Expanded */
#read-more-toggle:checked ~ #image-block,
#read-more-toggle:checked ~ .Wytheville-image,
#read-more-toggle:checked ~ .Wytheville-images {
    display: none;
}

/* Read More Headings */
.read-more-content h3 {
    font-size: 24px;
    color: #ffffff;
    margin-top: 25px;
    margin-bottom: 8px;
    line-height: 1.3;
    text-shadow: 2px 2px 3px rgba(0,0,0,0.35);
}

.Wytheville-sticky-image-container {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.Wytheville-image-frame {
    position: sticky;
    top: 100px;
    height: 500px;
    width: 100%;
    max-width: 500px;
    border-radius:90px 20px;
    overflow: hidden;
    background-color: #fff;
    border: 6px solid #fff; /* Cyan blue border */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.Wytheville-image-static {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .read-more-content h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .read-more-content h3 {
        font-size: 18px;
    }
}


/* Responsive Layout */
@media (max-width: 768px) {
    .Wytheville-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .Wytheville-images {
        flex-direction: column;
        gap: 20px;
    }

    .Wytheville-floating-image {
        width: 80%;
    }

    .section-title {
        font-size: 28px;
    }

    .section-description {
        font-size: 16px;
    }

    .read-more-content {
        font-size: 14px;
    }

    .read-more-button {
        width: 100%;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .Wytheville-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .Wytheville-image {
        margin-top: 30px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-description {
        font-size: 16px;
    }

    .read-more-content {
        font-size: 14px;
    }

    .read-more-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 24px;
    }

    .section-description {
        font-size: 14px;
    }

    .read-more-button {
        font-size: 14px;
        padding: 8px 14px;
    }

    .read-more-content {
        font-size: 13px;
    }
}
@media (max-width: 768px) {
    .Wytheville-images {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .Wytheville-floating-image {
        width: 80%;
    }
}



    /* 🌟 Booking Form Styling */
    .welcome-booking-form {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        background: rgba(0, 123, 255, 0.08);
        padding: 20px;
        backdrop-filter: blur(10px);
        box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
        max-width: 1400px;
        width: 100%;
        border-radius: 12px;
        margin: 0 auto;
		Display:none;
    }

    .welcome-form-group {
        display: flex;
        flex-direction: column;
        background: #ffffff;
        padding: 14px;
        flex: 1;
        min-width: 180px;
        border-radius: 10px;
        transition: all 0.3s ease-in-out;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
    }

    .welcome-form-group label {
        font-size: 16px;
        color: #11365E;
        display: flex;
        align-items: center;
        gap: 6px;
        font-weight: 700;
    }

    .welcome-form-group i {
        color: #7340b7;
    }

    .welcome-form-group input,
    .welcome-form-group select {
        background: transparent;
        border: none;
        color: #0B2E53;
        font-size: 15px;
        outline: none;
        margin-top: 5px;
        font-weight: 500;
        text-align: center;
    }

    .welcome-booking-btn {
        background: linear-gradient(to right, #d6df4f, #d1e80e);
    color: #000;
        border: none;
        padding: 14px 24px;
        font-size: 16px;
        cursor: pointer;
        border-radius: 10px;
        transition: all 0.3s ease-in-out;
        font-weight: 600;
        box-shadow: 0px 4px 12px rgba(0, 123, 255, 0.3);
    }

    .welcome-booking-btn:hover {
        background: linear-gradient(to right, #007BFF, #28A745);
        box-shadow: 0px 6px 18px rgba(0, 123, 255, 0.4);
    }

    /* Responsive */
    @media (max-width: 820px) {
        .welcome-booking-form {
            flex-direction: column;
            width: 100%;
            gap: 12px;
            padding: 18px;
        }

        .welcome-form-group {
            width: 100%;
            min-width: unset;
        }

        .welcome-booking-btn {
            width: 100%;
        }
    }

    @media (max-width: 538px) {
        .welcome-booking-form {
            padding: 15px;
        }

        .welcome-form-group label {
            font-size: 14px;
        }

        .welcome-booking-btn {
            padding: 12px;
            font-size: 14px;
        }
    }
	
	
	.Wytheville-room-section {
  position: relative;
  background: no-repeat url(assets/images/img/bg-2.png)!important;

  padding: 40px 0;
  z-index: 1;
  overflow: hidden;
  border-top: 3px solid;
    border-top-color: #ffffff;
	    background-attachment: fixed !important;
    background-position: center center;

}



.Wytheville-room-section .container {
  position: relative;
  z-index: 2;
}

.Wytheville-room-header {
  margin-bottom: 50px;
  text-align: center;
}

.Wytheville-room-header h2 {
  font-size: 40px;
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-weight: 700;
}

.Wytheville-room-header p {
  font-size: 16px;
  color: #444;
}

.Wytheville-room-scroll {
  max-height: 100vh;
  overflow-y: auto;
  padding-right: 20px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.Wytheville-scroll-container .Wytheville-room-block {
  background: #ffffff;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  overflow: hidden;
}

.Wytheville-room-block img {
  width: 100%;
  display: block;
}

.Wytheville-room-details {
  padding: 20px;
}

.Wytheville-room-details h3 {
  font-size: 29px;
  margin: 10px 0;
  color: #000000;
}

.Wytheville-room-details small.price {
  color: #e94f4f;
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
}

.Wytheville-room-details p {
  font-size: 19px;
  color: #555;
}

.Wytheville-room-details ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.Wytheville-room-details ul li {
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
}

.Wytheville-room-details ul li i {
  margin-right: 8px;
  color: #9175af;
}

/* Right Side Room Info */
.Wytheville-room-info {
  padding-left: 30px;
}

.Wytheville-room-overview {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.Wytheville-room-overview h3 {
  font-size: 28px;
  color: #11365E;
  margin-bottom: 20px;
}

.Wytheville-room-overview p {
  color: #444;
  font-size: 19px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.Wytheville-room-overview ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.Wytheville-room-overview ul li {
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
}

.Wytheville-room-overview ul li i {
  color: #9175af;
  margin-right: 10px;
}

/* CTA Button */
.Wytheville-room-overview .btn {
  background: linear-gradient(to right, #28A745, #007BFF);
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  transition: 0.3s ease;
}

.Wytheville-room-overview .btn:hover {
  background: linear-gradient(to right, #007BFF, #28A745);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .Wytheville-rooms-scroll {
        max-height: none;
        border-right: none;
        padding-right: 0;
    }

    .Wytheville-rooms-info {
        padding-left: 0;
        margin-top: 40px;
    }

    .Wytheville-rooms-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
}


/* Marquee Section Styling for Wytheville */
.Wytheville-marquee-section {
  position: relative;
  width: 100vw;
  max-width: 100%;
  height: 121px;
  overflow: hidden;
  font-size: 100px;
  font-weight: 700;
 z-index: 1;
}

/* Marquee Track for Infinite Scroll */
.Wytheville-marquee-section .track {
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  animation: marquee-Wytheville 120s linear infinite;
}

/* Marquee Text */
.Wytheville-marquee-section .content {
  opacity: 0.20; /* Subtle ghost effect */
  line-height: 1.2;
  color: #000000; /* Clean dark text */
  font-family: 'Jost', sans-serif; /* Optional matching font */
}

/* Scrolling Animation */
@keyframes marquee-Wytheville {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
/* =============================
   Wytheville Attractions Section
============================= */
.Wytheville-attractions-section {
  padding: 100px 20px;
 
  text-align: center;
  position: relative;
  z-index: 1;
    background: no-repeat url(assets/images/img/body-bg.png)!important;
}

.Wytheville-attractions-header h5 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.Wytheville-attractions-header h2 {
  font-size: 42px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 15px;
}

.Wytheville-attractions-intro {
  font-size: 18px;
  color: #2a2a2a;
  max-width: 800px;
  margin: 0 auto 40px;
}

.Wytheville-attractions-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.Wytheville-attraction-item {
  width: 360px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.4s ease;
  cursor: pointer;
  text-align: left;
}

.Wytheville-attraction-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.Wytheville-attraction-item:hover img {
  transform: scale(1.05);
}

.Wytheville-attraction-info {
  padding: 20px;
}

.Wytheville-attraction-info h3 {
  font-size: 25px;
  color: #0B2E53;
  margin-bottom: 10px;
}

.Wytheville-attraction-info p {
  font-size: 17px;
  color: #000;
  margin: 0;
}

/* Nearby Distance Box – Refined */
.Wytheville-distance-box {
  background: #ffffffda;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  max-width: 900px;
  margin: auto;
  text-align: left;
}

.Wytheville-distance-box h4 {
  font-size: 25px;
  color: #0B2E53;
  margin-bottom: 20px;
}

/* Grid Layout for Distance List */
.Wytheville-distance-box ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 10px 30px;
  padding: 0;
  margin: 0 0 20px;
  list-style: none;
}

.Wytheville-distance-box ul li {
  font-size: 18px;
  color: #000;
  position: relative;
  padding-left: 18px;
}

.Wytheville-distance-box ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #1C4E80;
  font-weight: bold;
  font-size: 18px;
}

/* View More Button */
.view-more-btn {
  display: inline-block;
 background: linear-gradient(to right, #28A745, #007BFF);
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.view-more-btn:hover {
  background: linear-gradient(to right, #007BFF, #28A745);
   color: #fff;
   text-decoration: none;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 992px) {
  .Wytheville-attractions-grid {
    flex-direction: column;
    align-items: center;
  }
  .Wytheville-attraction-item {
    width: 90%;
  }
}

@media (max-width: 576px) {
  .Wytheville-attractions-header h2 {
    font-size: 30px;
  }
  .Wytheville-attractions-header h5 {
    font-size: 16px;
  }
  .Wytheville-attractions-intro {
    font-size: 16px;
  }
  .Wytheville-distance-box {
    padding: 20px;
  }
}



.Wytheville-amenities-section {
  background: linear-gradient(135deg, #f4fffa, #d3f8ff);
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.Wytheville-amenities-container {
  max-width: 1280px;
  margin: auto;
  padding: 0 30px;
  text-align: center;
}

.Wytheville-amenities-header .subtitle {
  font-size: 20px;
  text-transform: uppercase;
  color: #1C4E80;
  font-weight: 700;
  letter-spacing: 1px;
}

.Wytheville-amenities-header .title {
  font-size: 42px;
  font-family: 'Jost', sans-serif;
  color: #0B2E53;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 60px;
}

/* Amenity Cards Grid */
.Wytheville-amenities-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* Individual Card */
.amenity-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding: 30px 25px;
  width: 300px;
  text-align: center;
  transition: transform 0.3s ease;
}

.amenity-card:hover {
  transform: translateY(-10px);
}

.amenity-card i {
  font-size: 36px;
  color: #865baf;
  margin-bottom: 15px;
}

.amenity-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #11365E;
  margin-bottom: 10px;
}

.amenity-card p {
  font-size: 15px;
  color: #444;
}

/* Responsive */
@media (max-width: 768px) {
  .amenity-card {
    width: 100%;
  }
}



/* 🌟 YouTube Section Styling */
.Wytheville-youtube-section {
  padding: 100px 20px;
  position: relative;
  z-index: 1;
  background: no-repeat url(assets/images/img/bg-2.png)!important;
      border-top: 3px solid;
    border-top-color: #ffffff;
    background-attachment: fixed !important;
    background-position: center center;
}

.Wytheville-youtube-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.Wytheville-youtube-header .subtitle {
  font-size: 30px;
  font-family: 'Jost', sans-serif;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
}

.Wytheville-youtube-header .title {
  font-size: 42px;
  font-family: 'Jost', sans-serif;
 color: #ffffff;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 20px;
}

.Wytheville-youtube-header p {
  font-size: 20px;
  color: #2f2f2f;
  max-width: 700px;
  margin: 0 auto 60px;
}


/* 📹 Main Content Layout */
.Wytheville-youtube-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  align-items: flex-start;
}

/* 📺 YouTube Video */
.youtube-video-wrapper iframe {
  width: 560px;
  height: 400px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* 📝 Description Box */
.youtube-description-box {
  max-width: 520px;
  text-align: left;
  background: rgba(255, 255, 255, 0.95); /* Light background for readability */
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.youtube-description-box h3 {
  color: #0A2540; /* Dark Blue heading */
  font-size: 26px;
  margin-bottom: 15px;
}

.youtube-description-box p {
  font-size: 16px;
  color: #2f2f2f;
  line-height: 1.7;
  margin-bottom: 20px;
}

.youtube-description-box ul {
  list-style: none;
  padding-left: 0;
}

.youtube-description-box ul li {
  font-size: 16px;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.youtube-description-box ul li i {
  color: #007B55; /* Deep green icon */
  margin-right: 10px;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .youtube-video-wrapper iframe {
    width: 100%;
    height: 240px;
  }

  .youtube-description-box {
    padding: 20px;
  }

  .Wytheville-youtube-content {
    flex-direction: column;
    align-items: center;
  }
}






/* Gallery Section Background */
.Wytheville-gallery-section {
  background: linear-gradient(135deg, #00c9a740, #00b4d800, #00e5ff00);
  padding: 40px 20px;
    text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* Diagonal Overlay */
.Wytheville-gallery-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(60deg, #90c036 30%, transparent 80%);
  z-index: -999;
}


.Wytheville-gallery-container {
  max-width: 1200px;
  margin: auto;
}

.gallery-header .subtitle {
	font-family: 'Jost', sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  color: #1C4E80;
  font-weight: 700;
  letter-spacing: 1px;
}

.gallery-header .title {
  font-size: 42px;
  font-family: 'Jost', sans-serif;
  color: #ffffff;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 20px;
}

.gallery-header p {
  color: #2f2f2f;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 40px;
}


/* Tube Thumbnail Scroll */
.gallery-tube-scroll {
  overflow-x: auto;
  margin-bottom: 40px;
  padding-bottom: 10px;
}

.gallery-tube-wrapper {
	
  display: flex;
  gap: 20px;
  padding: 30px;
  justify-content: center;
  flex-wrap: nowrap;
  border-radius:90px;
}

.tube-thumb {
	
  height: 140px;
  width: 300px;
  border-radius: 50px;
  object-fit: cover;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.tube-thumb:hover {
  transform: scale(1.05);
  border-color: #0B2E53;
}

/* Main Image */
.gallery-main-image {
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.gallery-main-image img {
  width: 100%;
  max-width: 580px;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease-in-out;
}

.fade-out {
  opacity: 0.3;
  transform: scale(0.98);
}

/* Button */
.gallery-button {
  margin-top: 30px;
}

.view-gallery-btn {
  background: linear-gradient(to right, #28A745, #007BFF);
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.2);
  transition: 0.3s ease;
}

.view-gallery-btn:hover {
  background: linear-gradient(to right, #007BFF, #28A745);
  color: #fff;
   text-decoration: none;
}

/* Modal */
.gallery-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
}

.gallery-modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 15px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: #000;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .tube-thumb {
    height: 80px;
    width: 80px;
  }

  .gallery-main-image img {
    width: 100%;
  }
}
/* Footer Section */
.aligned-footer {
    background: linear-gradient(to right, #8354b5, #a89289);
    color: #FFFFFF;
    padding: 50px 5%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

/* Top Row: Logo and Social Media */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-logo-wrapper {
    flex: 1;
    text-align: left;
    margin-bottom: 20px;
}

.footer-logo img {
  max-width: 100px; 
/* Or whatever size fits your design */
  height: auto;
  display: block;
}


.footer-social-icons {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ced019, #e0f7f5);
    border-radius: 50%;
    font-size: 1.2rem;
    color: #8455b9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.footer-social-icon:hover {
    transform: scale(1.2);
    box-shadow: 0px 8px 15px rgba(144, 192, 54, 0.8);
}

/* Footer Main Content */
.footer-content {
	font-size:19px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    text-align: left;
}

.footer-contact {
    flex: 1;
    min-width: 250px;
}

.footer-contact h4,
.footer-links h4,
.footer-policies h4,
.footer-follow h4 {
	font-family: 'Jost', sans-serif;
    font-size: 25px;
    background: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 600;
    border-bottom: 2px solid #bff0da;
    padding-bottom: 5px;
}

.footer-contact p {
    margin: 5px 0;
    color: #FFFFFF;
    font-size: 18px;
}

.contact-phone {
    background: linear-gradient(to right, #90c036, #bff0da);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    font-weight: bold;
}

.contact-phone:hover {
    color: #bff0da;
    text-decoration: underline;
}

.cgsl {
    background: linear-gradient(to right, #ffffff, #bff0da);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    font-weight: bold;
}

.cgsl:hover {
    background: linear-gradient(to right, #bff0da, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cgs2 {
    color: #bff0da;
   font-family: 'Jost', sans-serif;
}

/* Quick Links */
.footer-links {
    flex: 1;
    min-width: 250px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 18px;
}

.footer-links ul li a:hover {
    background: linear-gradient(to right, #d8f3dc, #b7e4c7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Footer Bottom */
.footer-bottom {

    background: linear-gradient(to right, #f1f313, #c5c71b);
    padding: 20px 0;
    margin-top: 30px;
    color: #000;
    text-align: center;
    font-size: 16px;
}

.footer-bottom a {
    /*background: linear-gradient(to right, #90c036, #bff0da);*/
    -webkit-background-clip: text;
    /*-webkit-text-fill-color: transparent;*/
    text-decoration: none;
	color: #000;
}

.footer-bottom a:hover {
    color: #000;
}

/* Right Arrow Quick Links */
.quick-links-columns {
    list-style: none;
    padding-left: 0;
}

.quick-links-columns li {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 22px;
}

.quick-links-columns li::before {
    content: "→";
    font-size: 18px;
    color: #a6ff00;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease-in-out;
}

.quick-links-columns li:hover::before {
    transform: translateY(-50%) translateX(5px);
}

.quick-links-columns li a {
    text-decoration: none;
    color: #FFFFFF;
    font-size: 18px;
    transition: color 0.3s ease;
}

.quick-links-columns li a:hover {
    color: #90c036;
}


.amenities-inner-section {
 /* background: linear-gradient(135deg, #a2e0d5, #daf7f6);*/
  padding: 80px 20px 0px;
  text-align: center;
  background: no-repeat url(assets/images/img/body-bg.png) !important;
}

.amenities-inner-header h2 {
  font-size: 42px;
  color: #0B2E53;
  font-family: 'Jost', sans-serif;
  margin-bottom: 15px;
}

.amenities-inner-header p {
  font-size: 18px;
  color: #fff;
  max-width: 1300px;
  margin: 0 auto 30px;
}

.amenities-icon-bar {
  margin-top: 10px;
  margin-bottom: 50px;
}

.amenities-icon-bar i {
  font-size: 26px;
  color: #fff;
  margin: 0 12px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.6; }
}

.amenities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 60px;
}

.amenity-card {
  background: #fff;
  width: 300px;
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.amenity-card:hover {
  transform: translateY(-8px);
}

.amenity-icon {
  font-size: 40px;
  color: #1C4E80;
  margin-bottom: 18px;
}

.amenity-title {
  font-size: 25px;
  font-weight: 600;
  color: #0B2E53;
  margin-bottom: 10px;
}

.amenity-desc {
  font-size: 18px;
  color: #444;
  line-height: 1.5;
}

/* Footer Banner */
.amenities-footer-banner {
  /*background: linear-gradient(to right, #1C4E80, #28A745);*/
  padding: 35px 20px;
  border-radius: 15px;
  color: #fff;
  max-width: 900px;
  margin: auto;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  
  font-size: 30px;
}

.trust-row i {
  margin-right: 10px;
}

.explore-rooms-btn {
  background: #fff;
  color: #1C4E80;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.explore-rooms-btn:hover {
  background: #28A745;
  color: #fff;
}

/* Mobile View */
@media (max-width: 768px) {
  .amenity-card {
    width: 90%;
  }

  .trust-row {
    flex-direction: column;
    gap: 15px;
  }

  .amenities-inner-header h2 {
    font-size: 32px;
  }
}



.inner-hero-section {
  background-size: cover;
  background-position: center;
  height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden; /* ensures fade layer stays contained */
}

.inner-hero-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
  z-index: 1;
}

.inner-hero-overlay {
  background: rgba(0, 0, 0, 0.4); /* semi-transparent box */
  padding: 20px;
  border-radius: 10px;
  position: relative;
  z-index: 2; /* ensures it's above fade layer */
}

.inner-subtitle {
  color: #71d17c;
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.inner-title {
  color: #fff;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .inner-title {
    font-size: 26px;
  }
  .inner-subtitle {
    font-size: 16px;
  }
}



.things-section {

      background: repeat url(assets/images/img/body-bg.png) !important;
	   padding: 50px 20px;
  text-align: center;
}
 
}

.things-header h2 {
  font-size: 42px;
  color: #0B2E53;
  font-family: 'Jost', sans-serif;
  margin-bottom: 20px;
}

.things-header p {
  font-size: 18px;
  color: #fff;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.things-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.category-box {
  width: 430px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: left;
  transition: 0.3s ease;
}

.category-box img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}

.category-box h3 {
  font-size: 28px;
  color: #0B2E53;
  margin-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 8px;
}

.category-box ul {
  list-style: none;
  padding-left: 0;
  line-height: 1.8;
}

.category-box ul li {
  font-size: 18px;
  color: #333;
}

.category-box ul li i {
  margin-right: 10px;
  color: #28A745;
}

/* Responsive */
@media (max-width: 992px) {
  .things-grid {
    flex-direction: column;
    align-items: center;
  }

  .category-box {
    width: 90%;
  }

  .things-header h2 {
    font-size: 30px;
  }
}





/* 🌍 Location Styles */
.Wytheville-location-section {
  background: repeat url(assets/images/img/body-bg.png);
  padding: 80px 20px;
  text-align: center;
}

.Wytheville-location-container {
  max-width: 1200px;
  margin: auto;

}

.Wytheville-location-header {
  margin-bottom: 50px;
}

.location-subtitle {
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.location-title {
  font-size: 42px!important;
  color: #fff;
  font-family: 'Jost', sans-serif;
  margin-bottom: 0;
}

.Wytheville-location-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
}

.location-info {
  flex: 1;
  min-width: 300px;
  max-width: 550px;
  text-align: left;
}

.location-description {
  font-size: 18px;
  color: #fff;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Coordinates Box */
.location-coordinates {
  background: #ffffff;
  padding: 20px;
  border-left: 4px solid #28A745;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.location-coordinates ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.location-coordinates li {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
}

.location-coordinates i {
  margin-right: 10px;
  color: #28A745;
}

/* Directions Form */
.location-form input {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.location-form button {
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(to right, #28A745, #007BFF);
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 4px 12px rgba(0, 123, 255, 0.3);
}

.location-form button:hover {
  background: linear-gradient(to right, #007BFF, #28A745);
  box-shadow: 0px 6px 18px rgba(0, 123, 255, 0.4);
}


.location-map {
  flex: 1;
  min-width: 300px;
  max-width: 550px;
}

.location-map img {
  width: 89%;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .Wytheville-location-grid {
    flex-direction: column;
    align-items: center;
  }
}



/* 🌟 Full-width Contact Title Section - Wytheville Style */
.contact-hero-banner {
 background: repeat url(assets/images/img/body-bg.png);
  padding: 80px 20px 50px;
  text-align: center;
}

.contact-hero-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.custom-contact-subtitle {
  font-size: 1.6rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.custom-contact-title {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 25px;
  text-transform: uppercase;
  font-weight: 800;
  font-family: 'Jost', sans-serif;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.06);
}

.custom-contact-description {
  font-size: 18px;
  color: #fff;
  font-weight: 400;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* 📱 Responsive Styling */
@media (max-width: 768px) {
  .custom-contact-title {
    font-size: 2.2rem;
  }
  .custom-contact-description {
    font-size: 16px;
  }
}

/* 🌟 Contact Info + Image Section for Wytheville Inn & Suites */
.futuristic-contact-section {
  padding: 0px 20px 80px;
  background: repeat url(assets/images/img/body-bg.png);
}

.futuristic-contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.futuristic-contact-info {
  flex: 1;
  max-width: 520px;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 61, 165, 0.05);
  text-align: left;
}

.futuristic-contact-info p {
  font-size: 18px;
  color: #333;
  line-height: 1.7;
}

.futuristic-info-block {
  margin-top: 25px;
}

.futuristic-info-block h2,
.futuristic-info-block h3 {
  font-size: 22px;
  margin-bottom: 6px;
  color: #0B2E53;
  font-weight: 700;
}

.futuristic-info-block a {
  color: #28A745;
  font-weight: bold;
  text-decoration: none;
}

.futuristic-info-block a:hover {
  color: #007BFF;
}

.futuristic-image-block {
  flex: 1;
  max-width: 520px;
}

.contact-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 61, 165, 0.08);
  transition: transform 0.3s ease;
}

.contact-image:hover {
  transform: scale(1.03);
}

/* 📱 Responsive Styling */
@media (max-width: 768px) {
  .futuristic-contact-section {
    padding: 40px 20px;
  }

  .futuristic-contact-container {
    flex-direction: column;
  }

  .futuristic-contact-info,
  .futuristic-image-block {
    max-width: 100%;
  }

  .futuristic-contact-info p {
    font-size: 16px;
  }

  .contact-image {
    margin-bottom: 30px;
  }
}



/* 🌐 Wytheville Sitemap Section */
.sitemap-section {
  padding: 80px 20px;
 background: repeat url(assets/images/img/body-bg.png);
  text-align: center;
}

.sitemap-container {
  max-width: 1200px;
  margin: 0 auto;
}

.sitemap-title {
  font-size: 2.8rem;
  color: #0B2E53;
  margin-bottom: 20px;
  font-weight: 800;
  text-transform: uppercase;
  font-family: 'Jost', sans-serif;
}

.sitemap-subtitle {
  font-size: 1.1rem;
  color: #333;
  max-width: 900px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.sitemap-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.sitemap-block {
  background-color: #ffffff;
  padding: 35px 30px;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #d7efed;
}

.sitemap-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.sitemap-block h2 {
  font-size: 1.6rem;
  color: #8659b2;
  margin-bottom: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.sitemap-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-block ul li {
  margin-bottom: 14px;
}

.sitemap-block ul li a {
  font-size: 17px;
  color: #0B2E53;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-weight: 500;
  transition: color 0.3s ease;
}

.sitemap-block ul li a i {
  margin-right: 10px;
  color: #28A745;
  font-size: 1rem;
}

.sitemap-block ul li a:hover {
  color: #28A745;
}

/* 📱 Responsive */
@media (max-width: 1024px) {
  .sitemap-links {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .sitemap-links {
    grid-template-columns: 1fr;
  }

  .sitemap-title {
    font-size: 2rem;
  }
}





/* 📘 FAQ Section - Full Display */
.faq-full-section {
 background: repeat url(assets/images/img/body-bg.png);
  padding: 50px 20px;
  text-align: center;
}

.faq-full-container {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-full-title {
  font-size: 42px;
  color: #fff;
  margin-bottom: 10px;
}

.faq-full-title:hover {
  font-size: 42px;
  color: #fff;
  margin-bottom: 10px;
}

.faq-full-subtitle {
  font-size: 18px;
  color: #fff;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-list {
  text-align: left;
}

.faq-block {
  background: #ffffff;
  padding: 30px 25px;
  margin-bottom: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.faq-block:hover {
  transform: translateY(-3px);
}

.faq-question {
  font-size: 26px;
  color: #0B2E53;
  font-weight: 600;
}

.faq-answer {
  font-size: 18px;
  color: #444;
  line-height: 1.6;
}

.faq-answer a {
  color: #1C4E80;
  text-decoration: none;
  font-weight: 600;
}

.faq-answer a:hover {
  text-decoration: underline;
}

/* ✅ Responsive */
@media (max-width: 768px) {
  .faq-full-title {
    font-size: 32px;
  }

  .faq-question {
    font-size: 18px;
  }

  .faq-answer {
    font-size: 15px;
  }
}




.modern-gallery {
  background: linear-gradient(to top, #faf3e0ab, #E9C46A);
  padding: 40px 20px;
  text-align: center;
}

.gallery-header {
  margin-bottom: 40px;
}

.gallery-subtitle {
  color: #264653;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 600;
}

.gallery-title {
  font-size: 42px;
  font-weight: 600;
  color: #264653;
}

.gallery-description {
  font-size: 20px;
  color: #1e5369;
  margin-bottom: 30px;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  max-width: 1200px;
  margin: auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.gallery-item:hover img {
  transform: scale(1.05);
  opacity: 0.9;
}

.gallery-preview {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(38, 70, 83, 0.95);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 1000;
  padding: 20px;
}

.preview-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  text-align: center;
}

.preview-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  animation: fadeIn 0.4s ease-in-out;
}

#preview-caption {
  color: white;
  font-size: 18px;
  margin-top: 10px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  z-index: 1001;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: white;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 0 20px;
}

.prev { left: 0; }
.next { right: 0; }

.fade-in {
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.preview-controls {
  margin-top: 20px;
}

.preview-controls button {
  padding: 8px 16px;
  font-size: 16px;
  border: none;
  background: #2A9D8F;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  margin-bottom: 12px;
}

.thumbnail-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  max-height: 200px;
  overflow-y: auto;
}

.thumb {
  width: 60px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid transparent;
}

.thumb:hover {
  border-color: #E9C46A;
}

.gallery-button-container {
  text-align: center;
  margin-top: 30px;
}

.explore-gallery-btn {
  display: inline-block;
  background: linear-gradient(to right, #2A9D8F, #E9C46A);
  color: white;
  font-size: 18px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 3px 10px rgba(255, 200, 100, 0.3);
}

.explore-gallery-btn:hover {
  background: linear-gradient(to right, #E9C46A, #2A9D8F);
  box-shadow: 0px 5px 15px rgba(255, 200, 100, 0.5);
}

@media (max-width: 768px) {
  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
  }
  .preview-content {
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .gallery-masonry {
    grid-template-columns: 1fr;
  }
}





a.well5 {
    font-size: 20px;
    color: #f2f9fc;
    margin-bottom: 15px;
    line-height: 1.8;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.35);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

a.well5:hover {
    color: #01287d; /* Change to your preferred hover color */
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.45);
    text-decoration: none;
}



a.well6 {
    font-size: 42px;
    color: #0B2E53;
    font-family: 'Jost', sans-serif;
    margin-bottom: 15px;
    transition: color 0.3s ease, transform 0.3s ease;
}

a.well6:hover {
    color: #01287d; /* Change to your preferred hover color */
    transform: scale(1.05); /* Slight zoom on hover */
    text-decoration: none;
}


a.well06 {
    font-size: 42px;
    color: #fff;
    font-family: 'Jost', sans-serif;
    margin-bottom: 15px;
    transition: color 0.3s ease, transform 0.3s ease;
}

a.well06:hover {
    color: #fff; /* Change to your preferred hover color */
    transform: scale(1.05); /* Slight zoom on hover */
    text-decoration: none;
}



a.well7 {
    font-size: 18px;
    color: #fff;
    
   

}

a.well7:hover {
    color: #fff; /* Change to your preferred hover color */
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.45);
    text-decoration: none;
}

.h3, h3 {
    font-size: 25px!important;
}


/* Dropdown Base */
.has-dropdown {
  position: relative;
}

.has-dropdown > .top-link::after {
  content: " ▾";
    font-size: 20px;
  margin-left: 5px;
}

.has-dropdown .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  list-style: none;
  margin: 0;
  padding: 8px 0;
  min-width: 250px;
  z-index: 999;
}

.has-dropdown:hover .dropdown {
  display: block;
}

.has-dropdown .dropdown li a {
  display: block;
  padding: 10px 15px;
  color: #05212b;
  text-decoration: none;
  transition: background 0.3s ease;
}

.has-dropdown .dropdown li a:hover {
  background: #f5f5f5;
  color: #783fc4;
}






/* Overlay shell (keeps your existing look) */
.mobile-menu-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.45); display: none; z-index: 2000; }
.mobile-menu-overlay.active { display: block; }

.mobile-menu-content {
  position: absolute; right: 0; top: 0; height: 100%; width: min(86vw, 420px);
  background: #b89bde;
  padding: 18px 18px 28px; overflow-y: auto;
}

.close-btn { background: transparent; border: 0; font-size: 34px; line-height: 1; cursor: pointer; color: #05212b; }

.mobile-logo { padding: 8px 0 14px; border-bottom: 1px solid #eee; margin-bottom: 10px; }
.mobile-nav { list-style: none; padding: 0; margin: 0; }
.mobile-nav > li > a { display: block; padding: 12px 6px; border-bottom: 1px solid #f1f1f1; color: #05212b; text-decoration: none; }

/* ✅ Accordion for Things To Do */
.mobile-has-dropdown { border-bottom: 1px solid #f1f1f1; }
.mobile-submenu-toggle {
display: flex
;
    align-items: center;
    justify-content: center;
    gap: 82px;
    font-size: 20px;
    color: #fff;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.3s, transform 0.2s 
ease;
    text-decoration: none;
	border: none;
}
.mobile-submenu { list-style: none; padding-left: 14px; margin: 0; }
.mobile-submenu li a { display: block; padding: 10px 0; color: #05212b; text-decoration: none; border-bottom: 1px solid #f7f7f7; }
.mobile-submenu li a:hover { color: #bc4547; }

.caret { font-size: 12px; transition: transform .2s ease; }
.mobile-submenu-toggle[aria-expanded="true"] .caret { transform: rotate(180deg); }

/* Book button look */
.btn-book-now {
  display: inline-block; margin-top: 10px; padding: 10px 14px; background: #bc4547; color: #fff !important;
  border-radius: 8px; text-align: center;
}

.linking
{
	color:#fff;
	
}

.linking:hover
{
	color:#fff;
	text-decoration:none;
	
}

@media (max-width: 616px) {
  .inner-hero-section {
    background-size: cover;
    background-position: center;
    height: 250px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    width: 100%;
	height:250px;
  }
}
