
body {
    background-color: #fff6f8;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #3a3a3a;
}
.bg-soft-pink {
    background-color: #fadadd;
}
.text-pink {
    color: #d67a8d;
}
.btn-soft-pink {
    background-color: #d67a8d;
    border: none;
    color: white;
    transition: background-color 0.3s ease;
    font-weight: 600;
}
.btn-soft-pink:hover {
    background-color: #c0657a;
    color: white;
}

/* Hero Section */
#home {
position: relative;
min-height: 70vh; /* height */
background: url('../content/hero-bg.jpg') center center/cover no-repeat;
display: flex;
align-items: center;
justify-content: center;
padding: 3rem 2rem 8rem; /* bottom padding */
overflow: visible;
color: #fff;
}

#home .container {
position: relative;
z-index: 2;
max-width: 1100px; 
display: flex;
align-items: center;
justify-content: space-between;
gap: 3rem;
flex-wrap: wrap;
}

#home .hero-text {
flex: 1 1 800px; /* wider text area */
min-width: 280px;
}

#home h1 {
font-weight: 900;
font-size: clamp(2.8rem, 6vw, 4.2rem);
margin-bottom: 1rem;
line-height: 1.1;
}

#home p.lead {
font-size: clamp(1.3rem, 2.5vw, 1.8rem);
max-width: 600px;
margin-bottom: 0; /* button inline */
color: #fdf1f4;
text-shadow: 1px 1px 5px rgba(0,0,0,0.25);
}

#home .btn-soft-pink {
white-space: nowrap;
align-self: flex-start;
padding: 1rem 2.5rem;
border-radius: 50px;
box-shadow: 0 4px 18px rgba(214, 122, 141, 0.7);
font-size: 1.3rem;
margin-top: 0; /* aligned inline */
background: #fadadd;
}


#home .overlay {
position: absolute;
inset: 0;
background: rgba(50, 20, 35, 0.5);
z-index: 0;
}

#hero-blocks {
position: absolute;
bottom: -110px;
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 2.5rem;
flex-wrap: wrap;
justify-content: center;
z-index: 3;
width: 95%;
max-width: 1100px;
padding: 0 1rem;
}

.hero-block {
background: white;
color: #3a3a3a;
border-radius: 1.5rem;
box-shadow: 0 8px 22px rgb(214 122 141 / 0.35);
flex: 1 1 160px;      
max-width: 200px;     
padding: 1.8rem 1.2rem;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
font-weight: 600;
transition: transform 0.3s ease;
}
.hero-block:hover {
transform: translateY(-8px);
box-shadow: 0 14px 28px rgb(214 122 141 / 0.45);
}
.hero-block img {
max-width: 70px;
margin-bottom: 1rem;
}
.hero-block .slogan {
font-size: 0.9rem;
font-style: italic;
margin-top: 0.6rem;
color: #a75e6a;
}

/* Features section - 4 columns, centered + auto-wrap */
#features {
    padding-top: 10rem; 
    text-align: center;
}
#features .feature-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
}
#features .feature-item {
    flex: 1 1 250px;
    max-width: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
    padding-bottom: 2rem;
}
#features .feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgb(214 122 141 / 0.3);
}
#features .feature-item img {
    width: 70px;
    height: 70px;
    margin-bottom: 1rem;
}
#features .feature-item h3 {
    margin-bottom: 0.8rem;
    color: #d67a8d;
    font-weight: 700;
}
#features .feature-item p {
    color: #555;
    font-size: 0.95rem;
}

/* Section headers styling */
section.container > h2 {
    border-bottom: 2px solid #d67a8d;
    padding-bottom: 0.4rem;
    margin-bottom: 1.8rem;
    font-weight: 700;
    color: #d67a8d;
    text-align: center;
}

/* Sections styling for story, about, contact */
#our-story, #about, #contact {
    margin-top: 3rem;
    margin-bottom: 3rem;
}
#about {
    background: #fadadd;
    border-radius: 1rem;
    padding: 2rem;
}
#contact a.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: #25d366;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.4rem;
}
#contact a.whatsapp-link:hover {
    text-decoration: underline;
}
#contact a.whatsapp-link svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}
.platform-icon {
  border-radius: 30%;
  border: 1px solid #d67a8d;
}
.about-header {
  color: #d67a8d; 
}




/* Responsive for mobile and tablets */

@media (max-width: 991px) {   /* Tablet breakpoint */
#home {
    padding: 3rem 1.5rem 12rem; 
}
#home .container {
    max-width: 100%;
}

#hero-blocks {
    display: none;
}
#home .container {
    justify-content: center;
}
#home .hero-text {
    flex: 1 1 100%;
    text-align: center;
}
#home .btn-soft-pink {
    margin-top: 1rem;
    align-self: center;
}
#features {
    padding-top: 5rem; 
    text-align: center;
}
}

@media (max-width: 768px) {
    #home h1 {
        font-size: 2.8rem;
    }
    #home p.lead {
        font-size: 1.25rem;
    }
    #features .feature-item {
        flex-basis: 90%;
    }
}

@media (max-width: 575px) {  /* Mobile breakpoint */
#home h1 {
    font-size: 2.4rem;
}
#home p.lead {
    font-size: 1.1rem;
    max-width: 100%;
}
}
