/* Global Styles */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #1abc9c;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333;
    --footer-color: #34495e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Header Styles */
header {
    background-color: var(--primary-color);
    color: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}

.logo p {
    font-size: 14px;
    opacity: 0.8;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: white;
    font-weight: 600;
    padding: 10px 0;
    position: relative;
    transition: all 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--accent-color);
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.7)), url('hero-bg.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 0;

}

.hero h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

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

.products h2,
.why-choose-us h2,
.about-content h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.products > .container > p,
.why-choose-us > .container > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 18px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background-color: var(--light-color);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-icon {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.product-card p {
    font-size: 16px;
    color: #666;
}

.raw-meat-showcase {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 40px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.raw-meat-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.raw-meat-showcase:hover .raw-meat-image {
    transform: scale(1.05);
}

.raw-meat-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 40px;
    color: white;
}

.raw-meat-overlay h3 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
}

.raw-meat-overlay p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
}

.raw-meat-showcase-multi {
    position: relative;
    width: 100%;
    height: 350px;
    margin: 40px 0;
    display: flex;
    gap: 10px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.raw-meat-image-multi {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex: 1 1 0;
    transition: transform 0.3s ease;
}

.raw-meat-showcase-multi:hover .raw-meat-image-multi {
    transform: scale(1.04);
}

.raw-meat-overlay-multi {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 30px 40px 20px 40px;
    color: white;
    z-index: 2;
    text-align: left;
}

.raw-meat-overlay-multi h3 {
    font-size: 30px;
    margin-bottom: 10px;
    font-weight: 700;
}

.raw-meat-overlay-multi p {
    font-size: 18px;
    line-height: 1.5;
    opacity: 0.95;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background-color: #f5f8fa;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature p {
    font-size: 16px;
    color: #666;
}

/* CTA Section */
.cta {
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.cta .btn {
    background-color: white;
    color: var(--secondary-color);
}

.cta .btn:hover {
    background-color: var(--light-color);
    color: var(--accent-color);
}

/* Footer */
footer {
    background-color: var(--footer-color);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.footer-logo p {
    opacity: 0.8;
}

.footer-contact h4 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
}

.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--accent-color);
}

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

.footer-bottom p {
    opacity: 0.7;
    font-size: 14px;
}

/* About Page Styles */
.page-banner {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('hero-bg.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 80px 0;
}

.page-banner h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-banner p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.about-content {
    padding: 80px 0;
    background-color: white;
}

.about-section {
    max-width: 800px;
    margin: 0 auto 60px;
}

.about-section h2 {
    margin-bottom: 30px;
}

.about-section p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.7;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.mission, .vision {
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.mission {
    background-color: #f1f9fe;
}

.vision {
    background-color: #f0faf9;
}

.icon-container {
    font-size: 30px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.vision .icon-container {
    color: var(--accent-color);
}

.mission h2, .vision h2 {
    text-align: left;
    margin-bottom: 20px;
    font-size: 28px;
}

.mission p, .vision p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.7;
}

.values {
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    text-align: center;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 15px;
    color: #666;
}

.team-section {
    max-width: 800px;
    margin: 0 auto;
}

.team-section h2 {
    margin-bottom: 30px;
}

.team-section p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.7;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 20px;
        text-align: center;
    }
    
    nav ul {
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 15px;
    }
    
    .hero h2 {
        font-size: 32px;
    }
    
    .products h2, 
    .why-choose-us h2,
    .cta h2,
    .page-banner h2 {
        font-size: 28px;
    }
    
    .mission, .vision {
        padding: 30px;
    }
    
    .mission h2, .vision h2 {
        font-size: 24px;
    }
    
    .raw-meat-showcase {
        height: 300px;
    }
    
    .raw-meat-overlay {
        padding: 20px;
    }
    
    .raw-meat-overlay h3 {
        font-size: 24px;
    }
    
    .raw-meat-overlay p {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero h2 {
        font-size: 28px;
    }
    
    .hero p, 
    .products > .container > p,
    .why-choose-us > .container > p,
    .cta p {
        font-size: 16px;
    }
    
    .product-grid,
    .features,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media screen and (max-width: 900px) {
    .raw-meat-showcase-multi {
        height: 200px;
    }
    .raw-meat-overlay-multi {
        padding: 15px 20px 10px 20px;
    }
    .raw-meat-overlay-multi h3 {
        font-size: 20px;
    }
    .raw-meat-overlay-multi p {
        font-size: 14px;
    }
}

@media screen and (max-width: 600px) {
    .raw-meat-showcase-multi {
        flex-direction: column;
        height: auto;
        gap: 5px;
    }
    .raw-meat-image-multi {
        height: 120px;
    }
    .raw-meat-overlay-multi {
        position: static;
        background: rgba(44, 62, 80, 0.85);
        border-radius: 0 0 10px 10px;
        margin-top: -5px;
        text-align: center;
    }
}

.raw-meat-showcase-better {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 24px;
    margin: 40px 0 20px 0;
}

.raw-meat-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(44,62,80,0.10);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    width: 320px;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.raw-meat-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(44,62,80,0.18);
}

.raw-meat-image-better {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.raw-meat-caption {
    text-align: center;
    margin-bottom: 30px;
}

.raw-meat-caption h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.raw-meat-caption p {
    font-size: 1.15rem;
    color: #555;
    margin: 0;
}

@media screen and (max-width: 1100px) {
    .raw-meat-showcase-better {
        gap: 12px;
    }
    .raw-meat-card {
        width: 220px;
    }
    .raw-meat-image-better {
        height: 140px;
    }
}

@media screen and (max-width: 700px) {
    .raw-meat-showcase-better {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }
    .raw-meat-card {
        width: 95vw;
        max-width: 350px;
    }
    .raw-meat-image-better {
        height: 120px;
    }
}
