﻿/* Simple Index Page Styles */

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    margin: 20px 0;
}

.hero-section h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero-section p {
    font-size: 20px;
    margin-bottom: 30px;
}

.hero-btn {
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    background-color: #48C9B0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background-color: #16A085;
    transform: translateY(-2px);
}

/* Section Container */
.section-container {
    max-width: 1200px;
margin: 50px auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: #16A085;
    margin-bottom: 40px;
    font-weight: bold;
}

/* Products Container */
.products-container {
    display: grid;
 grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
 box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.product-info {
    padding: 15px;
}

.product-info h3 {
    font-size: 16px;
    color: #212F3D;
    margin-bottom: 10px;
    min-height: 40px;
}

.product-info .price {
    font-size: 20px;
    font-weight: bold;
    color: #16A085;
}

/* View More Button */
.view-more {
    text-align: center;
    margin-top: 40px;
}

.view-btn {
    padding: 15px 50px;
    font-size: 16px;
  font-weight: bold;
    color: white;
    background-color: #16A085;
    border: 2px solid #16A085;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn:hover {
    background-color: white;
    color: #16A085;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
      font-size: 32px;
    }
    
    .hero-section p {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .products-container {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .product-card img {
      height: 200px;
  }
}
