/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Navigation */
.navbar {
    background: linear-gradient(135deg, #1a1410 0%, #2d2420 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}
.logo {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
    margin-right: auto;
    margin-left: 0;
    padding-left: 0;
}
.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    border-radius: 5px;
}
.logo span {
    display: flex;
    align-items: center;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}
.nav-menu a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}
.nav-menu a:hover,
.nav-menu a.active {
    color: #d4af37;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 5px;
}
/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2d2420 0%, #1a1410 100%);
    color: white;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    min-height: 600px;
}
.hero-content {
    z-index: 2;
}
.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-weight: 700;
}
.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}
/* Animated Image Section */
.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}
.floating-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
    animation: float 6s ease-in-out infinite;
    object-fit: cover;
    background: linear-gradient(135deg, #d4af37 0%, #c99e2a 100%);
}
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotateZ(-2deg);
    }
    25% {
        transform: translateY(-20px) rotateZ(-1deg);
    }
    50% {
        transform: translateY(-40px) rotateZ(0deg);
    }
    75% {
        transform: translateY(-20px) rotateZ(1deg);
    }
}
.cta-button {
    background-color: #d4af37;
    color: #1a1410;
    border: none;
    padding: 12px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    min-height: 44px; /* Touch-friendly */
    display: inline-block;
}
.cta-button:hover {
    background-color: #e6c547;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
}
/* Features Section */
.features {
    padding: 60px 20px;
    background-color: #ffffff;
}
.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a2332;
    font-weight: 700;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.feature-card h3 {
    color: #d4af37;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}
/* Page Section */
.page-section {
    padding: 60px 20px;
    min-height: calc(100vh - 400px);
}
.page-section h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a2332;
}
/* Company Content */
.company-content {
    max-width: 900px;
    margin: 0 auto;
}
.content-block {
    margin-bottom: 3rem;
    background: white;
    padding: 2rem;
    border-left: 4px solid #d4af37;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.content-block h2 {
    color: #d4af37;
    margin-bottom: 1rem;
}
.content-block ul {
    list-style-position: inside;
    line-height: 2;
}
.content-block li {
    margin-bottom: 0.5rem;
}
/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}
.product-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #d4af37;
    overflow: hidden;
}
.product-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}
.product-card-image:hover {
    transform: scale(1.05);
}
.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}
.product-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.product-card h3 {
    color: #d4af37;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}
.product-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}
.learn-more {
    display: inline-block;
    color: #d4af37;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
    border: 2px solid #d4af37;
    border-radius: 5px;
    transition: all 0.3s ease;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}
.learn-more:hover {
    background-color: #d4af37;
    color: #1a1410;
}
/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}
.contact-info {
    display: grid;
    gap: 1.5rem;
}
.info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #d4af37;
}
.info-card h3 {
    color: #d4af37;
    margin-bottom: 0.5rem;
}
.info-card p {
    color: #666;
    line-height: 1.8;
}
/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.contact-form h2 {
    color: #d4af37;
    margin-bottom: 1.5rem;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    min-height: 44px;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}
