* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

:root {
/* Park Life Brand Colors */
--park-navy: #202944;
--park-sage: #BAC4B9;
--park-white: #F9F9F9;

/* Additional Supporting Colors */
--park-navy-light: rgba(32, 41, 68, 0.9);
--park-navy-lighter: rgba(32, 41, 68, 0.1);
--park-sage-light: rgba(186, 196, 185, 0.3);
--park-sage-dark: #9BA89A;

/* Gradients */
--gradient-primary: linear-gradient(135deg, var(--park-navy) 0%, #2C3A5E 100%);
--gradient-sage: linear-gradient(135deg, var(--park-sage) 0%, var(--park-sage-dark) 100%);
--gradient-overlay: linear-gradient(180deg, rgba(32, 41, 68, 0) 0%, rgba(32, 41, 68, 0.8) 100%);
}

body {
font-family: 'Asap Condensed', sans-serif;
font-weight: 400;
background: var(--park-white);
color: var(--park-navy);
overflow-x: hidden;
line-height: 1.6;
}

/* Loading Screen */
.loader {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
background: var(--park-white);
display: flex;
align-items: center;
justify-content: center;
z-index: 10000;
transition: opacity 0.5s, visibility 0.5s;
}

.loader.hidden {
opacity: 0;
visibility: hidden;
}

.loader-content {
text-align: center;
padding: 0 20px;
}

.loader-logo {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
animation: fadeInUp 1s ease;
}

.loader-symbol {
width: 80px;
height: 100px;
margin-bottom: 20px;
animation: pulse 1.5s infinite;
}

.loader-text {
font-size: 1.5rem;
font-weight: 400;
letter-spacing: 15px;
color: var(--park-navy);
text-transform: uppercase;
}

@keyframes pulse {
0%, 100% { transform: scale(1); opacity: 1; }
50% { transform: scale(1.05); opacity: 0.8; }
}

@keyframes fadeInUp {
from {
    opacity: 0;
    transform: translateY(30px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

/* Navigation */
nav {
position: fixed;
top: 0;
width: 100%;
padding: 20px 30px;
background: rgba(249, 249, 249, 0.95);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
z-index: 1000;
transition: all 0.3s ease;
border-bottom: 1px solid rgba(32, 41, 68, 0.05);
}

nav.scrolled {
padding: 12px 30px;
background: rgba(249, 249, 249, 0.98);
box-shadow: 0 2px 20px rgba(32, 41, 68, 0.1);
}

.nav-container {
max-width: 1400px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
}

.logo {
display: flex;
align-items: center;
text-decoration: none;
transition: all 0.3s ease;
}

.logo-text {
font-size: 1.2rem;
font-weight: 250;
color: var(--park-navy);
text-transform: uppercase;
letter-spacing: 1px;
}

.logo:hover {
transform: translateX(5px);
}

.nav-menu {
display: flex;
gap: 30px;
list-style: none;
}

.nav-link {
color: var(--park-navy);
text-decoration: none;
font-size: 0.9rem;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 1px;
transition: all 0.3s ease;
position: relative;
}

.nav-link::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: var(--park-sage);
transition: width 0.3s ease;
}

.nav-link:hover {
color: var(--park-sage-dark);
}

.nav-link:hover::after {
width: 100%;
}

.cta-button {
background: var(--park-navy);
color: var(--park-white);
padding: 10px 20px;
text-decoration: none;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
font-size: 0.8rem;
transition: all 0.3s ease;
display: inline-block;
position: relative;
overflow: hidden;
border: 2px solid var(--park-navy);
border-radius: 3px;
}

.cta-button:hover {
background: var(--park-sage);
border-color: var(--park-sage);
color: var(--park-navy);
transform: translateY(-2px);
box-shadow: 0 10px 30px rgba(32, 41, 68, 0.2);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
display: none;
flex-direction: column;
cursor: pointer;
padding: 5px;
}

.mobile-menu-toggle span {
width: 25px;
height: 3px;
background: var(--park-navy);
margin: 3px 0;
transition: 0.3s;
}

/* Hero Section */
.hero {
height: 100vh;
min-height: 600px;
position: relative;
display: flex;
align-items: center;
justify-content: center;
background: var(--gradient-primary);
overflow: hidden;
}

.hero-pattern {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0.05;
background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 35px,
    rgba(255, 255, 255, 0.1) 35px,
    rgba(255, 255, 255, 0.1) 70px
);
}

.hero-content {
text-align: center;
z-index: 1;
max-width: 900px;
padding: 0 20px;
animation: fadeInUp 1s ease;
}

.hero-badge {
display: inline-block;
padding: 8px 60px;
background: var(--park-sage);
color: var(--park-navy);
font-size: 0.75rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1.5px;
margin-bottom: 25px;
position: relative;
animation: slideDown 1s ease 0.2s both;
border-radius: 2px;
}

@keyframes slideDown {
from {
    opacity: 0;
    transform: translateY(-20px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

.hero-title {
font-size: clamp(2.5rem, 12vw, 6rem);
font-weight: 300;
line-height: 0.9;
margin-bottom: 20px;
color: var(--park-white);
text-transform: uppercase;
letter-spacing: -2px;
animation: fadeInUp 1s ease 0.3s both;
}

.hero-subtitle {
font-size: clamp(1rem, 4vw, 1.5rem);
font-weight: 300;
color: var(--park-sage);
margin-bottom: 40px;
letter-spacing: 1px;
animation: fadeInUp 1s ease 0.4s both;
line-height: 1.4;
}

/* Countdown Timer */
.countdown {
display: flex;
gap: 15px;
justify-content: center;
margin: 40px 0;
animation: fadeInUp 1s ease 0.5s both;
flex-wrap: wrap;
}

.countdown-item {
text-align: center;
padding: 15px 10px;
background: rgba(249, 249, 249, 0.1);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border: 1px solid rgba(249, 249, 249, 0.2);
min-width: 80px;
transition: all 0.3s ease;
border-radius: 5px;
}

.countdown-item:hover {
transform: translateY(-5px);
background: rgba(186, 196, 185, 0.2);
border-color: var(--park-sage);
box-shadow: 0 10px 30px rgba(32, 41, 68, 0.2);
}

.countdown-number {
font-size: clamp(1.5rem, 5vw, 2.5rem);
font-weight: 700;
color: var(--park-white);
display: block;
}

.countdown-label {
font-size: 0.7rem;
color: var(--park-sage);
text-transform: uppercase;
letter-spacing: 1px;
font-weight: 500;
}

.hero-cta {
animation: fadeInUp 1s ease 0.6s both;
}

.hero-cta .cta-button {
background: var(--park-sage);
color: var(--park-navy);
font-size: 0.9rem;
padding: 15px 35px;
border: 2px solid var(--park-sage);
}

.hero-cta .cta-button:hover {
background: var(--park-white);
border-color: var(--park-white);
}

/* Features Section */
.features {
padding: 80px 30px;
background: var(--park-white);
position: relative;
}

.container {
max-width: 1400px;
margin: 0 auto;
}

.section-header {
text-align: center;
margin-bottom: 60px;
}

.section-badge {
display: inline-block;
padding: 6px 15px;
background: var(--park-sage-light);
border: 1px solid var(--park-sage);
color: var(--park-navy);
font-size: 0.75rem;
font-weight: 600;
margin-bottom: 15px;
text-transform: uppercase;
letter-spacing: 1.5px;
border-radius: 2px;
}

.section-title {
font-size: clamp(2rem, 8vw, 3rem);
font-weight: 800;
margin-bottom: 20px;
color: var(--park-navy);
text-transform: uppercase;
letter-spacing: -1px;
line-height: 1.1;
}

.section-description {
font-size: clamp(1rem, 3vw, 1.2rem);
color: var(--park-navy-light);
max-width: 600px;
margin: 0 auto;
font-weight: 300;
line-height: 1.6;
}

.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 25px;
margin-top: 50px;
}

.feature-card {
background: var(--park-white);
border: 1px solid rgba(32, 41, 68, 0.1);
padding: 30px 25px;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
border-radius: 5px;
}

.feature-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 4px;
background: var(--park-sage);
transform: translateX(-100%);
transition: transform 0.3s ease;
}

.feature-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 40px rgba(32, 41, 68, 0.15);
}

.feature-card:hover::before {
transform: translateX(0);
}

.feature-icon {
width: 50px;
height: 50px;
background: var(--park-navy-lighter);
display: flex;
align-items: center;
justify-content: center;
font-size: 1.3rem;
margin-bottom: 15px;
transition: all 0.3s ease;
border-radius: 3px;
}

.feature-card:hover .feature-icon {
background: var(--park-sage);
}

.feature-title {
font-size: 1.3rem;
font-weight: 700;
margin-bottom: 12px;
color: var(--park-navy);
text-transform: uppercase;
letter-spacing: 0.5px;
line-height: 1.2;
}

.feature-description {
color: var(--park-navy-light);
line-height: 1.6;
font-weight: 400;
font-size: 0.95rem;
}

/* Gallery Section */
.gallery {
padding: 80px 0;
background: linear-gradient(180deg, var(--park-white) 0%, rgba(186, 196, 185, 0.1) 100%);
position: relative;
overflow: hidden;
}

.gallery-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 0;
margin-top: 50px;
}

.gallery-item {
position: relative;
overflow: hidden;
height: 250px;
background: var(--park-navy);
cursor: pointer;
transition: all 0.3s ease;
}

.gallery-item::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: var(--gradient-overlay);
opacity: 0;
transition: opacity 0.3s ease;
z-index: 1;
}

