
/* Basic Styles & Global Resets */
:root {
    --primary-color: #e67e22;
    --secondary-color: #4a2c2a;
    --text-color: #333;
    --light-bg: #fef9f4;
    --white: #fff;
    --header-height: 60px;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    color: var(--text-color);
    background-color: var(--light-bg);
}

.header-container, .site-content, .site-footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styling */
.site-header {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
}

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

.logo {
    margin: 0;
    font-size: 1.5em;
}

.logo a {
    text-decoration: none;
    color: var(--white);
}

.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}
.main-nav li {
    margin-right: 10px;
}

.main-nav li a {
    display: block;
    color: var(--white);
    text-decoration: none;
    padding: 10px 15px 3px;
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.3s ease-in-out;
}

.main-nav li a:hover,
.main-nav li a.active {
    background-color: transparent;
    border-bottom: 2px solid var(--primary-color);
}

/* Mobile Menu Button */
#menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    font-size: 2em;
    cursor: pointer;
    position: relative;
    width: 30px;
    height: 30px;
}

/* Base style for the icon */
.menu-icon::before {
    content: "\2261";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: content 0.3s;
}

/* Hide the hamburger icon when the menu is active */
#menu-toggle:checked + .menu-icon::before {
    content: "\00d7";
}


.site-content {
    min-height: calc(100vh - var(--header-height) - 70px);
    padding-top: 20px;
}
.site-content a {
    color: var(--primary-color);
    text-decoration: none;
}
.site-content a:hover {
    text-decoration: underline;
}

/* Main Content Styling */
/* Hero Section */
.hero-section {
    background: url('/img/hero.jpg') no-repeat center center/cover;
    height: 600px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    text-align: center;
    position: relative;
    background-attachment: fixed;
}

.hero-content {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 30px;
    border-radius: 10px;
}

.hero-content h2 {
    font-size: 3em;
    margin-top: 0;
}

.hero-content p {
    font-size: 1.2em;
}



/* Simplified box class for sections with similar styling */
.box {
    background-color: var(--white);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.box-small {
    max-width: 800px;
    margin: 0 auto;
}
.box h1 {
    margin-left: 25px;
}


/* Contact Form Styling */
.form-container {
    max-width: 500px;
    margin: 20px auto 0 auto;
    padding: 16px 32px;
    background: var(--light-bg);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.form-container label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: var(--secondary-color);
}
.form-container input,
.form-container textarea {
    width: 100%;
    padding: 8px;
    margin-top: 0px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1em;
    background: #fff;
    transition: border-color 0.2s;
}
.form-container input:focus,
.form-container textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}
.form-container button[type="submit"] {
    background: #069d08;
    color: var(--white);
    border: none;
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}
.form-container button[type="submit"]:hover {
    background: #046f06;
}

.box h2 {
    color: var(--primary-color);
    text-align: left;
    margin-left: 25px;;
}
.box h3 {
    color: var(--primary-color);
    text-align: center;
}
.box > p {
    margin: 0px 25px;
}
/* Floating Button */
.floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    
    display: flex;
    justify-content: center;
    align-items: center;
    
    z-index: 999;
    
}

.floating-button img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}



/* Three-Column Section */
.info-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
    text-align: center;
}

.info-column {
    flex: 1;
    padding: 20px;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.info-column i.icon-placeholder {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: block;
}

.info-cta {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.info-button, a.info-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: inherit;
    font-size: 1em;
    text-align: center;
    transition: background-color 0.3s ease;
    line-height: 1.6;
}

.info-button:hover, a.info-button:hover {
    background-color: #d35400;
    color: var(--white);
    text-decoration: none;
}

.info-button2, a.info-button2 {
    display: inline-block;
    padding: 15px 30px;
    background-color: #069d08;
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: inherit;
    font-size: 1em;
    text-align: center;
    transition: background-color 0.3s ease;
}

.info-button2:hover, a.info-button2:hover {
    background-color: #046f06;
    color: var(--white);
    text-decoration: none;
}

.info-cta a {
    
    color: var(--white);
    text-decoration: none;
    
}
.info-cta a:hover {
    
    color: var(--white);
    text-decoration: none;
    
}

.rounded-image {
    border-radius: 20px;
    object-fit: cover;
}

/* Footer Styling */
.site-footer-wrapper {
    background-color: var(--secondary-color);
    width: 100%;
    margin-top: 20px;
    padding: 20px 0;
}

.site-footer {
    color: var(--white);
    text-align: center;
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    margin-top: 0;
    font-size: 1.2em;
    color: var(--primary-color);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li a {
    color: var(--white);
    text-decoration: none;
    line-height: 1.8;
}

.footer-column li a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    font-size: 0.9em;
}

/* Articles Section */
.articles-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.product-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s;
}
.product-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.product-thumbnail {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 12px;
    background: #f3f3f3;
}
.product-thumbnail2 {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 12px;
    background: #f3f3f3;
}
.product-featured {
    width: 95%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 12px;
    background: #f3f3f3;
    display: block;
    margin-left: auto;
    margin-right: auto;
   
}
.product-thumbnail-big {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 12px;
    background: #f3f3f3;
}
.product-card h3 {
    color: var(--primary-color);
    margin: 10px 0 6px 0;
    text-align: center;
}
.product-card p {
    margin: 0 0 8px 0;
    text-align: center;
}
.product-price {
    font-weight: bold;
    color: var(--secondary-color);
    font-size: 1.1em;
    margin-top: 8px;
}
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

.article-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--light-bg);
    padding-bottom: 20px;
}

.article-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.article-thumbnail {
    width: 150px;
    height: 150px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 20px;
}
.article-featured {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 12px;
    background: #f3f3f3;
    display: block;
    margin-left: auto;
    margin-right: auto;
   
}
.article-content {
    flex: 1;
    padding-left: 20px;
    padding-right: 20px;
}

.article-content h3 {
    margin-top: 0;
    margin-bottom: 5px;
    text-align: left;
    color: var(--secondary-color);
}

.article-meta {
    font-size: 0.9em;
    color: #888;
    margin-top: 0;
    margin-bottom: 10px;
}

.edit-link {
    font-size: 0.9em;
    color: var(--primary-color);
    text-decoration: none;
    margin-left: 10px;
}

.edit-link:hover {
    text-decoration: underline;
}



/* Responsive Styles */
@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
    }

    .main-nav {
        display: none;
        width: 100%;
        margin-top: 10px;
    }

    .main-nav ul {
        flex-direction: column;
    }

    .main-nav li a {
        padding: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .menu-icon {
        display: block;
    }

    #menu-toggle:checked ~ .main-nav {
        display: block;
    }

    .footer-columns {
        flex-direction: column;
        gap: 30px;
    }

    .hero-content {
        margin: 0 20px;
    }

    .info-container {
        flex-direction: column;
    }

    .article-thumbnail {
        max-width: 25%;
        height: auto; /* This maintains the aspect ratio */
    }

    /*
    .article-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .article-thumbnail {
        margin-right: 0;
        margin-bottom: 15px;
    } */
     .box {
        
        padding-left: 2px;
        padding-right: 2px;
        
    }

    .box h2 {
        text-align: center;
    }

    .articles-container {

        padding: 0 10px;
    }
}