/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Agency FB', sans-serif;
	font-size: 20px;
    margin: 0;
    padding: 0;
}

/* Header Styles */
.main-header {
    background: #000;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo h1 {
    font-size: 1.8rem;
	font-family:'Agency FB';
}

.logo span {
    color: #ff69b4;
}

/* Navigation Menu */
.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.nav-menu a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: color 0.3s ease;
}

/* Hover Effect */
.nav-menu a:hover {
    color: #ff69b4;
}

/* Active Page Styling */
.nav-menu a.active {
    color: #ff69b4;
    text-decoration: underline;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(to right, #ff69b4, #ff1493);
    color: white;
    text-align: center;
    padding: 50px;
	background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("Images/pexels-valeriya-756686 (1).jpg");
	height: 500px
}

.hero-section h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.cta-button {
    background: #fff;
    color: #ff1493;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
    background: #ff1493;
    color: #fff;
}

/* Products Section */
.products-section,
.products {
    padding: 2rem;
    text-align: center;
}

.products h2,
.products-section h2 {
	font-size: 50px;
    margin-bottom: 1.5rem;
    color: #ff69b4;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.product-card {
    border: 1px solid #ccc;
    padding: 1rem;
    width: 200px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.2s;
    background-color: #fff;
}

.product-card:hover {
    transform: scale(1.05);
    border-color: #ff69b4;
}

.product-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.product-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.product-card p {
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
}

.product-card button {
    background-color: #ff69b4;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.product-card button:hover {
    background-color: #ff85c0;
}


/* Contact Form */
.contact-section {
    padding: 2rem;
    text-align: center;
}

.contact-section h2 {
	font-size: 50px;
    margin-bottom: 3.5rem;
    color: #ff69b4;
}
.contact-section h1 {
	margin-bottom: 1.5rem;
}
.contact-form {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    resize: none;
}

.contact-form button {
    background-color: #ff69b4;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #ff85c0;
}

/* Footer */
.footer {
    background: #f8f8f8;
    padding: 20px;
    border-top: 2px solid #ccc;
}

.footer-columns {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-column p {
    margin: 0.5rem 0;
    font-weight: bold;
}

.footer-column a {
    text-decoration: none;
    color: #ff69b4;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ff1493;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-grid {
        flex-direction: column;
        align-items: center;
    }

    .footer-columns {
        flex-direction: column;
        text-align: center;
    }
}