/* ===================================
   FUDDS BURGER - Exact Replica CSS
   =================================== */

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

html, body {
    width: 100%;
    height: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background: white;
}

.container-wide {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===================================
   HERO HEADER SECTION
   =================================== */

.hero-header {
    background-color: rgba(255, 255, 255, 0.73);
    padding: 22px 40px;
    margin-bottom: -170px;
    position: relative;
    z-index: 1;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0;
}

.logo-image {
    flex: 0 0 24%;
    padding-right: 20px;
}

.logo-image img {
    width: 100%;
    height: auto;
    display: block;
    margin: 8px 0 0 0;
}

.logo-text {
    flex: 1;
    text-align: right;
    padding-right: 18px;
}

.logo-title {
    font-family: 'Fira Sans', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #54595f;
    line-height: 1.2;
    margin: 0;
}

.logo-tagline {
    font-family: 'Satisfy', cursive;
    font-size: 25px;
    margin: 8px 0 0 0;
    color: #333;
}

/* ===================================
   BANNER SECTION
   =================================== */

.banner-section {
    background-image: url("img/big-bold.jpg");
    background-size: cover;
    background-position: center;
    padding: 0;
    margin: 0;
    min-height: 532px;
    width: 100%;
}

/* ===================================
   MAIN CONTENT SECTION
   =================================== */

.main-content-section {
    background: transparent;
    background-image: linear-gradient(0deg, rgba(255,255,255,0.03) 100%, #ffffff 0%);
    margin-top: -114px;
    margin-bottom: -114px;
    padding: 0;
    position: relative;
}

.two-column {
    display: flex;
    gap: 0;
    width: 100%;
    padding: 0 40px;
}

.column-left {
    flex: 0 0 50%;
    padding-right: 20px;
}

.column-right {
    flex: 0 0 50%;
    padding-left: 20px;
}

/* ===================================
   BOX STYLES
   =================================== */

.box-rewards,
.box-catering,
.box-fudd,
.box-jobs {
    background-color: #ffffff;
    padding: 30px;
    margin: 15px 0;
    box-shadow: 3px 0px 10px 0px rgba(0,0,0,0.5);
    position: relative;
}

.box-rewards::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("img/speciatly-burger.jpg");
    background-position: center center;
    background-size: cover;
    opacity: 0.25;
    pointer-events: none;
}

.box-rewards > * {
    position: relative;
    z-index: 1;
}

.box-catering::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    background-image: url("img/collage.jpg");
    background-position: center center;
    background-size: cover;
    opacity: 0.19;
    mix-blend-mode: multiply;
    pointer-events: none;
}

.box-catering > * {
    position: relative;
    z-index: 1;
}

.box-fudd::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.69);
    background-image: url("img/fudd-burger.jpg");
    background-position: center center;
    background-size: cover;
    opacity: 0.33;
    pointer-events: none;
}

.box-fudd > * {
    position: relative;
    z-index: 1;
}

.box-jobs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.69);
    background-image: url("img/cook.jpg");
    background-position: top center;
    background-size: cover;
    opacity: 0.23;
    pointer-events: none;
}

.box-jobs > * {
    position: relative;
    z-index: 1;
}

.box-title {
    font-family: 'Rock Salt', cursive;
    font-size: 35px;
    color: #54595f;
    text-align: center;
    margin: 22px 0 10px 0;
    font-weight: 700;
    line-height: 1.2em;
}

.box-subtitle {
    color: #000000;
    text-align: center;
    margin: 0 0 15px 0;
}

.partner-item {
    font-family: 'Convergence', sans-serif;
    color: #54595f;
    font-size: 16px;
    margin: 5px 0 5px 37px;
    list-style: none;
    font-weight: normal;
}

.partner-item li {
    list-style: none;
    margin: 0;
}

.partner-item a {
    color: #54595f;
    text-decoration: none;
    font-weight: bold;
}

.partner-item a:hover {
    text-decoration: underline;
}

.btn-rewards {
    display: inline-block;
    padding: 10px 20px;
    background-color: #9ec555;
    color: white;
    text-decoration: none;
    text-align: center;
    font-size: 25px;
    font-weight: 900;
    border-radius: 5px;
    margin: 19px 0 0 0;
    border: none;
    cursor: pointer;
}

.btn-rewards:hover {
    opacity: 0.9;
}

.benefits-list {
    color: #000000;
    margin: 20px 0 20px 34px;
}

.benefits-list ul {
    list-style: none;
    margin: 10px 0;
}

.benefits-list li {
    margin: 5px 0;
}

