:root {
    /* Synced Variable Names */
    --primary: #0baf0b;
    --secondary: #cbda00;
    --background: #111;
    --surface: #1c1c1c;
    --text: #ffffff;
    --muted: #bdbdbd;
    
    /* Mapping new nav names to your original colors */
    --primary-color: var(--primary);
    --background-color: var(--background);
    --heading-color: var(--text);
    --link-hover-color: var(--secondary);
}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family: 'Roboto Slab', serif;
background:var(--background);
color:var(--text);
line-height:1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--heading-color);
    line-height: 1.2;
    margin-bottom: 1rem;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
p {
    margin-bottom: 1rem;
}
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: var(--link-hover-color);
}
.homepage {
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background-color: var(--primary-color);
}
.standard-page-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: var(--background-color);
}
.main-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    z-index: 10;
}
.standard-nav {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: var(--primary-color);
    padding: 1rem;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); 
}
.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}
.logo {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    flex-shrink: 0;
}
.nav-links {
    display: none;
}
.mobile-menu-toggle-wrapper {
    display: block;
}
.mobile-menu-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    outline: none;
    padding: 0;
    height: 30px;
    width: 30px;
}
.nav-link {
    color: white;
    position: relative;
    padding-bottom: 0.25rem;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.container{
width:90%;
max-width:1100px;
margin:auto;
}

header{
background:#000;
border-bottom:2px solid var(--primary);
}

.hero{
height:70vh;
background:url("../images/outside1.jpg") center/cover no-repeat;
display:flex;
align-items:center;
}

.hero-content{
max-width:600px;
}

.hero h1{
font-family:Oswald;
font-size:48px;
margin-bottom:10px;
}

.btn{
display:inline-block;
background:var(--primary);
padding:12px 22px;
margin-top:15px;
color:black;
text-decoration:none;
}

section{
padding:60px 0;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.card{
background:var(--surface);
padding:25px;
border-left:4px solid var(--primary);
}

.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:15px;
}

.gallery img{
width:100%;
height:220px;
object-fit:cover;
border-radius:6px;
}

footer{
background:black;
text-align:center;
padding:30px 0;
color:var(--muted);
margin-top:40px;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1), transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.animate-on-scroll:nth-child(2) { transition-delay: 0.05s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.15s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.2s; }
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transform: scale(0.8);
    transition: transform 0.4s ease-out, opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-menu-overlay.is-open {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}
.mobile-menu-overlay .menu-content {
    width: 90%;
    max-width: 400px;
    background-color: #333;
    padding: 2rem;
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
}
.mobile-menu-overlay .menu-content a {
    color: white;
    font-size: 1.8rem;
    padding: 0.75rem 1.5rem;
    width: auto;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
}
.mobile-menu-overlay .menu-content a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}
.close-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: white;
    font-size: 3.5rem;
    cursor: pointer;
    z-index: 1001;
    transition: transform 0.2s ease;
}
.close-button:hover {
    transform: rotate(90deg);
}

@media (min-width: 768px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.5rem; }
    .hero-section h1 { font-size: 4rem; }
    .homepage .cover-heading { font-size: 5rem; }
    .mobile-menu-toggle-wrapper {
        display: none;
    }

    .logo .logo-full {
        display: block;
    }
    .logo .logo-mobile {
        display: none;
    }

    .mobile-menu-toggle-wrapper {
        display: none; 
    }
    .nav-links {
        display: flex;
        gap: 2rem;
    }
    .page-content-wrapper {
        padding: 4rem;
        width: 100%;
    }
    .modal-content {
        flex-direction: row;
    }
}
@media (max-width: 480px) {
    .logo .logo-full {
        display: none;
    }
    .logo .logo-mobile {
        display: block; 
    }
        .mobile-menu-toggle-wrapper {
        display: block;
    }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    .hero-section h1 { font-size: 1rem; }
    .homepage .cover-heading { font-size: 2rem; }
    .cover-subheading { font-size: .9rem; }
    .page-content-wrapper {
        padding: 2rem 1rem;
    }
}