.gallery-item:hover::before {
opacity: 1;
}

.gallery-item:hover {
transform: scale(1.02);
z-index: 10;
box-shadow: 0 20px 60px rgba(32, 41, 68, 0.4);
}

.gallery-image {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
transform: scale(1.1);
}

.gallery-info {
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: 20px;
transform: translateY(100%);
transition: transform 0.3s ease;
z-index: 2;
}

.gallery-item:hover .gallery-info {
transform: translateY(0);
}

.gallery-title {
font-size: 1.2rem;
font-weight: 700;
margin-bottom: 8px;
color: var(--park-white);
text-transform: uppercase;
letter-spacing: 1px;
}

.gallery-description {
color: var(--park-sage);
font-weight: 300;
font-size: 0.9rem;
}

/* Amenities Section */
.amenities {
padding: 80px 30px;
background: var(--park-white);
position: relative;
}

.amenities-showcase {
display: grid;
grid-template-columns: 1fr;
gap: 40px;
align-items: center;
margin-top: 60px;
}

.amenities-content {
order: 2;
}

.amenities-list {
list-style: none;
margin-top: 30px;
}

.amenity-item {
display: flex;
align-items: center;
padding: 15px 0;
border-bottom: 1px solid rgba(32, 41, 68, 0.1);
transition: all 0.3s ease;
cursor: pointer;
}

