/* 
 * The Chopping Block - Main Stylesheet
 * A design that embodies the intersection of traditional butchery craft and Bobby Haller's BBQ expertise
 */

/* ===== Base Styles ===== */
:root {
    /* Color Palette - Based on Design Statement */
    --primary-color: #662211; /* Rich Mahogany - foundation color */
    --secondary-color: #992222; /* Smoky Red - deep red for meats and BBQ sauce */
    --accent-color: #D4A017; /* Amber Gold - for CTAs and highlights */
    --light-color: #F5F1E6; /* Butcher Paper Cream - warm neutral */
    --dark-color: #222222; /* Charcoal Black - for typography and accents */
    --success-color: #4CAF50; /* Green */
    --warning-color: #FF9800; /* Orange */
    --danger-color: #F44336; /* Red */
    
    /* Typography - Based on Design Statement */
    --heading-font: 'Bourbon Grotesque', 'Playfair Display', serif; /* Substantial sans-serif with subtle imperfections */
    --subheading-font: 'Smokehouse Slab', 'Georgia', serif; /* Medium-weight slab serif */
    --body-font: 'Butcher\'s Sans', 'Raleway', sans-serif; /* Clean, highly readable sans-serif */
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 5rem;
    
    /* Border Radius */
    --border-radius-sm: 3px;
    --border-radius-md: 5px;
    --border-radius-lg: 10px;
    
    /* Box Shadow */
    --box-shadow-light: 0 2px 5px rgba(0, 0, 0, 0.1);
    --box-shadow-medium: 0 4px 10px rgba(0, 0, 0, 0.15);
    --box-shadow-heavy: 0 8px 20px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
    overflow-x: hidden;
    background-image: url('../images/butcher-paper-texture.jpg');
    background-size: 400px;
    background-repeat: repeat;
    background-blend-mode: overlay;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--dark-color);
}

h3, h4, h5, h6 {
    font-family: var(--subheading-font);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: var(--spacing-md);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
    padding-bottom: var(--spacing-md);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    /* Wooden block appearance */
    background-image: url('../images/wood-grain-texture.jpg');
    background-size: cover;
    background-blend-mode: overlay;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-30deg);
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--dark-color);
    border: 2px solid var(--accent-color);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}

.btn-primary:active {
    transform: translateY(1px);
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    background-image: url('../images/butcher-paper-texture.jpg');
    background-size: cover;
}

.btn-secondary:hover {
    background-color: rgba(153, 34, 34, 0.1);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.btn-secondary:active {
    transform: translateY(1px);
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
}

.btn-text {
    color: var(--secondary-color);
    font-weight: 600;
    position: relative;
    padding-bottom: 2px;
    display: inline-block;
}

.btn-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width var(--transition-medium);
    /* Knife-cut appearance */
    background-image: linear-gradient(to right, var(--secondary-color) 70%, transparent 70%, transparent 100%);
    background-size: 10px 2px;
    background-repeat: repeat-x;
}

.btn-text:hover {
    color: var(--secondary-color);
}

.btn-text:hover::after {
    width: 100%;
}

/* ===== Header ===== */
header {
    background-color: var(--dark-color);
    box-shadow: var(--box-shadow-medium);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: var(--spacing-md) 0;
    border-bottom: 3px solid var(--primary-color);
}

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

.logo img {
    height: 50px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin-left: var(--spacing-lg);
}

.nav-links a {
    color: var(--light-color);
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
    /* Hanging butcher shop sign appearance */
    display: inline-block;
    padding: 8px 15px;
    border: 1px solid transparent;
    transition: all var(--transition-medium);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    /* Knife-cut underline animation */
    background-image: linear-gradient(to right, var(--secondary-color) 70%, transparent 70%, transparent 100%);
    background-size: 10px 2px;
    background-repeat: repeat-x;
    transition: width var(--transition-medium);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
    border: 1px solid rgba(212, 160, 23, 0.3);
    background-color: rgba(34, 34, 34, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger {
    display: block;
    position: relative;
    width: 30px;
    height: 3px;
    background-color: var(--secondary-color);
    transition: all var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: var(--secondary-color);
    transition: all var(--transition-fast);
}

.hamburger::before {
    transform: translateY(-10px);
}

.hamburger::after {
    transform: translateY(10px);
}

/* ===== Hero Video Split Section ===== */
.hero-video-split {
    display: flex;
    min-height: 85vh;
    background-color: var(--dark-color);
}

.video-side {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-wrapper video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.video-overlay-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(102, 34, 17, 0.5), transparent);
    z-index: 1;
}

.content-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl);
    background-color: var(--dark-color);
    color: var(--light-color);
    position: relative;
}

