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


body {
    font-family: "Nunito Sans", sans-serif;
    background-color: #FFFEF2;
    color: #7A4A2E;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: "Delius", cursive;
    color: #7A4A2E;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

section {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}


nav {
    position: fixed;
    top: 0;
    width: 100%;
    font-family: "Delius", cursive; 
    background-color: #6E9F5F;
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
}


#menu-toggle {
    display: none;
}

.logo {
    display: flex;
    align-items: flex-start;
    gap: 6px; 
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

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

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.nav-link:hover {
    color: #D03B2C;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
}

.hero {
    margin-top: 80px;
    padding: 4rem 2rem;
}

.hero h1 {
    font-size: 3rem;
    color: #D03B2C;
    margin-bottom: 1rem;
}

.hero p {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
    color: #D03B2C;
}

.cta-button {
    background: #5F7EB8;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    background: #6E9F5F;
}


.video-section {
    padding: 4rem 2rem;
}

.video-frame {
    width: 100%;
    max-width: 760px; 
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.video-frame #video {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border: none;
}

.features {
    padding: 4rem 2rem;
}

.features-vertical {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.feature-card {
    width: 1100px;
    height: 320px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.1);

    display: flex;
    align-items: center;
    gap: 40px;

    padding: 32px;
    animation: fadeUp 0.6s ease-out both;
}


.feature-card img {
    width: 280px;
    height: 280px;
    object-fit: contain;
    border-radius: 16px;
    transition: transform 0.35s cubic-bezier(.2,.9,.2,1);
    transform-origin: 50% 50%;
    will-change: transform;
    backface-visibility: hidden;
}

.feature-text {
    text-align: left;
    max-width: 650px;
}

.feature-text h3 {
    font-size: 2rem;
    color: #7A4A2E;
    margin-bottom: 0.7rem;
}

.feature-text p {
    font-size: 1.2rem;
    line-height: 1.6;
}

.table-section {
    padding: 4rem 2rem;
}

.table-container {
    max-width: 1000px;
    background: white;
    margin: 0 auto;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

#data-table {
    width: 100%;
    border-collapse: collapse;
}

#data-table thead {
    background: #5F7EB8;
    color: white;
}

#data-table th,
#data-table td {
    padding: 1rem;
    text-align: left;
}

tbody tr:hover {
    background: #FFF3D6;
}

.stock-unlimited {
    color: #2ECC71;
}

.stock-limited {
    color: #FFB347;
}

.stock-low {
    color: #E74C3C;
    font-weight: bold;
}

.contact-section {
    padding: 4rem 2rem;
}

.form-container {
    max-width: 600px;
    background: white;
    margin: auto;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.form-group {
    text-align: left;
    margin-bottom: 1.4rem;
}

label {
    font-weight: bold;
    color: #7A4A2E;
}

input,
textarea {
    width: 100%;
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    padding: 0.8rem;
    font-size: 1rem;
}

input:focus,
textarea:focus {
    border-color: #6E9F5F;
    outline: none;
}

footer {
    background: #D03B2C;
    color: white;
    padding: 3rem 2rem;
    margin-top: 3rem;
    text-align: center;
}

.footer-content {
    max-width: 1100px;
    margin: auto;
    display: flex;             
    gap: 2rem;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;            
}


.footer-section {
    flex: 1 1 220px;
    min-width: 200px;
}

.footer-section h3 {
    color: #FFFEF2;
    margin-bottom: 1rem;
}
.footer-section h3 {
    color: #FFFEF2;
    margin-bottom: 1rem;
}

.footer-section a {
    color: #FFFEF2;
    text-decoration: none;
}

.footer-section a:hover {
    color: #6E9F5F;
}


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

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

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #4A9B73;
    color: #CFEFE0;
}
.footer-bottom {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        margin-top: 2rem;
        padding-top: 1rem;
        border-top: 1px solid #4A9B73;
        color: #CFEFE0;
        flex-wrap: wrap;
}


@media (max-width: 700px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-section {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Wobble animation for card images (short, subtle) */

@keyframes wobble {
    0%   { transform: translateX(0) rotate(0deg) scale(1); }
    12%  { transform: translateX(-5px) rotate(-2.5deg) scale(1.02); }
    25%  { transform: translateX(5px) rotate(2.5deg) scale(1.02); }
    50%  { transform: translateX(-3px) rotate(-1.5deg) scale(1.01); }
    75%  { transform: translateX(3px) rotate(1.25deg) scale(1.005); }
    100% { transform: translateX(0) rotate(0deg) scale(1); }
}

/* apply wobble on hover of the card or image */
.feature-card:hover img,
.feature-card img:hover {
  animation: wobble 0.9s cubic-bezier(.22,.9,.3,1) both;
}

@media (max-width: 900px) {

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
    }

  
    #menu-toggle:checked ~ .nav-links {
        display: block;
        position: absolute;
        background: #6E9F5F;
        right: 0;
        top: 70px;
        width: 100%;
        padding: 1rem 0;
        text-align: center;
    }

    .nav-links li {
        margin: 10px 0;
    }


    .feature-card {
        flex-direction: column;
        width: 95%;
        height: auto;
        padding: 20px;
    }

    .feature-card img {
        width: 70%;
        height: auto;
    }

    .feature-text {
        text-align: center;
        max-width: 90%;
    }

  
    .video-frame {
        max-width: 100%;
    }
}