</div>

<div class="service-card">

<h3>Nail Trim</h3>

<p>
Quick nail maintenance to keep paws healthy and comfortable.
</p>

<span>Starting At $15</span>

</div>

<div class="service-card">

<h3>Add-On Services</h3>

<p>
Teeth brushing, de-shedding treatments, paw balm, and more.
</p>

<span>Ask About Add-Ons</span>

</div>

</div>

</section>

<section class="pricing-note">

<div class="note-card">

<h2>Please Note</h2>

<p>
Grooming prices may vary depending on breed, coat condition, temperament, matting, and services requested.
</p>

</div>

</section>

<section class="gallery-section">

<h2>Pet Cabana Grooming</h2>

/* FEATURED GALLERY */

.featured-gallery{
display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:25px;

margin-bottom:40px;
}

.featured-gallery img{
width:100%;

height:320px;

object-fit:cover;

border-radius:35px;
}

/* BUTTON */

.gallery-btn{
background:#1597a5;

color:white;

border:none;

padding:18px 36px;

border-radius:50px;

font-size:18px;

cursor:pointer;
}

/* POPUP */

.gallery-popup{
position:fixed;

top:0;
left:0;

width:100%;
height:100%;

background:rgba(0,0,0,0.9);

display:none;

justify-content:center;

align-items:center;

padding:40px;

z-index:5000;

overflow-y:auto;
}

/* CLOSE BUTTON */

.close-gallery{
position:absolute;

top:30px;
right:40px;

font-size:50px;

color:white;

cursor:pointer;
}

/* POPUP GRID */

.popup-gallery-grid{
width:100%;

max-width:1200px;

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:25px;
}

.popup-gallery-grid img{
width:100%;

height:320px;

object-fit:cover;

border-radius:30px;
}


<section class="request-section" id="groom-form">

<h2>Request Grooming Appointment</h2>

<form class="request-form">

<input type="text" placeholder="Owner Name">

<input type="text" placeholder="Pet Name">

<input type="text" placeholder="Breed">

<select>

<option>Select Grooming Service</option>

<option>Bath & Blow Dry</option>

<option>Full Groom</option>

<option>Nail Trim</option>

<option>Add-On Services</option>

</select>

<input type="date">

<textarea placeholder="Tell us about your pet, coat condition, temperament, or requested services."></textarea>

<button type="submit">
Submit Request
</button>

</form>

</section>

<footer class="footer">

<h2>Pet Cabana Timberlake</h2>

<p>434-385-0141</p>

<p>Timberlake, Virginia</p>

<p>Follow us on Facebook & Instagram</p>

</footer>

</body>

</html>




@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600&display=swap');

body{
margin:0;
padding:0;
font-family:'Fredoka', sans-serif;
background:#fffaf5;
color:#333;
}

/* NAVBAR */

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:25px 60px;
background:#fff4dc;
position:sticky;
top:0;
z-index:1000;
}

.logo{
font-size:36px;
color:#1597a5;
font-weight:600;
}

.nav-links{
display:flex;
gap:25px;
}

.nav-links a{
text-decoration:none;
color:#1597a5;
font-size:18px;
}

/* HERO */

.hero{
display:flex;
justify-content:space-between;
align-items:center;
padding:100px 8%;
gap:60px;
flex-wrap:wrap;
}

.hero-text{
flex:1;
}

.hero-text h1{
font-size:72px;
color:#1597a5;
margin-bottom:20px;
}

.hero-text p{
font-size:22px;
line-height:1.7;
margin-bottom:35px;
}

.hero-btn{
text-decoration:none;
background:#ff8f6b;
color:white;
padding:18px 34px;
border-radius:50px;
display:inline-block;
}

.hero-image{
flex:1;
display:flex;
justify-content:center;
}

.placeholder-image{
width:100%;
max-width:500px;
height:420px;

background:#d9f0f2;

border-radius:40% 60% 55% 45%;

display:flex;
justify-content:center;
align-items:center;

color:#1597a5;
font-size:28px;
}

/* SERVICES */

.services-section{
padding:100px 8%;
text-align:center;
}

.services-section h2{
font-size:58px;
color:#1597a5;
margin-bottom:60px;
}

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
}

