*{
margin:0;
padding:0;
box-sizing:border-box;
}
:root{

--primary:#16a34a;
--primary-dark:#15803d;

--text:#111;
--text-light:#555;

--bg:#f9fbfa;
--white:#ffffff;

--radius:10px;

}

body{
font-family:'Inter',sans-serif;
color:var(--text);
background:var(--bg);
line-height:1.6;
}

.container{
max-width:1200px;
margin:auto;
padding:0 20px;
}

/* Sticky navbar */
.navbar {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background-color: #fff; /* must have background */
  z-index: 1000;          /* stay on top of content */
}

.logo{
font-size:1.4rem;
font-weight:700;
}

.nav-links{
list-style:none;
display:flex;
gap:30px;
}

.nav-links a{
text-decoration:none;
color:var(--text);
font-weight:500;
}

.cta-btn{
background:var(--primary);
color:white;
padding:12px 22px;
border-radius:10px;
text-decoration:none;
font-weight:600;
transition:all 0.2s ease;
}

.cta-btn:hover{
transform:translateY(-2px);
box-shadow:0 10px 20px rgba(0,0,0,0.15);
}

header{
background:white;
box-shadow:0 3px 10px rgba(0,0,0,0.05);

width: 100%;

}

.hero{
padding:120px 0;
background:white;
}

.hero-content{
max-width:700px;
}

.hero h1{
font-size:3rem;
line-height:1.2;
margin-bottom:20px;
}

.hero p{
font-size:1.1rem;
color:var(--text-light);
margin-bottom:30px;
}

.hero-buttons{
display:flex;
gap:16px;
}

.secondary-btn{
border:2px solid var(--primary);
padding:10px 20px;
border-radius:8px;
text-decoration:none;
color:var(--primary);
font-weight:600;
}

.hero{
padding:120px 0;
background:white;
}

.hero-grid{
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:60px;
}

.hero-text h1{
font-size:3rem;
line-height:1.2;
margin-bottom:20px;
}

.hero-text p{
font-size:1.1rem;
color:var(--text-light);
margin-bottom:30px;
max-width:500px;
}

.hero-image img{
width:100%;
border-radius:12px;
}

.hero-buttons{
display:flex;
gap:16px;
}

.secondary-btn{
border:2px solid var(--primary);
padding:10px 20px;
border-radius:8px;
text-decoration:none;
color:var(--primary);
font-weight:600;
}

.services{
padding:100px 0;
background:var(--bg);
}

.section-title{
font-size:2rem;
text-align:center;
margin-bottom:60px;
}

.services-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.service-card{
background:white;
padding:30px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.06);
transition:0.2s;
}

.service-card h3{
margin-bottom:15px;
}

.service-card p{
color:var(--text-light);
}

.service-card:hover{
transform:translateY(-5px);
}

.why{
padding:100px 0;
background:white;
}

.why-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:40px;
}

.why-item h3{
margin-bottom:10px;
}

.why-item p{
color:var(--text-light);
}

.gallery{
padding:100px 0;
background:var(--bg);
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

.gallery-grid img{
width:100%;
border-radius:10px;
object-fit:cover;
height:260px;
transition:0.2s;
}

.gallery-grid img:hover{
transform:scale(1.03);
}

.cta{
padding:100px 0;
background:var(--primary);
color:white;
text-align:center;
}

.cta-content h2{
font-size:2.2rem;
margin-bottom:20px;
}

.cta-content p{
max-width:600px;
margin:auto;
margin-bottom:30px;
}

.cta .cta-btn{
background:white;
color:var(--primary);
}

.cta .cta-btn:hover{
background:#f1f1f1;
}

.footer{
background:#111;
color:white;
padding:70px 0 20px;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
}

.footer h3,
.footer h4{
margin-bottom:15px;
}

.footer p{
color:#bbb;
}

.footer-links ul{
list-style:none;
}

.footer-links a{
text-decoration:none;
color:#bbb;
}

.footer-links a:hover{
color:white;
}

.footer-bottom{
text-align:center;
margin-top:40px;
border-top:1px solid #333;
padding-top:20px;
color:#aaa;
}
.hamburger{
display:none;
background:none;
border:none;
font-size:28px;
cursor:pointer;
}
.accessibility-widget{
position:fixed;
bottom:20px;
left:20px;
z-index:1000;
}

.accessibility-toggle{
background:var(--primary);
color:white;
border:none;
font-size:24px;
width:50px;
height:50px;
border-radius:50%;
cursor:pointer;
box-shadow:0 5px 15px rgba(0,0,0,0.2);
}
.accessibility-panel{
display:none;
flex-direction:column;
gap:10px;
background:white;
padding:15px;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.15);
margin-top:10px;
width:180px;
}

