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

body{
font-family:'Poppins',sans-serif;
background:#fff5fb;
color:#fc00b9;
overflow-x:hidden;
background-image: url("../img/Muffin.jpeg");
background-repeat: no-repeat;
background-size: 23.45%;
}

/* HERO */

.hero{
min-height:100vh;

background:
    linear-gradient(
    rgba(255,192,203,0.35),
    rgba(255,182,193,0.45)
    ),

    
    center/cover;

display:flex;
flex-direction:column;
}

/* ----- NAVIGATION ----- */

nav{
display:flex;
justify-content:space-between;
align-items:center;

padding:30px 8%;
}

.logo{
font-size:1.4rem;
font-weight:600;
}

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

nav a{
text-decoration:none;
color:rgb(0, 0, 0);
font-weight:500;
transition:0.3s;
}

nav a:hover{
color:#fd0087;
}

/* ----- HERO CONTENT ----- */

.hero-content{
flex:1;

display:flex;
flex-direction:column;
justify-content:center;
align-items:center;

text-align:center;
padding:20px;
}

.hero-content h1{
font-family:'Cormorant Garamond',serif;

font-size:6rem;
line-height:0.95;

color:rgb(253, 0, 148);

text-shadow:0 10px 30px rgba(0,0,0,0.25);

max-width:900px;
}

.hero-content p{
margin-top:25px;

max-width:700px;

color:rgb(0, 0, 0);
font-size:1.2rem;
line-height:1.8;
}

/* ----- BUTTON ----- */

.btn{
margin-top:35px;

background:
    linear-gradient(
    135deg,
    #ff8cc6,
    #ff4fa1
    );

color:white;

padding:16px 36px;

border-radius:999px;

text-decoration:none;
font-weight:600;

box-shadow:
    0 10px 30px rgba(255,79,161,0.35);

transition:0.3s;
}

.btn:hover{
transform:
    translateY(-4px)
    scale(1.03);
}

.home-button {
display: flex;
justify-content: center;
align-items: center;
margin: 60px 0 30px;
}

.btn-home {
display: inline-block;
padding: 14px 28px;
background: linear-gradient(135deg, #ff8cc6, #ff4fa1);
color: white;
text-decoration: none;
border-radius: 999px;
font-weight: 600;
box-shadow: 0 10px 25px rgba(255, 79, 161, 0.3);
transition: 0.3s;
}

.btn-home:hover {
transform: translateY(-4px) scale(1.05);
}

/* ----- ABOUT ----- */

.about{
display:grid;

grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

gap:40px;

padding:120px 10%;

align-items:center;
}

.subtitle{
text-transform:uppercase;
letter-spacing:3px;

color:#ff4fa1;

font-size:0.8rem;
font-weight:600;
}

.about h2{
font-family:'Cormorant Garamond',serif;

font-size:4rem;

margin:15px 0 25px;
}

.about p{
font-size:1.1rem;
line-height:1.9;

color:#6d4560;
}

/* ----- CARD ----- */

.card{
background:
    rgba(255,255,255,0.7);

border:
    1px solid rgba(255,255,255,0.5);

backdrop-filter:blur(14px);

padding:40px;

border-radius:30px;

box-shadow:
    0 15px 50px rgba(255,105,180,0.15);
}

.card h3{
font-family:'Cormorant Garamond',serif;

font-size:2rem;

margin-bottom:25px;
}

.card ul{
list-style:none;
}

.card li{
margin-bottom:18px;
font-size:1.05rem;
}

/* ----- MOBILE ----- */

@media(max-width:768px){

.hero-content h1{
    font-size:3.5rem;
}

nav{
    flex-direction:column;
    gap:20px;
}

nav ul{
    gap:18px;
    flex-wrap:wrap;
    justify-content:center;
}

.about h2{
    font-size:2.7rem;
}

}
/* ----- DOG SECTION ----- */

.dogs {
padding: 120px 10%;
text-align: center;
background: rgba(255, 245, 251, 0.6);
}

.dogs h2 {
font-family: 'Cormorant Garamond', serif;
font-size: 4rem;
margin-bottom: 60px;
color: rgb(253, 0, 148);
}

/* ----- GRID ----- */

.dog-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 30px;
justify-content: center;
}

/* ----- CARD ----- */

.dog-card {
background: rgba(255, 255, 255, 0.92);
backdrop-filter: blur(12px);

padding: 30px;
border-radius: 25px;

box-shadow: 0 15px 40px rgba(255, 79, 161, 0.15);

transition: 0.3s ease;
}

.dog-card:hover {
transform: translateY(-8px);
}

/* ----- IMAGE ----- */

.dog-card img {
width: 110px;
height: 110px;
object-fit: cover;
border-radius: 50%;

border: 3px solid #ff4fa1;

margin-bottom: 15px;
}

/* ----- TEXT ----- */

.dog-card h3 {
font-family: 'Cormorant Garamond', serif;
font-size: 1.8rem;
margin-bottom: 10px;
color: #fc00b9;
}

.dog-card p {
font-size: 0.95rem;
color: #6d4560;
margin: 5px 0;
}