.submit-btn {
    background: linear-gradient(135deg, #d4af37 0%, #c99e2a 100%);
    color: #1a1410;
    border: none;
    padding: 12px 40px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    min-height: 44px;
}
.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}
/* Footer */
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}
.social-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.social-links a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s ease;
}
.social-links a:hover {
    color: #e6c547;
}
/* Dehydrators Section */
.dehydrators-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}
.dehydrator-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border-top: 4px solid #d4af37;
    text-align: center;
}
.dehydrator-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease;
}
.dehydrator-image:hover {
    transform: scale(1.05);
}
.dehydrator-item h3 {
    color: #1a1410;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    line-height: 1.4;
}
.dehydrator-item p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}
/* Featured Product */
.featured-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border-top: 4px solid #d4af37;
    max-width: 1000px;
}
.featured-image {
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-image {
    width: 100%;
    max-width: 300px;
    height: 250px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease;
    object-fit: cover;
}
.product-image:hover {
    transform: scale(1.05);
}
.featured-content h2 {
    color: #1a1410;
    margin-bottom: 0.8rem;
    font-size: 1.6rem;
}
.featured-content p {
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
}
.features-list {
    list-style: none;
    margin-bottom: 1rem;
}
.features-list li {
    color: #666;
    padding: 0.3rem 0;
    font-weight: 500;
    font-size: 0.9rem;
}
.video-btn {
    background: linear-gradient(135deg, #d4af37 0%, #c99e2a 100%);
    color: #1a1410;
    border: none;
    padding: 12px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    min-height: 44px;
}
.video-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
}
/* Video Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.modal-content {
    background-color: #1a1410;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 900px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.3);
    animation: slideIn 0.3s ease;
}
@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.modal-content h2 {
    color: #d4af37;
    margin-bottom: 1.5rem;
    text-align: center;
}
.close {
    color: #d4af37;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}
.close:hover {
    color: #e6c547;
}
.modal iframe {
    border-radius: 10px;
    width: 100%;
    height: 400px;
}
/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Navbar: Stack with hamburger prep */
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
        padding: 0 15px;
    }
    .nav-menu {
        display: none; /* Hide by default on mobile */
        flex-direction: column;
        gap: 0;
        width: 100%;
        text-align: center;
        background: rgba(26, 20, 16, 0.95); /* Semi-transparent bg */
        border-radius: 8px;
        padding: 1rem 0;
    }
    .nav-menu.active { /* Toggle class for JS */
        display: flex;
    }
    .nav-menu li {
        width: 100%;
    }
    .nav-menu a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        font-size: 1.1rem; /* Larger for touch */
    }
    .nav-menu a:hover,
    .nav-menu a.active {
        border-bottom: none;
        background: rgba(212, 175, 55, 0.2);
    }
    /* Add hamburger button (CSS-only for now; add JS later) */
    .hamburger {
        display: block;
        cursor: pointer;
        font-size: 1.5rem;
        color: white;
    }
    
    /* Hero: Full vertical stack, centered */
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 40px 15px;
        min-height: auto;
    }
    .hero-content {
        order: 1; /* Text first */
    }
    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    .hero-content p {
        font-size: 1.1rem;
    }
    .hero-image {
        order: 2; /* Image below */
        min-height: auto;
        justify-content: center;
    }
    .floating-image {
        max-width: 280px; /* Smaller for mobile */
        animation-duration: 4s; /* Quicker */
        margin: 0 auto;
    }
    .cta-button {
        width: 100%;
        padding: 15px;
        font-size: 1.1rem;
    }
    
    /* Features: Single column */
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .features {
        padding: 40px 15px;
    }
    .features h2 {
        font-size: 2rem;
    }
    .feature-card {
        padding: 1.5rem;
    }
    
    /* Products/Dehydrators: Single column */
    .products-grid,
    .dehydrators-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .product-card-image,
    .dehydrator-image {
        height: 200px;
    }
    .product-card,
    .dehydrator-item {
        padding: 1.5rem;
    }
    
    /* Featured Product: Stack */
    .featured-product {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }
    .product-image {
        max-width: 250px;
        height: 200px;
        margin: 0 auto;
    }
    
    /* Contact: Stack */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .contact-form,
    .info-card {
        padding: 1.5rem;
    }
    
    /* Page Sections */
    .page-section,
    .company-content {
        padding: 40px 15px;
    }
    .content-block {
        padding: 1.5rem;
    }
    
    /* Footer */
    .footer {
        padding: 1.5rem 15px;
    }
    .social-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    .social-links a {
        margin: 0;
        padding: 0.5rem;
    }
    
    /* Modal: Optimized for mobile */
    .modal-content {
        width: 95%;
        margin: 5% auto;
        padding: 1rem;
    }
    .modal iframe {
        height: 250px !important;
    }
}

@media (max-width: 480px) {
    /* Tiny screens: Even tighter */
    .container {
        padding: 0 10px;
    }
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .floating-image {
        max-width: 240px;
    }
    .features h2,
    .page-section h1,
    .contact-form h2 {
        font-size: 1.8rem;
    }
    .feature-card,
    .product-card,
    .dehydrator-item {
        padding: 1rem;
    }
    .cta-button,
    .submit-btn,
    .video-btn,
    .learn-more {
        padding: 12px 20px;
        font-size: 1rem;
    }
    .logo {
        font-size: 1.5rem;
    }
    .logo-img {
        height: 50px;
    }
    .nav-menu a {
        padding: 0.8rem;
        font-size: 1rem;
    }
}