/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #003c8f, #007bff);
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 150px;
    width: auto;
    margin-right: 0.5rem;
}

.logo h1 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
}

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

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    border-radius: 4px;
    transition: background-color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
    background-color: #0057c9;
}

/* Hero Section */
.hero {
    background:white;
    color: black;
    text-align: center;
    padding: 1rem 2rem;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Products Section */
.products {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.products h2 {
    font-family: 'Great Vibes', cursive;
    text-align: center;
    color: #0057c9;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    text-decoration: none;
    display: block;
    color: inherit;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    text-decoration: none;
    color: inherit;
}

.product-card img {
    width: 100%;
    height: auto;  
    object-fit: contain; 
    display: block;
}

.product-card h3 {
    color: #0057c9;
    padding: 1rem;
    font-size: 1.2rem;
}

.product-card p {
    color: #666;
    padding: 0 1rem 1rem;
    font-size: 0.9rem;
}

/* Products Page Styles */
.products-page {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.products-page h1 {
    color: #0057c9;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.products-intro {
    text-align: center;
    color: #666;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.product-detailed-grid {
    display: grid;
    gap: 3rem;
}

.product-detailed {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.product-detailed img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.product-info h2 {
    color: #0057c9;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.product-info h3 {
    color: #2c62b3;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 500;
}

.product-info p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-info ul {
    list-style-type: none;
    padding: 0;
}

.product-info ul li {
    color: #333;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.product-info ul li:before {
    content: "•";
    color: #0057c9;
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .product-detailed {
        grid-template-columns: 1fr;
    }
    
    .product-detailed img {
        max-height: 300px;
        width: 100%;
        object-fit: cover;
    }
}

/* Footer Styles */
footer {
    background-color: #0057c9;
    color: white;
    padding: 1rem 0 0rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        margin-top: 1rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}


.add-more {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f0f8ff; /* Light blue background */
    border: 2px dashed #ccc; /* Dashed border to indicate add option */
    color: #333;
    font-weight: bold;
    cursor: pointer;
}

.add-more .plus-symbol {
    font-size: 40px;
    font-weight: bold;
    color: #007bff; /* Blue color */
}

.add-more:hover {
    background-color: #e0f0ff; /* Slightly darker blue on hover */
}