.service-card{
background:white;
padding:40px;
border-radius:35px;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.service-card h3{
font-size:32px;
color:#1597a5;
}

.service-card span{
color:#ff8f6b;
font-weight:bold;
}

/* NOTE */

.pricing-note{
padding:50px 8%;
}

.note-card{
background:#1597a5;
color:white;
padding:50px;
border-radius:35px;
text-align:center;
}

/* GALLERY */

.gallery-section{
padding:100px 8%;
background:#fff4dc;
text-align:center;
}

.gallery-section h2{
font-size:58px;
color:#1597a5;
margin-bottom:60px;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.gallery-placeholder{
height:300px;
background:#d9f0f2;
border-radius:35px;

display:flex;
justify-content:center;
align-items:center;

color:#1597a5;
font-size:24px;
}

/* FORM */

.request-section{
padding:100px 8%;
text-align:center;
}

.request-section h2{
font-size:58px;
color:#1597a5;
margin-bottom:50px;
}

.request-form{
max-width:700px;
margin:auto;

display:flex;
flex-direction:column;
gap:20px;
}

.request-form input,
.request-form select,
.request-form textarea{
padding:20px;
border-radius:18px;
border:none;
background:white;
box-shadow:0 3px 10px rgba(0,0,0,0.08);
font-size:16px;
}

.request-form textarea{
min-height:180px;
}

.request-form button{
background:#1597a5;
color:white;
border:none;
padding:20px;
border-radius:50px;
font-size:18px;
cursor:pointer;
}

/* FOOTER */

.footer{
background:#1597a5;
color:white;
text-align:center;
padding:70px 20px;
margin-top:80px;
}

/* MOBILE */

@media(max-width:900px){

.hero{
flex-direction:column;
text-align:center;
}

.hero-text h1{
font-size:50px;
}

.services-section h2,
.gallery-section h2,
.request-section h2{
font-size:42px;
}

.navbar{
flex-direction:column;
gap:20px;
.navbar{
flex-direction:column;

gap:15px;

padding:20px;
}

.nav-links{
display:flex;

flex-wrap:wrap;

justify-content:center;

gap:15px;
}

.nav-links a{
font-size:16px;
}

/* HERO IMAGES */

.hero-image img,
.about-image img,
.bring-image img,
.intro-image img{
max-width:280px;
}

/* GALLERY IMAGES */

.gallery-grid img{
height:220px;
}

/* SERVICE IMAGES */

.service-card img,
.option-card img{
height:200px;
}

/* HERO TEXT */

.hero-text h1,
.contact-hero h1{
font-size:42px;
}

.hero-text p{
font-size:18px;
}

}

}

.social-links{
display:flex;
justify-content:center;
gap:20px;
margin-top:25px;
}

.social-links a{
text-decoration:none;
background:white;
color:#1597a5;
padding:14px 28px;
border-radius:40px;
font-weight:600;
transition:0.3s;
}

.social-links a:hover{
background:#ffd166;
}
/* FEATURED GALLERY */

.featured-gallery{
display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:25px;

margin-bottom:40px;
}

.featured-gallery img{
width:100%;

height:320px;

object-fit:cover;

border-radius:35px;
}

/* BUTTON */

.gallery-btn{
background:#1597a5;

color:white;

border:none;

padding:18px 36px;

border-radius:50px;

font-size:18px;

cursor:pointer;
}

/* POPUP */

.gallery-popup{
position:fixed;

top:0;
left:0;

width:100%;
height:100%;

background:rgba(0,0,0,0.9);

display:none;

justify-content:center;

align-items:center;

padding:40px;

z-index:5000;

overflow-y:auto;
}

/* CLOSE BUTTON */

.close-gallery{
position:fixed;

top:20px;

right:25px;

width:50px;

height:50px;

background:white;

color:#1597a5;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:34px;

font-weight:bold;

cursor:pointer;

z-index:99999;

box-shadow:0 5px 15px rgba(0,0,0,0.25);
}

/* POPUP GRID */

.popup-gallery-grid{
width:100%;

max-width:1200px;

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:25px;
}

.popup-gallery-grid img{
width:100%;

height:320px;

object-fit:cover;

border-radius:30px;
}
/* HERO IMAGE FIX */

.hero-image{
flex:1;

display:flex;

justify-content:center;
}

.hero-image img{
width:100%;

max-width:500px;

height:500px;

object-fit:cover;

border-radius:40% 60% 55% 45%;

box-shadow:0 10px 25px rgba(0,0,0,0.12);
}

