/* =====================================
   Long Island Waterscapes Inc
   Production CSS
===================================== */

*{
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
overflow-x:hidden;
}

body{
font-family:'Inter',sans-serif;
background:#ffffff;
color:#333333;
line-height:1.8;
margin:0;
padding:0;
-webkit-font-smoothing:antialiased;
overflow-x:hidden;
}


/* =====================================
   Typography
===================================== */

h1,h2,h3{
font-family:'Playfair Display',serif;
font-weight:700;
letter-spacing:0.5px;
margin:0 0 20px 0;
}

h1{font-size:3.6rem;}
h2{font-size:2.4rem;}
h3{font-size:1.3rem;}

p{
margin-bottom:20px;
}


/* =====================================
   Layout
===================================== */

.container{
max-width:1300px;
margin:0 auto;
padding:0 25px;
}

.section{
padding:120px 0;
}

.section-dark{
background:#f5f5f5;
}


/* =====================================
   Header
===================================== */

header{
position:absolute;
width:100%;
padding:30px 0;
z-index:1000;
background:linear-gradient(rgba(0,0,0,0.25),rgba(0,0,0,0));
}


/* =====================================
   Logo
===================================== */

.logo{
white-space:nowrap;
}

.logo a{
font-family:'Playfair Display',serif;
font-size:2rem;
font-weight:700;
letter-spacing:2px;
color:#ffffff;
text-decoration:none;
text-transform:uppercase;
}


/* =====================================
   Navigation
===================================== */

.nav-links{
display:flex;
justify-content:center;
align-items:center;
flex-wrap:wrap;
width:100%;
margin-top:12px;
}

.nav-links a{
color:#ffffff;
text-decoration:none;
margin:0 16px;
font-weight:600;
font-size:0.85rem;
letter-spacing:2px;
text-transform:uppercase;
transition:0.3s ease;
}

.nav-links a:hover{
opacity:0.7;
}

.nav-cta{
background:#2A6F7F;
color:white;
padding:14px 30px;
border-radius:30px;
margin-left:18px;
font-weight:600;
font-size:0.9rem;
white-space:nowrap;
display:inline-block;
}

.nav-cta:hover{
background:#1F3D2B;
transform:translateY(-2px);
}


/* =====================================
   Hamburger Menu
===================================== */

.hamburger{
display:none;
flex-direction:column;
cursor:pointer;
gap:5px;
position:absolute;
right:20px;
top:50%;
transform:translateY(-50%);
z-index:1100;
}

.hamburger span{
width:28px;
height:3px;
background:white;
display:block;
}


/* =====================================
   Buttons
===================================== */

.btn{
background:#2A6F7F;
color:#ffffff;
padding:18px 36px;
border-radius:50px;
text-decoration:none;
font-weight:600;
letter-spacing:1px;
display:inline-block;
box-shadow:0 20px 40px rgba(0,0,0,0.25);
transition:all 0.3s ease;
}

.btn:hover{
background:#1F3D2B;
transform:translateY(-3px);
}


/* =====================================
   Hero
===================================== */

.hero{
position:relative;
min-height:70vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}

/* example homepage hero */

.hero-home{
background:
linear-gradient(rgba(0,0,0,0.45),rgba(0,0,0,0.65)),
url('/assets/images/hero.jpg') center/cover no-repeat;
}

.hero-content{
max-width:900px;
padding:20px;
}


/* =====================================
   Gallery Filters
===================================== */

.gallery-filters{
display:flex;
flex-wrap:wrap;
justify-content:flex-start;
gap:10px;
margin-bottom:40px;
}

.filter-btn{
background:#f4f4f4;
border:none;
padding:12px 22px;
border-radius:30px;
cursor:pointer;
font-weight:600;
font-size:0.9rem;
letter-spacing:0.5px;
transition:all 0.25s ease;
}

.filter-btn:hover{
background:#2A6F7F;
color:white;
}

.filter-btn.active{
background:#2A6F7F;
color:white;
box-shadow:0 6px 16px rgba(0,0,0,0.2);
}


/* =====================================
   Luxury Experience Section
===================================== */

.luxury-experience{
min-height:70vh;
padding:120px 20px;
background:
linear-gradient(rgba(0,0,0,0.45),rgba(0,0,0,0.65)),
url('/assets/images/waterfall1.jpg') center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}

.luxury-content{
max-width:750px;
margin:auto;
padding:20px;
}

.luxury-content h2{
font-size:2.6rem;
margin-bottom:25px;
}

.luxury-content p{
font-size:1.15rem;
margin-bottom:20px;
line-height:1.7;
}


/* =====================================
   Services
===================================== */

