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

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

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

/* Header */
.header {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.tagline {
    font-size: 0.9rem;
    opacity: 0.9;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav a:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-main-image {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.hero-main-image:hover {
    transform: scale(1.05);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.btn-primary {
    background: white;
    color: #4CAF50;
}

.btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #4CAF50;
    color: white;
}

.btn-secondary:hover {
    background: #45a049;
    transform: translateY(-2px);
}

/* Products Section */
.products {
    padding: 80px 0;
    background: white;
}

.products h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

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

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    height: 200px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-placeholder {
    background: #e9ecef;
    padding: 20px;
    border-radius: 10px;
    font-weight: 500;
    color: #6c757d;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.product-info p {
    color: #666;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 1rem;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #f8f9fa;
}

.about .container {
    max-width: 1000px;
}

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

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #666;
}

.about-image {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.portrait-image {
    width: 350px;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 4px solid white;
    transition: transform 0.3s ease;
}

.portrait-image:hover {
    transform: translateY(-5px);
}

.portrait-name {
    margin-top: 1.5rem;
    text-align: center;
}

.portrait-name h4 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.portrait-name p {
    font-size: 1.1rem;
    color: #4CAF50;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4CAF50;
}

.contact-info {
    display: flex;
    justify-content: center;
}

.contact-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 600px;
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.contact-card h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.contact-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #4CAF50;
    border-radius: 2px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #f8fbf8;
}

.contact-item:hover {
    background: #f0f7f0;
    transform: translateX(5px);
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    font-size: 1.8rem;
    background: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-text strong {
    display: block;
    font-size: 1rem;
    color: #4CAF50;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-text p {
    font-size: 1.1rem;
    color: #4a5568;
    margin: 0;
    line-height: 1.4;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0 20px;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #4CAF50;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #bdc3c7;
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid #bdc3c7;
    border-radius: 20px;
    transition: all 0.3s;
}

.social-link:hover {
    background: #4CAF50;
    border-color: #4CAF50;
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Responsive Design */

/* Large tablets and small laptops */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero-content h2 {
        font-size: 2.2rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1.5rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .header {
        padding: 0.8rem 0;
    }

    .header .container {
        flex-direction: column;
        gap: 0.8rem;
    }

    .logo h1 {
        font-size: 1.6rem;
    }

    .nav ul {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero {
        padding: 160px 0 50px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-content h2 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-main-image {
        width: 250px;
        height: 250px;
    }

    .products {
        padding: 60px 0;
    }

    .products h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .product-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .about {
        padding: 60px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .portrait-image {
        width: 100%;
        max-width: 300px;
        height: 400px;
    }

    .contact {
        padding: 60px 0;
    }

    .contact-card {
        padding: 2rem 1.5rem;
    }

    .contact-card h3 {
        font-size: 1.6rem;
    }

    .contact-item {
        padding: 1rem;
        gap: 1rem;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }

    .contact-text p {
        font-size: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .hero {
        padding: 140px 0 40px;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .hero-main-image {
        width: 200px;
        height: 200px;
    }

    .products h2,
    .about-text h2,
    .contact-card h3 {
        font-size: 1.6rem;
    }

    .product-card {
        max-width: 100%;
    }

    .contact-card {
        padding: 1.5rem 1rem;
    }

    .contact-item {
        padding: 0.8rem;
    }

    .contact-icon {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .contact-text strong {
        font-size: 0.85rem;
    }

    .contact-text p {
        font-size: 0.95rem;
    }
}

/* Extra small phones */
@media (max-width: 360px) {
    .hero-content h2 {
        font-size: 1.6rem;
    }

    .products h2,
    .about-text h2,
    .contact h2 {
        font-size: 1.6rem;
    }

    .hero-main-image,
    .portrait-image {
        width: 200px;
        height: 200px;
    }

    .portrait-image {
        height: 250px;
    }
}