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

:root {
    --primary-color: #8b4513;
    --primary-dark: #3d2817;
    --primary-light: #a0522d;
    --secondary-color: #654321;
    --accent-color: #d4a574;
    --text-dark: #e8e8e8;
    --text-light: #b8b8b8;
    --bg-dark: #1a1612;
    --bg-darker: #0f0d0a;
    --bg-light: #2a241f;
    --bg-white: #1f1b16;
    --border-color: #3d3529;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 5px 20px rgba(0, 0, 0, 0.7);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-darker);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(139, 69, 19, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(101, 67, 33, 0.1) 0%, transparent 50%);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 22, 18, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    margin-left: -10px;
}

.logo a {
    display: block;
    text-decoration: none;
}

.logo-img {
    height: 70px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
}

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

.nav-link.external-link::after {
    content: ' ↗';
    font-size: 0.9em;
    position: static;
    width: auto;
    height: auto;
    background: none;
    display: inline-block;
    margin-left: 4px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    transition: all 0.3s ease;
}

/* Sections */
.section {
    padding: 100px 0 80px;
    min-height: 100vh;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--accent-color);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Home Section with Banners */
.home-section {
    padding: 0;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.banner-container {
    position: relative;
    width: 100%;
    height: 100vh;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-slide:nth-child(1) {
    background: linear-gradient(135deg, #1a1612 0%, #3d2817 50%, #654321 100%);
}

.banner-slide:nth-child(2) {
    background: linear-gradient(135deg, #2a241f 0%, #8b4513 50%, #a0522d 100%);
}

.banner-slide:nth-child(3) {
    background: linear-gradient(135deg, #0f0d0a 0%, #1a1612 50%, #3d2817 100%);
}

.banner-slide.active {
    opacity: 1;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    padding: 3rem;
}

.overlay-content {
    background: rgba(26, 22, 18, 0.85);
    backdrop-filter: blur(5px);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--accent-color);
    max-width: 500px;
}

.overlay-title {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.overlay-subtitle {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.btn-overlay {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
}

.btn-overlay:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.banner-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.banner-content p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.banner-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

/* About Section */
.about-section {
    background: var(--bg-dark);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    text-align: center;
}

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

.feature {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature h4 {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.feature p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Feeders Section */
.feeders-section {
    background: var(--bg-darker);
}

.quality-notice {
    background: var(--bg-light);
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem auto 3rem;
    max-width: 900px;
    text-align: center;
}

.quality-notice .section-title {
    margin-bottom: 1.5rem;
}

.quality-notice h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.quality-notice p {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

.tables-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.table-wrapper {
    display: flex;
    flex-direction: column;
}

.table-title {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

.table-container {
    overflow-x: auto;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: var(--bg-light);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-light);
    font-size: 1rem;
    min-width: 100%;
}

.pricing-table thead {
    background: var(--bg-dark);
    border-bottom: 2px solid var(--border-color);
}

.pricing-table th {
    padding: 1rem 1.5rem;
    text-align: left;
    font-weight: 600;
    color: var(--accent-color);
    font-size: 1.1rem;
    border-right: 1px solid var(--border-color);
}

.pricing-table th:last-child {
    border-right: none;
}

.pricing-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.2s ease;
}

.pricing-table tbody tr:nth-child(even) {
    background: rgba(139, 69, 19, 0.05);
}

.pricing-table tbody tr:hover {
    background: rgba(212, 165, 116, 0.1);
}

.pricing-table tbody tr:last-child {
    border-bottom: none;
}

.pricing-table td {
    padding: 1rem 1.5rem;
    color: var(--text-dark);
    border-right: 1px solid var(--border-color);
}

.pricing-table td:last-child {
    border-right: none;
    font-weight: 600;
    color: var(--accent-color);
}

.pricing-table.dubia-table td:not(:first-child) {
    font-weight: 600;
    color: var(--accent-color);
}

.pricing-table.dubia-table td:last-child {
    color: var(--accent-color);
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.pricing-note {
    margin-top: 3rem;
    text-align: center;
    color: var(--text-light);
    font-style: italic;
}

.order-cta {
    margin-top: 2rem;
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border: 2px solid var(--accent-color);
    border-radius: 10px;
}

.order-cta p {
    margin: 0;
    font-size: 1.3rem;
    color: var(--accent-color);
}

.order-cta strong {
    font-weight: 600;
}

/* Meetup Locations Section */
.meetups-section {
    background: var(--bg-dark);
}

.delivery-notice {
    background: var(--bg-light);
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem auto 3rem;
    max-width: 800px;
    text-align: center;
}

.delivery-notice h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.delivery-notice p {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.delivery-notice .phone-number {
    margin-top: 1rem;
    font-size: 1.2rem;
}

.delivery-notice .phone-number strong {
    color: var(--accent-color);
}

.meetup-categories {
    margin-top: 3rem;
}

.meetup-category {
    margin-bottom: 3rem;
}

.meetup-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

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

.meetup-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.meetup-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.meetup-card h4 {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.meetup-address {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.area-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.meetup-time {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.meetup-time.appointment {
    color: var(--primary-light);
    font-style: italic;
}

/* Wholesale Section */
.wholesale-section {
    background: var(--bg-dark);
}

.wholesale-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.wholesale-info h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.wholesale-info h3:first-child {
    margin-top: 0;
}

.wholesale-benefits,
.wholesale-qualifications {
    list-style: none;
    margin-bottom: 2rem;
}

.wholesale-benefits li,
.wholesale-qualifications li {
    padding: 0.8rem 0;
    color: var(--text-light);
    font-size: 1.05rem;
    border-bottom: 1px solid var(--border-color);
}

.wholesale-benefits li:last-child,
.wholesale-qualifications li:last-child {
    border-bottom: none;
}

.wholesale-form-container {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.wholesale-form-container h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--bg-dark);
    color: var(--text-dark);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group textarea {
    resize: vertical;
}

/* Checkbox styling */
.form-group .checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: normal;
    margin-bottom: 0;
}

.form-group .checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    cursor: pointer;
    width: 20px;
    height: 20px;
    accent-color: var(--accent-color);
}

.form-group .checkbox-label span {
    color: var(--text-dark);
    user-select: none;
}

/* Honeypot field - hidden from users */
.form-group.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.form-group.honeypot label,
.form-group.honeypot input {
    display: none;
}

/* Form Success/Error Messages */
.form-message {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    margin: 20px 0;
    box-shadow: var(--shadow);
}

.form-success {
    border: 2px solid #10b981;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, var(--card-bg) 100%);
}

.form-error {
    border: 2px solid #ef4444;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, var(--card-bg) 100%);
}

.form-message .message-icon {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1;
}

.form-success .message-icon {
    color: #10b981;
}

.form-error .message-icon {
    color: #ef4444;
}

.form-message h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.form-message p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.6;
}

.form-message .btn-primary {
    max-width: 300px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    background: var(--bg-darker);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.contact-item h3 {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-form-container {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.contact-form-container h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: white;
    padding: 3rem 0 1rem;
}

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

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

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .logo {
        margin-left: -5px;
    }
    
    .logo-img {
        height: 50px;
        max-width: 200px;
    }
    
    .nav-container {
        padding: 0.75rem 15px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-dark);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        border-top: 1px solid var(--border-color);
        padding: 2rem 0;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .banner-content h2 {
        font-size: 2rem;
    }
    
    .banner-content p {
        font-size: 1.2rem;
    }
    
    .banner-overlay {
        padding: 1.5rem;
    }
    
    .overlay-content {
        padding: 1.5rem;
        max-width: 100%;
    }
    
    .overlay-title {
        font-size: 1.5rem;
    }
    
    .overlay-subtitle {
        font-size: 1rem;
    }
    
    .btn-overlay {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .wholesale-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 80px 0 60px;
    }
    
    .logo {
        margin-left: -5px;
    }
    
    .logo-img {
        height: 45px;
        max-width: 180px;
    }
    
    .nav-container {
        padding: 0.5rem 10px;
    }
    
    .banner-content h2 {
        font-size: 1.5rem;
    }
    
    .banner-content p {
        font-size: 1rem;
    }
    
    .tables-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .table-title {
        font-size: 1.3rem;
    }
    
    .pricing-table {
        font-size: 0.9rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 0.75rem 1rem;
    }
    
    .table-container {
        margin-left: -10px;
        margin-right: -10px;
        border-left: none;
        border-right: none;
        border-radius: 0;
    }
    
    .meetup-cards {
        grid-template-columns: 1fr;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .delivery-notice {
        padding: 1.5rem;
        margin: 1.5rem auto 2rem;
    }
    
    .delivery-notice h3 {
        font-size: 1.3rem;
    }
    
    .delivery-notice p {
        font-size: 1rem;
    }
    
    .quality-notice {
        padding: 1.5rem;
        margin: 1.5rem auto 2rem;
    }
    
    .quality-notice h3 {
        font-size: 1.3rem;
    }
    
    .quality-notice p {
        font-size: 1rem;
    }
}

