/* CSS Variables */
:root {
    --color-brand: rgb(57, 167, 73);
    --color-alt-brand: rgb(173, 229, 119);
    --color-text: rgb(23, 23, 23);
    --color-text-alt: rgb(253, 253, 253);
    --color-complementary: rgb(244, 243, 239);
    --font-primary: 'Oxygen', sans-serif;
    --font-secondary: 'PT Sans', serif;
    --spacing-unit: 1rem;
    --max-width: 1200px;
}

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

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    line-height: 1.6;
    background-color: #fff;
}

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

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

a:hover {
    opacity: 0.8;
}

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

/* Scroll reveal animations */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #fff;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--color-text);
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--color-brand);
}

.logo-img {
    height: 140px;
    width: auto;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-alt);
    padding: 10px 24px;
    background-color: var(--color-brand);
    border-radius: 30px;
    transition: background-color 0.3s, transform 0.3s;
}

.phone-link:hover {
    background-color: var(--color-alt-brand);
    transform: translateY(-1px);
}

.phone-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.phone-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Hero Section */
.hero {
    padding: 40px 0;
    background-color: var(--color-complementary);
}

.hero-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

/* About Section */
.about {
    padding: 60px 0;
    background-color: var(--color-complementary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.about-content + .about-content {
    margin-top: 40px;
}

.about-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-image {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.about-text h1 {
    font-size: 2.4rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--color-text);
}

.about-text h2 {
    font-size: 1.4rem;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--color-text);
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 20px;
}

.about-benefits {
    margin: 0 0 20px 20px;
    padding-left: 20px;
    list-style-type: disc;
}

.about-benefits li {
    margin-bottom: 10px;
}

.signature {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--color-text);
}

/* Call to Action */
.cta {
    padding: 40px 0;
    background-color: var(--color-brand);
    color: var(--color-text-alt);
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cta-content h3 {
    font-size: 1.3rem;
    font-weight: 400;
}

.cta-content a {
    color: var(--color-text-alt);
    font-weight: bold;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--color-alt-brand);
    color: var(--color-text-alt);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 20px rgba(57, 167, 73, 0.25);
}

.btn-primary:hover {
    background-color: var(--color-brand);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(57, 167, 73, 0.35);
}

/* Gallery Section */
.gallery-section {
    padding: 60px 0;
    background-color: var(--color-complementary);
}

.gallery-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 40px;
    align-items: start;
}

.gallery-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-main-image img,
.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-main-image img:hover,
.gallery-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gallery-info {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.info-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--color-text);
}

.info-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.info-item {
    margin-bottom: 40px;
    position: relative;
}

.info-item h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--color-brand);
}

.info-item p {
    font-size: 1rem;
    line-height: 1.7;
}

.info-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(57, 167, 73, 0.1);
    color: var(--color-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.info-icon svg {
    width: 36px;
    height: 36px;
}

.info-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.08);
    margin: 20px 0 30px;
}

/* Delivery Section */
.delivery {
    padding: 60px 0;
    background-color: var(--color-complementary);
}

.delivery-panel {
    background-color: var(--color-brand);
    color: var(--color-text-alt);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(57, 167, 73, 0.25);
}

.delivery-content h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    color: var(--color-text);
}

.delivery-panel h2 {
    color: var(--color-text-alt);
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.delivery-item {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-text-alt);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.delivery-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.delivery-item p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background-color: var(--color-complementary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--color-text);
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--color-text);
}

.contact-details p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.contact-details a {
    color: var(--color-brand);
    font-weight: 500;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-row:last-of-type {
    grid-template-columns: 1fr;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-primary);
    font-size: 1rem;
    width: 100%;
}

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

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.form-message {
    padding: 15px;
    border-radius: 5px;
    display: none;
}

.form-message.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.map-wrapper {
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background-color: var(--color-text-alt);
    color: var(--color-text);
}

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--color-text);
}

.footer-section p {
    line-height: 1.8;
}

.footer-logo {
    height: 150px;
    width: auto;
}

.footer .social-links {
    margin-top: 10px;
}

.footer-copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .about-text h1 {
        font-size: 2rem;
    }

    .delivery-grid {
        grid-template-columns: 1fr;
    }
}

/* Section remains white like the rest of the site */
.delivery {
    background: white;
    padding: 40px 0;
}

/* The green box */
.delivery-panel {
    background: #27ae60;
    padding: 40px;
    border-radius: 15px;
    color: white;
}

.delivery-panel h2 {
    color: white;
    margin-bottom: 30px;
    font-size: 32px;
}

/* Grid layout */
.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
}

.delivery-item {
    text-align: center;
}

.delivery-item h3 {
    margin-top: 15px;
    font-size: 20px;
    font-weight: 600;
}

.delivery-item p {
    font-size: 15px;
    margin-top: 10px;
    line-height: 1.6;
}

/* Icons */
.delivery-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
}

.delivery-icon svg {
    width: 100%;
    height: 100%;
    stroke: #fff;
}