.amenity-item:hover {
padding-left: 10px;
border-bottom-color: var(--park-sage);
}

.amenity-icon {
width: 45px;
height: 45px;
background: var(--park-navy-lighter);
display: flex;
align-items: center;
justify-content: center;
margin-right: 15px;
font-size: 1.1rem;
transition: all 0.3s ease;
border-radius: 3px;
}

.amenity-item:hover .amenity-icon {
background: var(--park-sage);
}

.amenity-text {
flex: 1;
}

.amenity-title {
font-size: 1.1rem;
font-weight: 600;
margin-bottom: 5px;
color: var(--park-navy);
text-transform: uppercase;
letter-spacing: 0.5px;
}

.amenity-description {
color: var(--park-navy-light);
font-size: 0.85rem;
font-weight: 300;
}

.amenities-visual {
position: relative;
height: 400px;
overflow: hidden;
background: var(--gradient-primary);
border-radius: 5px;
order: 1;
}

.amenities-image {
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0.9;
}

/* Contact Section */
.contact {
padding: 80px 30px;
background: linear-gradient(180deg, var(--park-white) 0%, rgba(186, 196, 185, 0.05) 100%);
position: relative;
}

.contact-container {
max-width: 700px;
margin: 0 auto;
text-align: center;
}

.form-container {
background: var(--park-white);
border: 1px solid rgba(32, 41, 68, 0.1);
padding: 40px 30px;
margin-top: 50px;
box-shadow: 0 10px 40px rgba(32, 41, 68, 0.05);
border-radius: 8px;
}

