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

address{
    background: red;
    color: white;
    text-decoration: none;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 1rem;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    scroll-behavior: smooth;
}

h1, h2 {
    font-family: 'Playfair Display', serif;
    text-align: center;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d63384; /* Floral Pink */
}

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

nav ul li a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #d63384;
}

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url('./images/hero.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: #d63384;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    transition: 0.3s;
}

.btn:hover {
    background: #b02a6b;
    transform: translateY(-3px);
}

/* Services */
.services {
    padding: 5rem 0%;
    text-align: center;
    background: #fdf2f8;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 30%));
    grid-auto-rows: 500px;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.service-card img{
        width: 100%;
    height: 95%;
    object-fit: cover;
}

/* Contact */
.contact {
    padding: 5rem 10%;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 30px;
}

.info, .map {
    flex: 1;
    min-width: 300px;
}

.info p {
    margin-bottom: 20px;
}

footer {
    text-align: center;
    padding: 20px;
    background: #333;
    color: #fff;
}


#flowers h2{
    margin: 2rem auto;
}

#flower-lists{
    display: flex;
    flex-flow: row nowrap;
    overflow-x: scroll;
    padding-bottom: 2rem;
}

/* #flower-lists::-webkit-scrollbar{
  width: 500px;
} */

#flower-lists li{
    list-style: none;
}

#flower-lists li img{
    width: 500px;
    height: 755px;
    object-fit: cover;
}

#flower-lists li h3{
    margin-left: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    nav ul { display: none; }
    .hero-content h1 { font-size: 2rem; }

    .service-grid{
        grid-template-columns: repeat(auto-fit, minmax(95%, 59%));
    }


    #flower-lists li img {
        width: 80vw;
        height: 80vh;
        object-fit: cover;
    }
}