.gallery-section {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.gallery-section figure {
    margin: 0;
    padding: 0;
}

.gallery-section img {
    width: 100%;
    max-width: 150px;
    height: auto;
    display: block;
}

.gallery-section a {
    display: inline-block;
}

/* ===================================
   CATERING BOX
   =================================== */

.catering-subtitle {
    font-family: 'Donegal One', serif;
    font-size: 27px;
    color: #872a19;
    text-align: center;
    margin: 10px 0;
    font-weight: 700;
}

.box-catering p {
    text-align: center;
    color: #000000;
    margin: 10px 0 20px 0;
}

.btn-catering {
    display: inline-block;
    padding: 10px 20px;
    background-color: #872b1a;
    color: white;
    text-decoration: none;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    border-radius: 5px;
    margin: 18px auto;
    border: none;
    cursor: pointer;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.btn-catering:hover {
    opacity: 0.9;
}

/* ===================================
   FUDD BOX
   =================================== */

.box-fudd p {
    text-align: center;
    color: #000000;
    margin: 10px 0 20px 0;
}

.btn-fudd {
    display: inline-block;
    padding: 10px 20px;
    background-color: #313e49;
    color: white;
    text-decoration: none;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    border-radius: 5px;
    margin: 18px auto;
    border: none;
    cursor: pointer;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.btn-fudd:hover {
    opacity: 0.9;
}

/* ===================================
   JOBS BOX
   =================================== */

.box-jobs p {
    text-align: center;
    color: #000000;
    margin: 10px 0;
}

.box-jobs p:first-of-type {
    margin: 10px 0 20px 0;
}

.box-jobs p:last-of-type {
    margin: 10px 0 0 0;
}

.btn-jobs {
    display: inline-block;
    padding: 10px 20px;
    background-color: #63acbd;
    color: white;
    text-decoration: none;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    border-radius: 5px;
    margin: 18px auto 0;
    border: none;
    cursor: pointer;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.btn-jobs:hover {
    opacity: 0.9;
}

/* ===================================
   FOOTER SECTION
   =================================== */

.footer-section {
    background-color: #54595f;
    padding: 50px 40px 30px;
    margin-top: 145px;
    color: #ffffff;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-left h6,
.footer-bottom h6 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.footer-right {
    display: flex;
    gap: 20px;
}

.social-icon {
    color: #ffffff;
    font-size: 24px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: transparent;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon i {
    font-size: 24px;
}

.social-icon:hover {
    color: #9ec555;
}

.footer-bottom h6 {
    font-size: 12px;
    line-height: 1.8;
    color: #ffffff;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1024px) {
    .two-column {
        flex-direction: column;
        padding: 0 20px;
    }

    .column-left,
    .column-right {
        flex: 1;
        padding: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .container-wide {
        padding: 0 20px;
    }

    .logo-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .logo-image {
        flex: 1;
        width: 100%;
        padding: 0;
        margin-bottom: 10px;
    }

    .logo-image img {
        width: 70%;
        margin: 0 auto;
    }

    .logo-text {
        text-align: center;
        padding: 0;
        margin: 0;
    }

    .hero-header {
        margin-bottom: 0;
    }

    .banner-section {
        min-height: 300px;
        margin-top: -5px;
    }

    .main-content-section {
        margin-top: 0;
        margin-bottom: 0;
    }

    .box-title {
        font-size: 28px;
        line-height: 1.2em;
    }

    .box-rewards,
    .box-catering,
    .box-fudd,
    .box-jobs {
        padding: 20px;
    }

    .partner-item {
        font-size: 14px;
    }

    .btn-rewards {
        font-size: 18px;
    }

    .btn-catering,
    .btn-fudd,
    .btn-jobs {
        font-size: 16px;
        padding: 8px 16px;
    }

    .gallery-section {
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 15px;
    }

    .gallery-section img {
        max-width: 100px;
        height: auto;
    }

    .footer-inner {
        flex-direction: column;
        gap: 15px;
    }

    .footer-left,
    .footer-right {
        width: 100%;
    }

    .footer-right {
        justify-content: center;
    }

    .footer-section {
        padding: 30px 20px;
        margin-top: 50px;
    }

    .footer-left h6,
    .footer-bottom h6 {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .container-wide {
        padding: 0 15px;
    }

    .hero-header {
        padding: 10px 15px;
    }

    .logo-title {
        font-size: 20px;
    }

    .logo-tagline {
        font-size: 16px;
    }

    .banner-section {
        min-height: 200px;
    }

    .two-column {
        padding: 0 10px;
    }

    .box-title {
        font-size: 20px;
    }

    .box-rewards,
    .box-catering,
    .box-fudd,
    .box-jobs {
        padding: 15px;
        margin: 10px 0;
    }

    .partner-item {
        font-size: 12px;
        margin: 2px 0;
    }

    .btn-rewards {
        font-size: 16px;
        padding: 8px 16px;
    }

    .btn-catering,
    .btn-fudd,
    .btn-jobs {
        font-size: 14px;
        padding: 8px 12px;
    }

    .benefits-list li {
        font-size: 12px;
    }

    .gallery-section {
        gap: 8px;
    }

    .gallery-section img {
        max-width: 80px;
    }

    .footer-section {
        padding: 20px 15px;
        margin-top: 30px;
    }

    .footer-left h6,
    .footer-bottom h6 {
        font-size: 11px;
        line-height: 1.5;
    }

    .social-icon {
        font-size: 20px;
    }
}
