/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-image: url('https://images.pexels.com/photos/1182338/pexels-photo-1182338.jpeg?cs=srgb&dl=pexels-fotios-photos-1182338.jpg&fm=jpg'); 
    background-size: cover; 
    background-position: center; 
    background-attachment: fixed; 
    background-repeat: no-repeat; 
}


/* Header */
header {
    background-color: #ff4d6d;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10%;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

nav .btn {
    background: white;
    color: #ff4d6d;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
}

nav a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background-image: url('https://source.unsplash.com/1600x900/?flowers');
    background-size: cover;
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.hero h2 {
    font-size: 2.5em;
    margin: 0;
}

.hero .btn {
    background: white;
    color: #ff4d6d;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.hero .btn:hover {
    background: #ff8ea3;
    color: white;
}

/* Bouquet Gallery - Display in Grid */
.bouquet-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 30px;
    max-width: 1200px;
    margin: auto;
}

/* Bouquet Cards */
.bouquet-card {
    background: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.bouquet-card:hover {
    transform: scale(1.05);
}

.bouquet-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.bouquet-card h3 {
    margin: 10px 0;
}

button {
    background-color: #ff4d6d;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    border-radius: 5px;
    transition: 0.3s;
}

button:hover {
    background-color: #ff8ea3;
}

/* Login Container */
.login-container {
    background: rgba(255, 182, 193, 0.95); /* Light pink with transparency */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 350px;
    position: relative;
}

/* Decorative Flower */
.login-container::before {
    content: '🌸';
    font-size: 50px;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

/* Welcome Text */
.login-container h2 {
    margin: 10px 0;
    font-size: 24px;
    color: #d63384; /* Deep pink */
}

/* Form Fields */
.login-form input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    background: #fff;
    font-size: 16px;
    text-align: center;
}

/* Login Button */
.btn {
    background: #d63384;
    color: white;
    padding: 10px;
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background: #b82c70;
}

/* Sign-up Link */
.login-form p {
    margin-top: 10px;
    color: #333;
}

.login-form a {
    color: #d63384;
    font-weight: bold;
    text-decoration: none;
}

.login-form a:hover {
    text-decoration: underline;
}
