:root {
--pink: #d7799b;
--soft-pink: #f8d7e0;
--light-pink: #fff5f8;
--green: #2f3b27;
--text: #2f2f2f;
--muted: #777;
--white: #ffffff;
}

* {
box-sizing: border-box;
}

body {
margin: 0;
font-family: Arial, sans-serif;
color: var(--text);
background: var(--white);
}

/* TOP BAR */
.top-bar {
background: linear-gradient(90deg, #f5b6c7, #f8d7e0);
text-align: center;
padding: 9px;
font-size: 14px;
}

/* NAVBAR */
.navbar {
min-height: 90px;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 7%;
background: white;
border-bottom: 1px solid #f1f1f1;
}

.logo,
.footer-logo {
font-family: Georgia, serif;
font-size: 34px;
color: var(--pink);
font-style: italic;
}

nav {
display: flex;
gap: 32px;
}

nav a {
text-decoration: none;
color: #333;
font-size: 15px;
}

nav a:hover {
color: var(--pink);
}

.icons {
font-size: 24px;
}

/* HERO */
.hero {
min-height: 810px;
display: flex;
align-items: center;
padding: 0 7%;

/* BACKGROUND IMAGE */
background:
linear-gradient(
rgba(255, 255, 255, 0.35),
rgba(255, 255, 255, 0.25)
),
url("images/header-photo.jpg");

background-size: cover;
background-position: center 15%;
background-repeat: no-repeat;
}

.eyebrow {
color: #a84d6b;
letter-spacing: 3px;
font-size: 13px;
font-weight: bold;

background: rgba(255, 255, 255, 0.5);
padding: 4px 8px;
border-radius: 3px;

text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.center {
text-align: center;
}

.hero h1 {
font-family: Georgia, serif;
font-size: 86px;
line-height: 0.95;
color: var(--green);
margin: 20px 0;
}

.hero-copy {
max-width: 360px;
line-height: 1.8;
font-size: 18px;
}

.pink-btn,
.dark-btn {
display: inline-block;
text-decoration: none;
border-radius: 4px;
padding: 16px 34px;
font-size: 14px;
letter-spacing: 1px;
margin-top: 22px;
}

.pink-btn {
background: var(--pink);
color: white;
}

.dark-btn {
background: var(--green);
color: white;
}

.small {
padding: 13px 26px;
}

.small-note {
margin-top: 20px;
font-size: 14px;
}

.hero-image img {
width: 100%;
max-height: 620px;
object-fit: contain;
display: block;
}

/* BOUQUETS */
.bouquets {
padding: 60px 7% 70px;
text-align: center;
}

.bouquets h2,
.about-box h2,
.order-box h2 {
font-family: Georgia, serif;
color: var(--green);
font-size: 38px;
font-weight: normal;
margin: 10px 0;
}

.heart {
color: var(--pink);
font-size: 32px;
margin: 5px 0 30px;
}

/* PRODUCT GRID */
.product-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
margin-top: 40px;
margin-bottom: 25px;
}

.card {
background: #fff;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 10px 25px rgba(0,0,0,0.08);
transition: 0.3s ease;
text-align: center;
cursor: pointer;
}

.card:hover {
transform: translateY(-5px);
}

.card img {
width: 100%;
height: 260px;
object-fit: cover;
display: block;
}

.card-content {
padding: 22px 18px 25px;
min-height: 180px;
}

.card-content h3 {
font-size: 18px;
margin: 0 0 10px;
font-weight: bold;
}

.card-content p {
font-size: 14px;
color: var(--muted);
line-height: 1.6;
margin: 0 0 10px;
}

.price {
color: var(--pink) !important;
font-weight: bold;
font-size: 18px !important;
margin-top: 12px !important;
}

/* ABOUT */
.split-section {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
background: var(--light-pink);
}

.about-box,
.order-box {
padding: 60px 7%;
}

.about-box p {
line-height: 1.8;
font-size: 15px;
}

.heart-left {
font-size: 32px;
color: var(--pink);
}

/* FOOTER */
footer {
display: grid;
grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
gap: 30px;
padding: 50px 7%;
background: white;
}

footer h4 {
margin-bottom: 12px;
}

footer p {
margin: 6px 0;
font-size: 14px;
color: #555;
}

.bottom-bar {
text-align: center;
background: linear-gradient(90deg, #f5b6c7, #f8d7e0);
padding: 15px;
font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
nav {
display: none;
}

.hero {
grid-template-columns: 1fr;
text-align: center;
padding: 40px 6%;
}

.hero-copy {
margin: auto;
}

.hero h1 {
font-size: 60px;
}

.product-grid {
grid-template-columns: 1fr 1fr;
}

.split-section,
footer {
grid-template-columns: 1fr;
}
}

@media (max-width: 550px) {
.product-grid {
grid-template-columns: 1fr;
}

.logo {
font-size: 26px;
}

.hero h1 {
font-size: 48px;
}
}

/* LIGHTBOX */
.lightbox {
display: none;
position: fixed;
z-index: 9999;
inset: 0;
background: rgba(0,0,0,0.9);
}

.lightbox-content {
display: block;
margin: auto;
max-width: 90%;
max-height: 85vh;
margin-top: 60px;
object-fit: contain;
border-radius: 12px;
}

.close {
position: absolute;
top: 20px;
right: 35px;
color: white;
font-size: 42px;
cursor: pointer;
}

.close:hover {
color: var(--pink);
}

/* IMAGE OVERLAY */
.card {
position: relative;
cursor: pointer;
}

.card::after {
content: "Tap to view";
position: absolute;
bottom: 10px;
left: 50%;
transform: translateX(-50%);
background: rgba(0,0,0,0.6);
color: white;
padding: 6px 12px;
font-size: 12px;
border-radius: 20px;
opacity: 0;
transition: 0.3s;
}

.card:hover::after {
opacity: 1;
}


