* {
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 50px;
}

h2 {
    font-size: 45px;
}

h3 {
    font-size: 25px;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
}

:root {
    --logo-color: #FE7300;
    /* ======= Brand Color System ======= */
    --primary-color: #ff7b00;
    /* Vibrant food orange */
    --secondary-color: #b34700;
    /* Dark roasted orange (contrast) */
    --accent-color: #ffb347;
    /* Light orange accent for highlights */

    /* ======= Text & Background ======= */
    --background-color: #fffaf3;
    /* Warm creamy white background */
    --text-color: #2b2b2b;
    /* Deep neutral text for readability */
    --text-warning: #ff3b3b;
    /* Bold red for alerts */
    --text-success: #2ecc71;
    /* Fresh green for success messages */

    /* ======= Borders & Cards ======= */
    --border-color: #e6d5c3;
    /* Soft beige border */
    --card-background: #ffffff;
    /* Clean card background */
    --card-shadow: rgba(255, 123, 0, 0.2);
    /* Subtle orange-tinted shadow */

    /* ======= Buttons ======= */
    --button-text: #fff;
    /* White text for contrast */
    --button-cancel: #ff4d4d;
    /* Strong cancel red */
    --button-active: #ffa41b;
    /* Highlighted orange active button */
    --button-hover: #e56700;
    /* Slightly darker hover state */

    /* ======= Button Sizes ======= */
    --button-height-large: 60px;
    --button-height-medium: 40px;
    --button-height-small: 25px;
}

.footer {
    background-color: #121212;
    color: #fff;
    padding: 60px 40px 30px;

}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1300px;
    margin: auto;
    gap: 40px;
}

/* Logo Section */
.footer-logo img {
    height: 60px;
    margin-bottom: 15px;
}

.footer-tagline {
    width: 100%;
    font-size: 16px;
    color: #f7f7f7;
    max-width: 260px;
    line-height: 1.5;

}

/* Section Titles */
.footer-section h3 {
    font-size: 20px;
    color: var(--logo-color);
    margin-bottom: 15px;
    font-weight: 600;
}

/* Links */
.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
    font-size: 15px;
}

.footer-bottom a {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 992px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 25px;
    }

    .footer-tagline {
        max-width: 100%;
    }
}

@media (max-width:600px) {
    h1 {
        font-size: 20px;
    }

    h2 {
        font-size: 18px;
    }

    h3 {
        font-size: 16px;
    }

    .footer{
        padding: 10px;
    }
    .footer-logo {
        width: 100%;
       
        margin-left: 0px;
    }
    .footer-logo img{
        height: 40px;
    }
}