.navbar26 {
    display: flex;
	 justify-content: space-between;
    align-items: center;
    position: sticky; 
    top: 0;
    left: 0;
    width: 100%;
    padding:10px;
    z-index: 1000; 
    background-color: #7b7b21; 
    transition: all 0.4s ease-in-out;
	 color: #FFF;
	 border-bottom:1px solid #737321
}

.navbar26h {
    display: flex;
	 justify-content: space-between;
    align-items: center;
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    padding:10px;
    z-index: 1000; 
    transition: all 0.4s ease-in-out;
	 color: #FFF;
	 background-color: transparent !important;
	 background: transparent !important;
	 z-index:10
}

/* The state triggered by JavaScript */
.scrolled {
    background-color: #7b7b21 !important; /* Solid Luxury Green */
}


.logo {
    color: #fff;
    transition: 0.3s;
}

.nav-links {
    display: flex;
    list-style: none;
	 font-weight:600;
	 padding: 0 !important;
	 margin: 0 !important;
	 
}


.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #fff; /* White text as requested */
    text-transform: uppercase;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #d4af37; /* Gold highlight on hover */
}

.hero {
    margin-top: 0; 
    height: 100vh;
    /* ... existing background styles ... */
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('/assets/img/chevron_front_room.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    margin-bottom: 1rem;
}

.hero-content p {
    font-weight: 300;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: 0.4s;
}

.btn:hover {
    background: #fff;
    color: #000;
}

/* Content Sections */
.container {
    max-width: 1100px;
    margin: 5rem auto;
    padding: 0 20px;
}

.feature-row {
    display: flex;
    align-items: center;
    margin-bottom: 8rem;
    gap: 50px;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 1;
}

.feature-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.feature-text {
    flex: 1;
}

.feature-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.feature-text p {
    color: #666;
    font-size: 1.1rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem;
    background: #1a1a1a;
    color: #999;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.menu-button {
background-color: white;
color: #333 !important;
  padding: 10px;
  font-size: 16px;
  cursor: pointer;
  margin-right:10px;
  transition: all 0.1s ease-in;
  border: 1px solid #7b7b21;
border-radius:4px;
margin: 5px;
z-index: 10000 !important;
}


.menu-button-default {
  background-color: ;
}

.menu-button:hover{
background-color: rgba(123, 123, 33,.50) !important;
color: #FFF !importan
transition: all 0.1s ease-in;
}

/* Responsive */
@media (max-width: 768px) {
    .feature-row, .feature-row.reverse {
        flex-direction: column;
        margin-bottom: 4rem;
    }
    .hero-content h1 { font-size: 2.5rem; }
    .nav-links { display: none; } /* Simplified for example */
}

.pagesep{
background-color: #EEE;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
	 z-index: 10002 !important;
	
}

.menu-toggle .bar {
    height: 2px;
    width: 100%;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* Mobile Media Query */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex; /* Show hamburger on mobile */
		  	 z-index: 10000 !important;
    }
	 
	 .navbar26 {
        z-index: 9000; 
    }

.nav-links {
        position: fixed;
        right: -100%; 
        top: 0;
        height: 100vh;
        width: 100%; /* Change to 100% to ensure it covers the screen */
        background-color: #7b7b21; 
        display: flex; /* Ensure it's using flex to show the items */
        flex-direction: column;
        align-items: left !important;
        justify-content: center;
        transition: 0.5s ease;
		  font-size:20px;
        z-index: 9500; 
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin-top: 10px !important;
    }

    /* Animate Hamburger into an 'X' when active */
    #mobile-menu.active .bar:nth-child(2) { opacity: 0; }
    #mobile-menu.active .bar:nth-child(1) { transform: translateY(9.5px) rotate(45deg); }
    #mobile-menu.active .bar:nth-child(3) { transform: translateY(-9.5px) rotate(-45deg); }
}