.form-grid {
display: grid;
grid-template-columns: 1fr;
gap: 25px;
margin-bottom: 25px;
}

.form-group {
position: relative;
}

.form-group.full-width {
grid-column: 1 / -1;
}

.form-input {
width: 100%;
padding: 15px 18px;
background: var(--park-white);
border: 1px solid rgba(32, 41, 68, 0.2);
color: var(--park-navy);
font-size: 1rem;
font-family: 'Asap Condensed', sans-serif;
font-weight: 400;
transition: all 0.3s ease;
border-radius: 5px;
}

.form-input:focus {
outline: none;
border-color: var(--park-sage);
box-shadow: 0 0 0 3px var(--park-sage-light);
}

.form-label {
position: absolute;
top: -10px;
left: 18px;
background: var(--park-white);
padding: 0 8px;
font-size: 0.8rem;
color: var(--park-navy);
font-weight: 500;
text-transform: uppercase;
letter-spacing: 1px;
}

.form-textarea {
min-height: 100px;
resize: vertical;
}

.submit-button {
background: var(--park-navy);
color: var(--park-white);
padding: 16px 40px;
border: 2px solid var(--park-navy);
font-size: 0.9rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
text-transform: uppercase;
letter-spacing: 1.5px;
font-family: 'Asap Condensed', sans-serif;
border-radius: 5px;
width: 100%;
}

.submit-button:hover {
background: var(--park-sage);
border-color: var(--park-sage);
color: var(--park-navy);
transform: translateY(-2px);
box-shadow: 0 15px 40px rgba(32, 41, 68, 0.2);
}

/* Footer */
footer {
padding: 50px 30px 25px;
background: var(--park-navy);
color: var(--park-white);
}

.footer-content {
max-width: 1400px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr;
gap: 40px;
margin-bottom: 30px;
}

.footer-brand {
text-align: center;
}

.footer-logo {
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 15px;
}

.footer-logo-text {
font-size: 1.3rem;
font-weight: 250;
color: var(--park-white);
text-transform: uppercase;
letter-spacing: 1px;
}

.footer-description {
color: rgba(249, 249, 249, 0.7);
line-height: 1.6;
font-weight: 300;
margin-bottom: 20px;
font-size: 0.95rem;
}

.footer-column {
text-align: center;
}

.footer-column h4 {
font-size: 0.9rem;
font-weight: 700;
margin-bottom: 15px;
color: var(--park-sage);
text-transform: uppercase;
letter-spacing: 1px;
}

.footer-links {
list-style: none;
}

.footer-links li {
margin-bottom: 10px;
}

.footer-links a {
color: rgba(249, 249, 249, 0.7);
text-decoration: none;
transition: all 0.3s ease;
font-weight: 300;
font-size: 0.9rem;
}

.footer-links a:hover {
color: var(--park-sage);
}

.social-links {
display: flex;
gap: 12px;
margin-top: 15px;
justify-content: center;
}

.social-link {
width: 35px;
height: 35px;
background: rgba(249, 249, 249, 0.1);
border: 1px solid rgba(249, 249, 249, 0.2);
display: flex;
align-items: center;
justify-content: center;
color: var(--park-white);
text-decoration: none;
transition: all 0.3s ease;
border-radius: 3px;
font-size: 0.9rem;
}

.social-link:hover {
background: var(--park-sage);
border-color: var(--park-sage);
color: var(--park-navy);
transform: translateY(-3px);
}