.content-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/wood-grain-texture.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    text-align: left;
}

.hero-tagline {
    font-family: 'Dancing Script', cursive; /* Hand-drawn script for accent text */
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: var(--spacing-md);
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--light-color);
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
    color: var(--light-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
}

/* ===== Featured Products ===== */
.featured-products {
    padding: var(--spacing-xxl) 0;
    background-color: var(--light-color);
    position: relative;
}

.featured-products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background-image: url('../images/butcher-block-pattern.png');
    background-size: contain;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.product-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow-light);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    /* Butcher paper package appearance */
    border: 1px solid rgba(102, 34, 17, 0.2);
    position: relative;
}

.product-card::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background-image: url('../images/string-tie.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 2;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-medium);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    z-index: 1;
    transition: background-color var(--transition-medium);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.product-image .cooked-state {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity var(--transition-medium);
    z-index: 1;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-card:hover .product-image .cooked-state {
    opacity: 1;
}

.product-card:hover .product-image::before {
    background-color: rgba(0, 0, 0, 0.2);
}

.product-info {
    padding: var(--spacing-lg);
    /* Handwritten-style labels */
    position: relative;
}

.product-info h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
    font-family: var(--subheading-font);
}

.product-info p {
    margin-bottom: var(--spacing-md);
    color: var(--dark-color);
    font-style: italic;
}

/* ===== About Preview ===== */
.about-preview {
    padding: var(--spacing-xxl) 0;
    background-color: white;
    position: relative;
}

.about-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background-image: url('../images/knife-cut-edge.png');
    background-size: contain;
}

.about-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow-medium);
}

.about-video {
    flex: 1;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow-medium);
}

.about-video .video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    border-radius: var(--border-radius-md);
}

.about-video .video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== Services Preview ===== */
.services-preview {
    padding: var(--spacing-xxl) 0;
    background-color: white;
}

/* ===== Services Preview with Video ===== */
.services-preview-video {
    position: relative;
    padding: var(--spacing-xxl) 0;
    color: var(--light-color);
    overflow: hidden;
}

.services-preview-video .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.services-preview-video .video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.services-preview-video .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(34, 34, 34, 0.8);
    z-index: 1;
}

/* Smoke animation overlay */
.services-preview-video .smoke-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/smoke-texture.png');
    background-size: cover;
    opacity: 0.1;
    z-index: 2;
    animation: smokeMove 60s infinite alternate;
}