.accessibility-panel button{
padding:8px;
border:none;
background:#eee;
cursor:pointer;
border-radius:6px;
}

.accessibility-panel button:hover{
background:#ddd;
}

.accessibility-panel.active{
display:flex;
}

html {
  scroll-behavior: smooth;
}
@media (max-width:768px){

.hero-grid{
grid-template-columns:1fr;
text-align:center;
}
.hero-text p{
margin:auto;
}
.services-grid{
grid-template-columns:1fr;
}
.why-grid{
grid-template-columns:1fr;
}
.gallery-grid{
grid-template-columns:1fr 1fr;
}
.footer-grid{
grid-template-columns:1fr;
text-align:center;
}
.hero-buttons{
flex-direction:column;
align-items:center;
}
.nav-links{
display:none;
}
.hamburger{
display:block;
}

.nav-links{
display:none;
flex-direction:column;
position:absolute;
top:70px;
left:0;
width:100%;
background:white;
padding:20px;
gap:20px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}
.nav-links.active{
display:flex;
}
.nav-links {
    display: none;
    flex-direction: column;
    position: fixed;   /* keep it visible over content */
    top: 70px;         /* below navbar */
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 20px;
    gap: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 999;      /* just below navbar */
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}
.navbar {
  position: fixed;     /* sticky/fixed at top */
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 30px;  /* space between nav links and CTA button */
}

.nav-links {
  display: flex;
  gap: 30px;  /* space between links */
}

.hamburger {
  display: none; /* show only on mobile via media query */
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 70px;  /* adjust based on navbar height */
    left: 0;
    width: 100%;
    background: #fff;
    padding: 20px;
    gap: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-right {
    flex-direction: column;
    gap: 20px;
  }

  .hamburger {
    display: block;
  }
}
.logo {
  font-size: 1.4rem;
  font-weight: 700;
  position: fixed;
  left: 50px; /* adds breathing room between logo and links+button */
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 30px; /* space between nav links and CTA button */
}
/* Make navbar sticky at top */
/* Fixed navbar always at top */
/* Fixed navbar full width */

.navbar {
  position: fixed;      /* stick to top */
  top: 0;
  left: 0;
  width: 100%;          /* full width */
  z-index: 1000;        /* on top of everything */
  background-color: #fff; 
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.navbar .container {
  max-width: 1200px;
  max-height:100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

main {
  padding-top: 80px;   /* push content below fixed navbar */
}

.leasing-info {
  padding: 100px 0;
  background: #f9fafb; /* light background for contrast */
  color: #111;
}

.leasing-info .section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.leasing-notice {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 50px;
}

.building-info {
  display: flex;
  gap: 60px;
  justify-content: center;
  flex-wrap: wrap; /* ensures it stacks on mobile */
}

.building {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  min-width: 250px;
}

.building h3 {
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.building ul {
  list-style: disc;
  padding-left: 20px;
}

.building ul li {
  margin-bottom: 10px;
}

section{
padding:120px 0;
}

.services{
background:#f9fafb;
}

.gallery{
background:#f9fafb;
}

.cta{
background:linear-gradient(135deg,#16a34a,#15803d);
}

.hero{
padding:140px 0;
}

.service-card{
background:white;
padding:35px;
border-radius:14px;
box-shadow:0 15px 40px rgba(0,0,0,0.08);
transition:all 0.25s ease;
border:1px solid #eee;
}

.service-card:hover{
transform:translateY(-8px);
box-shadow:0 25px 60px rgba(0,0,0,0.12);
}

.gallery-grid img{
width:100%;
border-radius:10px;
object-fit:cover;
transition:transform 0.3s ease;
}

.gallery-grid img:hover{
transform:scale(1.05);
}

.section-title{
font-size:2.3rem;
text-align:center;
margin-bottom:70px;
font-weight:700;
}

.footer-contact a,
.footer-links a {
  color: #ffffff;           /* normal color */
  text-decoration: none; /* remove underline by default */
  pointer-events: auto;  /* ensure clicks work */
}