.footer-bottom {
padding-top: 25px;
border-top: 1px solid rgba(249, 249, 249, 0.1);
text-align: center;
color: rgba(249, 249, 249, 0.5);
font-weight: 300;
font-size: 0.85rem;
}

/* Scroll Reveal Animations */
.reveal {
opacity: 0;
transform: translateY(30px);
transition: all 0.8s ease;
}

.reveal.active {
opacity: 1;
transform: translateY(0);
}

/* Responsive Design */
@media (min-width: 480px) {
.countdown {
    gap: 20px;
}

.countdown-item {
    min-width: 90px;
    padding: 18px 12px;
}

.form-grid {
    grid-template-columns: 1fr 1fr;
}

.submit-button {
    width: auto;
    padding: 16px 50px;
}
}

@media (min-width: 768px) {
nav {
    padding: 25px 40px;
}

nav.scrolled {
    padding: 15px 40px;
}

.logo-text {
    font-size: 1.4rem;
}

.cta-button {
    padding: 12px 25px;
    font-size: 0.9rem;
}

.hero {
    min-height: 700px;
}

.loader-text {
    font-size: 2rem;
    letter-spacing: 20px;
}

.countdown {
    gap: 25px;
}

.countdown-item {
    min-width: 100px;
    padding: 20px;
}

.features {
    padding: 100px 40px;
}

.features-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.gallery-item {
    height: 300px;
}

.amenities {
    padding: 100px 40px;
}

.amenities-showcase {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.amenities-content {
    order: 1;
    padding-right: 30px;
}

.amenities-visual {
    order: 2;
    height: 500px;
}

.contact {
    padding: 100px 40px;
}

.form-container {
    padding: 50px 40px;
}

.footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.footer-brand,
.footer-column {
    text-align: left;
}

.footer-logo {
    justify-content: flex-start;
}

.social-links {
    justify-content: flex-start;
}
}

@media (min-width: 1024px) {
nav {
    padding: 25px 50px;
}

nav.scrolled {
    padding: 15px 50px;
}

.nav-menu {
    gap: 40px;
}

.nav-link {
    font-size: 0.95rem;
}

.cta-button {
    padding: 12px 30px;
    font-size: 0.9rem;
}

.features {
    padding: 100px 50px;
}

.features-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.amenities {
    padding: 100px 50px;
}

.amenities-content {
    padding-right: 40px;
}

.amenities-visual {
    height: 600px;
}

.contact {
    padding: 100px 50px;
}

.contact-container {
    max-width: 800px;
}

.form-container {
    padding: 60px;
}

.footer-content {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-brand {
    padding-right: 40px;
}
}

@media (max-width: 768px) {
/* Hide desktop menu, show mobile toggle */
.nav-menu {
    display: none;
}

.mobile-menu-toggle {
    display: flex;
}

/* Mobile menu styles */
.nav-menu.mobile-active {
    display: flex;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--park-white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(32, 41, 68, 0.1);
    gap: 20px;
}

.nav-menu.mobile-active .nav-link {
    padding: 10px 0;
    border-bottom: 1px solid rgba(32, 41, 68, 0.1);
}

/* Touch-friendly buttons */
.cta-button {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.submit-button {
    min-height: 50px;
}

/* Better spacing for mobile */
.hero-content {
    padding: 0 25px;
}

.section-header {
    padding: 0 10px;
}

/* Improved gallery for mobile touch */
.gallery-item {
    height: 220px;
}

.gallery-info {
    padding: 15px;
}

/* Mobile form improvements */
.form-input {
    min-height: 50px;
    font-size: 16px; /* Prevents zoom on iOS */
}

.form-textarea {
    min-height: 120px;
}
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
.hero-pattern {
    background-size: 70px 70px;
}
}

/* Landscape mobile phones */
@media (max-width: 896px) and (orientation: landscape) {
.hero {
    min-height: 500px;
}

.countdown {
    margin: 25px 0;
}

.hero-badge {
    margin-bottom: 15px;
}
}


.gallery-image{width:100%;height:auto;aspect-ratio:3/2;object-fit:cover;background:#f3f4f6}
