/* Global Styles */
:root {
    --primary-color: #C5A572;
    --secondary-color: #4A3C31;
    --background-color: #FFFFFF;
    --text-color: #333333;
    --max-width: 80rem;
}

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.logo img {
    height: 50px;
}

.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.contact-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

/* Sections */
section {
    padding: 5rem 0;
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero {
    position: relative;
    overflow: hidden;
}

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

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-logo {
  display: flex;
  justify-self: center;
  margin: 2rem;
  padding: 1.5rem;
  border-radius: 8px;
  background-color: hsla(0, 0%, 100%, 0.75);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

}

.hero-content {
    position: relative;
    z-index: 1;
    /* Add a semi-transparent overlay to ensure text readability */
    /* background: rgba(0, 0, 0, 0.4); */
    padding: 2rem;
    border-radius: 8px;
}
.hero-content {
    max-width: var(--max-width);
    padding: 0 2rem;
    margin-top: 4rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content .subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.cta-btn {
    padding: 1rem 2rem;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

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

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

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

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

@media screen and (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content .subtitle {
        font-size: 1.2rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content .subtitle {
        font-size: 1rem;
    }
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

input, textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

textarea {
    height: 150px;
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

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

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}
/* Hero Section Override */
.hero .container {
    max-width: none;
    padding: 0;
}

/* Footer Override */
.footer .container {
    padding: 0 20px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1rem;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}
/* About Section */
.about {
    background-color: #FFFBF3;
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-content p {
    font-size: 1.125rem;
    color: #4A4A4A;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-image {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

@media screen and (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1100;
    overflow-y: auto;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 2rem;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);


}

 .modal-header {
   margin: 1.5rem 0 2rem;
 }

.modal-header h2 {
  color: var(--secondary-color);
  font-size: 2rem;
  font-weight: 700;
}

h2 {
  color: var(--secondary-color);
  font-size: 2rem;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1.5rem;
  line-height: 1.04;
  font-weight: 300;
  margin: 1rem 0;
}

.modal-grid {


}

.modal-logo-column {
    position: sticky;
    top: 2rem;
    flex: 1;
    display: flex;
}

.modal-logo {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    display: block;
}

.modal-content-column {
    padding-right: 1rem;
    .modal-content-column p strong {
        font-size: 2rem;
        display: block;
        margin: 1.5rem 0;
        color: var(--secondary-color);
    }
}

.modal-intro-section {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;



}

.modal-intro-content {
    flex: 1;
}

.modal-intro-content p {
  margin-bottom: 1rem;
}

.modal-logo {
    width: 100%;
    max-width: 250px;
}

@media screen and (max-width: 768px) {
    .modal-intro-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }

    .modal-logo-column {
        flex: 0 0 auto;
    }

    .modal-logo {
        max-width: 200px;
    }
}

@media screen and (max-width: 480px) {
    .modal-content {
        padding: 1rem;
        top: 0;
        transform: translate(-50%, 0);
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
    }
}
.close-modal {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 6px;
    transition: transform 0.3s ease;
}

.close-modal:hover {
    transform: scale(1.1);
}

.close-modal img {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(22%) sepia(8%) saturate(1926%) hue-rotate(346deg) brightness(94%) contrast(87%);
    transition: filter 0.3s ease;
}

.close-modal:hover img {
    filter: brightness(0) saturate(100%) invert(71%) sepia(19%) saturate(638%) hue-rotate(358deg) brightness(89%) contrast(86%);
}

    .values-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        list-style: none;
        padding: 0;
    }

    .values-grid li {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: 1px solid #D6AD61;
    }

    .values-grid li:nth-last-child(-n+2) {
        border-bottom: none;
    }

    @media screen and (max-width: 768px) {
        .values-grid {
            grid-template-columns: 1fr;
        }

        .values-grid li {
            border-bottom: 1px solid #D6AD61;
        }

        .values-grid li:last-child {
            border-bottom: none;
        }
    }

.modal-content-column ul li {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #D6AD61;
}

.modal-content-column ul li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.modal-content-column ul li strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.modal-content-column ul li {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.modal-cta {
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid #cccccc;
}
.products {
    background-color: #ffffff;
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 1rem;
}

.product-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    align-items: start;
}

.product-images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.main-product-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-variants {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.product-variants img {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-description {
    padding: 1rem 0;
}

.product-description h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.product-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.feature-badge {
    background-color: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.packaging-options {
    margin-top: 2rem;
}

.packaging-options h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.packaging-options ul {
    list-style: none;
    padding: 0;
}

.packaging-options li {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

@media screen and (max-width: 992px) {
    .product-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-images {
        max-width: 600px;
        margin: 0 auto;
    }

    .product-description, .product-cta {
        text-align: center;
    }

    .product-features {
        justify-content: center;
    }
}

.nutrition {
    background-color: #f9f9f9;
    padding: 6rem 0;
}

.nutrition-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
}

.nutrition-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.nutrition-table {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nutrition-table h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.nutrition-table table {
    width: 100%;
    border-collapse: collapse;
}

.nutrition-table tr {
    border-bottom: 1px solid #eee;
}

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

.nutrition-table td {
    padding: 1rem 0;
    font-size: 1rem;
}

.nutrition-table td:last-child {
    text-align: right;
    font-weight: 500;
}

.nutrition-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.details-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.details-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.details-card ul {
    list-style: none;
    padding: 0;
}

.details-card li {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.details-card li:last-child {
    margin-bottom: 0;
}

.nutrition-details .cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.nutrition-details .cta-btn img {
    width: 20px;
    height: 20px;
}

@media screen and (max-width: 992px) {
    .nutrition-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.recipes {
    background-color: #f9f9f9;
    padding: 6rem 0;
}

.recipes-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
}

.recipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.recipe-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.recipe-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.recipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recipe-content {
    padding: 2rem;
}

.recipe-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.recipe-content > p {
    margin-bottom: 2rem;
    color: var(--text-color);
}

.recipe-details {
    display: grid;
    gap: 2rem;
}

.recipe-details h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.recipe-details ul,
.recipe-details ol {
    padding-left: 1.5rem;
}

.recipe-details li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: var(--text-color);
}

.recipes-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.recipes-cta p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

@media screen and (max-width: 768px) {
    .recipe-grid {
        grid-template-columns: 1fr;
    }

    .recipe-content {
        padding: 1.5rem;
    }
}

.contact {
    background-color: #f9f9f9;
    padding: 6rem 0;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.checkbox-group {
    margin: 2rem 0;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    position: relative;
    cursor: pointer;
    padding-left: 35px;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 4px;
}

.checkbox-container:hover input ~ .checkmark {
    border-color: var(--primary-color);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-color);
}

.recaptcha-container {
    margin: 2rem 0;
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--primary-color-dark);
}

@media screen and (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.toast {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 2000;
    text-align: center;
    min-width: 300px;
    max-width: 80%;
}

.toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