@keyframes smokeMove {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

.services-preview-video .container {
    position: relative;
    z-index: 2;
}

.services-preview-video .services-content {
    text-align: center;
}

.services-preview-video .section-title {
    color: var(--light-color);
}

.services-preview-video .section-title::after {
    background-color: var(--accent-color);
}

.services-preview-video .service-card {
    background-color: rgba(102, 34, 17, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(212, 160, 23, 0.3);
    color: var(--light-color);
    /* Wooden block appearance */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.services-preview-video .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/wood-grain-texture.jpg');
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.services-preview-video .service-icon {
    color: var(--accent-color);
    position: relative;
    z-index: 1;
}

.services-preview-video .service-card h3 {
    color: var(--light-color);
    position: relative;
    z-index: 1;
}

.services-preview-video .service-card p {
    color: rgba(245, 241, 230, 0.9);
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.service-card {
    text-align: center;
    padding: var(--spacing-lg);
    background-color: var(--light-color);
    border-radius: var(--border-radius-md);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    border: 1px solid rgba(102, 34, 17, 0.2);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/butcher-paper-texture.jpg');
    background-size: cover;
    opacity: 0.2;
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.service-card h3 {
    margin-bottom: var(--spacing-sm);
}

.services-cta {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* ===== Testimonials ===== */
.testimonials {
    padding: var(--spacing-xxl) 0;
    background-color: var(--light-color);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background-image: url('../images/butcher-block-pattern.png');
    background-size: contain;
}

.testimonials-slider {
    display: flex;
    gap: var(--spacing-lg);
    overflow-x: auto;
    padding-bottom: var(--spacing-md);
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--light-color);
}

.testimonials-slider::-webkit-scrollbar {
    height: 8px;
}

.testimonials-slider::-webkit-scrollbar-track {
    background: var(--light-color);
}

.testimonials-slider::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 20px;
}

.testimonial {
    flex: 0 0 calc(33.333% - var(--spacing-lg));
    min-width: 300px;
}

.testimonial-content {
    background-color: white;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-light);
    position: relative;
    /* Butcher paper appearance */
    border: 1px solid rgba(102, 34, 17, 0.2);
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 4rem;
    font-family: 'Dancing Script', cursive;
    color: rgba(153, 34, 34, 0.1);
    line-height: 1;
}

.testimonial-content p {
    position: relative;
    z-index: 1;
}

.testimonial-author {
    margin-top: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-name {
    font-weight: 600;
    margin-bottom: 0;
}

.stars {
    color: var(--accent-color);
}

/* ===== CTA Section ===== */
.cta-section {
    padding: var(--spacing-xxl) 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    margin-bottom: var(--spacing-md);
}

.cta-content p {
    margin-bottom: var(--spacing-lg);
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
}

/* ===== Footer ===== */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding-top: var(--spacing-xl);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-logo {
    flex: 1 1 100%;
    max-width: 300px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: var(--spacing-md);
}

.footer-links {
    flex: 2 1 auto;
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xl);
}

.footer-column {
    flex: 1 1 150px;
}

.footer-column h3 {
    color: white;
    margin-bottom: var(--spacing-md);
    font-size: 1.2rem;
}

.footer-column ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-fast);
}

.footer-column ul li a:hover {
    color: white;
}

.footer-social {
    flex: 1 1 200px;
}

.footer-social h3 {
    color: white;
    margin-bottom: var(--spacing-md);
    font-size: 1.2rem;
}

.social-icons {
    display: flex;
    gap: var(--spacing-md);
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all var(--transition-fast);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-md) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links {
    display: flex;
    gap: var(--spacing-md);
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: white;
}

/* ===== Page Banner ===== */
.page-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/page-banner-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: var(--spacing-xl) 0;
}

.page-banner h1 {
    color: white;
    margin-bottom: var(--spacing-sm);
}

.page-banner p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* ===== Page Banner with Video ===== */
.page-banner-video {
    position: relative;
    height: 50vh;
    min-height: 400px;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-banner-video .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-banner-video .video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-banner-video .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

/* Smoke animation overlay for page banner */
.page-banner-video .smoke-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/smoke-texture.png');
    background-size: cover;
    opacity: 0.1;
    z-index: 2;
    animation: smokeMove 60s infinite alternate;
}

.page-banner-video .container {
    position: relative;
    z-index: 2;
}

.page-banner-video .banner-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-banner-video h1 {
    color: white;
    margin-bottom: var(--spacing-sm);
    font-size: 3rem;
}

.page-banner-video p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
}

/* ===== About Page Styles ===== */
.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
    font-size: 1.1rem;
}

/* Team Section */
.about-team {
    padding: var(--spacing-xxl) 0;
    background-color: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.team-member {
    background-color: var(--light-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow-light);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-medium);
}

.member-image {
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: var(--spacing-lg);
}

.member-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

/* Values Section */
.about-values {
    padding: var(--spacing-xxl) 0;
    background-color: var(--light-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.value-card {
    background-color: white;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-light);
    text-align: center;
    transition: transform var(--transition-medium);
}

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

.value-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.value-card h3 {
    margin-bottom: var(--spacing-sm);
}

/* About Story and Sourcing */
.about-story, .about-sourcing {
    padding: var(--spacing-xxl) 0;
}

.about-story {
    background-color: white;
}

.about-sourcing {
    background-color: var(--light-color);
}

/* ===== Products Page Styles ===== */
.products-intro {
    padding: var(--spacing-xl) 0;
    background-color: white;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.product-categories-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.category-link {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: var(--light-color);
    color: var(--secondary-color);
    border-radius: var(--border-radius-md);
    font-weight: 600;
    transition: all var(--transition-fast);
}

.category-link:hover {
    background-color: var(--primary-color);
    color: white;
}

.product-category {
    padding: var(--spacing-xxl) 0;
}

.product-category:nth-child(odd) {
    background-color: var(--light-color);
}

.product-category:nth-child(even) {
    background-color: white;
}

.category-header {
    margin-bottom: var(--spacing-xl);
}

.category-description {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--spacing-md);
}

.product-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.custom-orders {
    padding: var(--spacing-xl) 0;
    background-color: white;
    text-align: center;
}

.custom-orders-content {
    max-width: 800px;
    margin: 0 auto;
}

.custom-orders-content h2 {
    margin-bottom: var(--spacing-md);
}

.custom-orders-content p {
    margin-bottom: var(--spacing-lg);
}

/* ===== Services Page Styles ===== */
.services-intro {
    padding: var(--spacing-xl) 0;
    background-color: white;
}

.service-detail {
    padding: var(--spacing-xxl) 0;
}

.service-detail:nth-child(odd) {
    background-color: var(--light-color);
}

.service-detail:nth-child(even) {
    background-color: white;
}

.service-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.service-content.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow-medium);
}