.service-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
margin-top:60px;
}

.service-card{
background:#ffffff;
padding:35px;
border-radius:14px;
box-shadow:0 20px 40px rgba(0,0,0,0.08);
transition:transform 0.3s ease;
text-align:center;
}

.service-card:hover{
transform:translateY(-6px);
}


/* =====================================
   Featured Projects
===================================== */

.featured-projects{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
}

.project-card{
background:#fff;
border-radius:12px;
overflow:hidden;
box-shadow:0 20px 40px rgba(0,0,0,0.1);
}

.project-card img{
width:100%;
height:260px;
object-fit:cover;
}

.project-info{
padding:25px;
}


/* =====================================
   Gallery
===================================== */

.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:20px;
margin-top:40px;
}

.gallery-item img{
width:100%;
border-radius:12px;
transition:transform 0.35s ease;
cursor:pointer;
}

.gallery-item img:hover{
transform:scale(1.05);
}


/* =====================================
   Before After Slider
===================================== */

.ba-slider{
position:relative;
overflow:hidden;
max-width:900px;
margin:60px auto;
border-radius:12px;
}

.ba-slider img{
width:100%;
display:block;
}

.resize{
position:absolute;
top:0;
left:0;
height:100%;
width:10%;
overflow:hidden;
}

.handle{
position:absolute;
left:10%;
top:0;
bottom:0;
width:4px;
background:white;
cursor:ew-resize;
}


/* =====================================
   Gallery Lightbox
===================================== */

#lightbox{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.9);
display:none;
align-items:center;
justify-content:center;
z-index:2000;
}

.lightbox-image{
max-width:90%;
max-height:90%;
border-radius:10px;
box-shadow:0 10px 40px rgba(0,0,0,0.5);
}

.lightbox-close{
position:absolute;
top:40px;
right:40px;
font-size:40px;
color:white;
cursor:pointer;
}


/* =====================================
   Footer
===================================== */

footer{
background:#1E1E1E;
color:white;
padding:80px 0 40px;
}

.footer-grid{
display:grid;
grid-template-columns:1.5fr 1fr 1fr;
gap:40px;
align-items:start;
}

.footer-bottom{
margin-top:50px;
padding-top:20px;
border-top:1px solid rgba(255,255,255,0.2);
text-align:center;
font-size:0.85rem;
opacity:0.8;
}


/* =====================================
   Back To Top
===================================== */

#backToTop{
position:fixed;
bottom:25px;
right:25px;
background:#2A6F7F;
color:#ffffff;
border:none;
width:50px;
height:50px;
border-radius:50%;
font-size:22px;
cursor:pointer;
display:none;
align-items:center;
justify-content:center;
z-index:1000;
}


/* =====================================
   Contact Form
===================================== */

.contact-form{
max-width:700px;
margin:40px auto;
}

.form-group{
display:flex;
flex-direction:column;
margin-bottom:20px;
}

.form-group label{
font-weight:600;
margin-bottom:6px;
}

.form-group input,
.form-group textarea,
.form-group select{
width:100%;
padding:14px;
border-radius:6px;
border:1px solid #ddd;
font-family:'Inter',sans-serif;
font-size:16px;
}

.form-group textarea{
resize:vertical;
}

.contact-form .btn{
margin-top:20px;
}

.project-minimum{
background:#f5f5f5;
padding:18px;
border-left:4px solid #2A6F7F;
margin-bottom:30px;
font-size:0.95rem;
}


/* =====================================
   Mobile
===================================== */

@media (max-width:768px){

header{
position:relative;
background:#1F3D2B;
}

.hamburger{
display:flex;
}

.nav-links{
display:none;
flex-direction:column;
background:#1F3D2B;
position:absolute;
top:100%;
left:0;
width:100%;
padding:20px 0;
}

.nav-links.active{
display:flex;
}

.nav-links a{
padding:12px 0;
margin:0;
text-align:center;
font-size:1.1rem;
}

.hero{
padding:140px 20px 100px;
}

.hero h1{
font-size:2rem;
}

.gallery{
grid-template-columns:1fr;
}

.footer-grid{
grid-template-columns:1fr;
text-align:center;
}

}


/* =====================================
   Mobile Call Button
===================================== */

.mobile-call{
display:none;
position:fixed;
bottom:0;
left:0;
width:100%;
background:#2A6F7F;
color:white;
text-align:center;
padding:16px;
font-size:18px;
font-weight:600;
text-decoration:none;
z-index:2000;
}

@media (max-width:768px){

.mobile-call{
display:block;
}

body{
padding-bottom:70px;
}

#backToTop{
bottom:85px;
}

}