/* --- VARIABLES & RESET --- */
:root {
    --color-bg-light: #EAE0D5; /* Beige from image */
    --color-bg-dark: #5D3A29;  /* Dark Brown from image */
    --color-text-dark: #3E2723;
    --color-text-light: #F2EBE5;
    --color-accent: #C69C6D;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;

    --transition: all 0.4s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

ul {
    margin-left: 1rem;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* --- UTILITIES --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid currentColor;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
    background: transparent;
}

.btn:hover {
    background-color: var(--color-text-dark);
    color: var(--color-bg-light);
    border-color: var(--color-text-dark);
}

.btn-light {
    color: var(--color-text-light);
    border-color: var(--color-text-light);
}

.btn-light:hover {
    background-color: var(--color-text-light);
    color: var(--color-text-dark);
}

/* --- HERO SECTION (Slideshow + Parallax) --- */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

/* Slideshow Backgrounds */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax Magic */
    opacity: 0;
    animation: slideAnimation 15s infinite;
    z-index: -1;
}

.slide:nth-child(1) {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('images/main.jpg'); animation-delay: 0s; }
.slide:nth-child(2) { background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('images/main2.jpg'); animation-delay: 5s; }
.slide:nth-child(3) { background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('images/main3.jpg'); animation-delay: 10s; }

@keyframes slideAnimation {
    0% { opacity: 0; }
    10% { opacity: 1; }
    33% { opacity: 1; }
    43% { opacity: 0; }
    100% { opacity: 0; }
}

.hero-content {
    z-index: 2;
    padding: 0 1rem;
}

.hero-subtitle {
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 2rem;
    line-height: 1.1;
}

/* --- ABOUT SECTION --- */
.section {
    padding: 1rem;
}

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

.about-img-wrapper {
    position: relative;
    overflow: hidden;
}

.about-img-wrapper img {
    width: 100%;
    height: auto;
    transition: transform 1.5s ease;
}

.about-img-wrapper:hover img {
    transform: scale(1.05);
}

.section-tag {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    display: block;
    color: var(--color-text-dark);
    opacity: 0.7;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.section-text {
    font-size: 1.1rem;
    opacity: 0.8;
    /*max-width: 450px;*/
}

/* --- CEO QUOTE SECTION (Dark) --- */
.quote-section {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    text-align: center;
    padding: 8rem 2rem;
    position: relative;
}

.quote-text {
    font-size: 3rem;
    font-family: var(--font-heading);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.quote-author {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    color: var(--color-accent);
}

.divider {
    width: 100px;
    height: 1px;
    background-color: var(--color-text-light);
    margin: 2rem auto 0;
    opacity: 0.3;
}

/* --- PRODUCTS SECTION --- */
.products-header {
    margin-bottom: 4rem;
}

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

.product-card {
    text-align: center;
    group: ;
}

.product-image {
    background-color: #F5F5F5;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: var(--transition);
    position: relative;
}

.product-image img {
    /*max-height: 250px;*/
    margin: 0 auto;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
    transition: transform 0.5s ease;
}

.product-card:hover .product-image {
    background-color: #fff;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

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

.product-name {
    font-size: 1.2rem;
    letter-spacing: 1px;
    font-family: var(--font-body);
    font-weight: 700;
}
.button-container {
    display: flex;             /* Enables flexible layout */
    justify-content: center;   /* Horizontally centers the content */
    align-items: center;       /* Vertically centers (optional) */
    padding: 20px;             /* Adds some breathing room */
}
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px; /* Space between icon and text */
    background-color: #25D366; /* Official WhatsApp Green */
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px; /* Rounded pill shape */
    font-family: sans-serif;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s;
}

.whatsapp-btn:hover {
    background-color: #128C7E; /* Darker green on hover */
}

.whatsapp-icon {
    font-size: 20px; /* Make the icon slightly larger */
}

/* --- FOUNDATION SECTION --- */
.foundation-section {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.foundation-img {
    background-image: url('images/bottom1.jpg');
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

.foundation-content {
    padding: 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* --- CONTACT SECTION --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.contact-info {
    padding: 6rem;
    background-color: #F9F4EF;
}

.contact-visual {
    background-image: url('images/certificate.jpg');
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    display: block;
    font-weight: 700;
}
.product-price {
    font-family: sans-serif;
    font-size: 1.2rem;
}

.old-price {
    text-decoration: line-through; /* This creates the slash */
    color: #999;                   /* Greys it out to show it's inactive */
    margin-right: 10px;            /* Adds space between the prices */
    font-size: 0.9em;              /* Make it slightly smaller */
}

.new-price {
    color: #d9534f; /* Red color for urgency (or use your brand color) */
    font-weight: bold;
}

/* --- FOOTER --- */
footer {
    background: var(--color-text-dark);
    color: var(--color-text-light);
    text-align: center;
    padding: 2rem;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .hero-title { font-size: 3rem; }
    .about-grid, .foundation-section, .contact-grid { grid-template-columns: 1fr; }
    .foundation-img, .contact-visual { min-height: 300px; }
    .foundation-content, .contact-info { padding: 3rem 1.5rem; }
    .slide { background-attachment: scroll; } /* Disable parallax on mobile for performance */
    .section-title { font-size: 2.5rem; }
    .quote-text { font-size: 2rem; }
}