.service-text {
    flex: 1;
}

.service-features {
    margin: var(--spacing-lg) 0;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.feature i {
    color: var(--primary-color);
    margin-right: var(--spacing-sm);
    font-size: 1.2rem;
}

.custom-service-request {
    padding: var(--spacing-xl) 0;
    background-color: var(--light-color);
    text-align: center;
}

.request-content {
    max-width: 800px;
    margin: 0 auto;
}

.request-content h2 {
    margin-bottom: var(--spacing-md);
}

.request-content p {
    margin-bottom: var(--spacing-lg);
}

/* ===== Contact Page Styles ===== */
.contact-info {
    padding: var(--spacing-xl) 0;
    background-color: white;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.info-card {
    text-align: center;
    padding: var(--spacing-lg);
    background-color: var(--light-color);
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-light);
    transition: transform var(--transition-medium);
}

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

.info-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.info-card h3 {
    margin-bottom: var(--spacing-sm);
}

.info-card p {
    margin-bottom: var(--spacing-md);
}

.contact-form-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--light-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
}

.form-container, .map-container {
    background-color: white;
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-light);
}

.contact-form .form-group {
    margin-bottom: var(--spacing-md);
}

.contact-form label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius-sm);
    font-family: var(--body-font);
    font-size: 1rem;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(139, 0, 0, 0.1);
}

.map {
    height: 450px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

.faq-section {
    padding: var(--spacing-xxl) 0;
    background-color: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: var(--spacing-xl);
}

.faq-item {
    margin-bottom: var(--spacing-lg);
}

.faq-item h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.newsletter-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--light-color);
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    margin-bottom: var(--spacing-sm);
}

.newsletter-content p {
    margin-bottom: var(--spacing-lg);
}

.newsletter-form .form-group {
    display: flex;
    margin-bottom: var(--spacing-sm);
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
    font-family: var(--body-font);
    font-size: 1rem;
}

.newsletter-form button {
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
}

.form-note {
    font-size: 0.9rem;
    color: #666;
}

/* ===== Responsive Styles ===== */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-video-split {
        flex-direction: column;
        min-height: auto;
    }
    
    .video-side {
        height: 60vh;
    }
    
    .content-side {
        padding: var(--spacing-xl) var(--spacing-lg);
    }
    
    .hero-content {
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-content, .service-content, .service-content.reverse {
        flex-direction: column;
    }
    
    .about-text, .about-image, .about-video, .service-text, .service-image {
        flex: 1 1 100%;
    }
    
    .about-image, .about-video, .service-image {
        order: -1;
        margin-bottom: var(--spacing-lg);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .map-container {
        order: -1;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .video-side {
        height: 50vh;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: var(--spacing-lg) 0;
        box-shadow: var(--box-shadow-medium);
        transform: translateY(-150%);
        transition: transform var(--transition-medium);
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .nav-links li {
        margin: var(--spacing-sm) 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin-bottom: var(--spacing-sm);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin-bottom: var(--spacing-sm);
    }
    
    .footer-content {
        flex-direction: column;
        gap: var(--spacing-lg);
    }
    
    .footer-logo, .footer-links, .footer-social {
        flex: 1 1 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 14px;
    }
    
    .video-side {
        height: 40vh;
    }
    
    .content-side {
        padding: var(--spacing-lg) var(--spacing-md);
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-title {
        margin-bottom: var(--spacing-lg);
    }
    
    .products-grid, .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial {
        flex: 0 0 100%;
    }
}

/* ===== Animations ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content, .section-title, .product-card, .service-card, .testimonial, .about-content {
    animation: fadeIn 1s ease forwards;
}

.product-card:nth-child(2) {
    animation-delay: 0.2s;
}

.product-card:nth-child(3) {
    animation-delay: 0.4s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.4s;
}

.service-card:nth-child(4) {
    animation-delay: 0.6s;
}
