/* --- Global Styles & Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Poppins:wght@300;400;600&display=swap');

:root {
    --primary-color: #d87093; /* PaleVioletRed */
    --secondary-color: #ffb6c1; /* LightPink */
    --text-color: #5d4037; /* Dark Brown */
    --bg-color: #fffaf0; /* FloralWhite */
    --white-color: #ffffff;
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Poppins', sans-serif;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Offset for fixed header */
}

body {
    font-family: var(--body-font);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--primary-color);
}

p {
    margin-bottom: 1rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem auto;
    font-size: 1.1rem;
    color: #777;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.3s;
    border: none;
    cursor: pointer;
}

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


/* --- Header / Navbar --- */
.navbar {
    background-color: rgba(255, 250, 240, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    margin: 0 15px;
    font-weight: 400;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

/* --- Hero Section --- */
.hero {
    background-image: linear-gradient(rgba(255, 182, 193, 0.6), rgba(216, 112, 147, 0.7)), url('https://images.unsplash.com/photo-1533038590840-1cde6e668a91?q=80&w=1200');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white-color);
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    color: var(--white-color);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.5rem;
    font-style: italic;
    font-family: var(--body-font);
    font-weight: 300;
    margin-bottom: 2rem;
}

.hero .btn {
    background-color: var(--white-color);
    color: var(--primary-color);
    font-size: 1.1rem;
}

.hero .btn:hover {
    background-color: var(--bg-color);
    color: var(--primary-color);
}

/* --- Shared Section Styles --- */
section {
    padding: 80px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
}

/* --- About Us Section --- */
.about-section {
    background-color: var(--white-color);
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow);
    object-fit: cover;
    max-height: 450px;
}

.about-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

/* --- Flower Varieties Section --- */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.gallery-item {
    background: var(--white-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-item h3 {
    margin: 1rem 0 0.5rem;
    font-size: 1.5rem;
}

.gallery-item p {
    padding: 0 1rem 1.5rem;
    font-size: 0.9rem;
    color: #777;
}

/* --- Contact Us Section --- */
.contact-section {
    background-color: var(--secondary-color);
}

.contact-section .section-title, .contact-section .section-subtitle {
    color: var(--white-color);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}
.contact-section .section-subtitle {
    color: #fdf5f6;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--white-color);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
.contact-info p strong {
    color: var(--primary-color);
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--body-font);
    font-size: 1rem;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    width: 100%;
    font-size: 1.1rem;
}

/* --- Footer --- */
.footer {
    background-color: #5d4037;
    color: var(--bg-color);
    text-align: center;
    padding: 2rem 0;
}


/* --- Responsive Design --- */
@media (max-width: 992px) {
    .content-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    .about-image {
        order: -1; /* Puts image on top on mobile */
        margin-bottom: 2rem;
    }
    .about-image img {
        max-height: 350px;
    }
    .contact-info {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: var(--bg-color);
        position: absolute;
        top: 73px;
        left: 0;
        text-align: center;
        padding: 1rem 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links a {
        padding: 1rem 0;
        width: 100%;
        margin: 0;
    }
    .hamburger {
        display: block;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero h1 {
        font-size: 2.8rem;
    }
    .hero p {
        font-size: 1.2rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .contact-grid {
        padding: 2rem;
    }
}
```