
/* =========================
   GENERAL
========================= */

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, "Arial Nova", sans-serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
}

a {
    text-decoration: none;
}

/* =========================
   LOGO & ACCOUNT LINKS
========================= */

.logo {
    width: 150px;
    max-width: 100%;
    height: auto;
}

.account-links a {
    color: #5A1455;
    font-weight: bold;
    margin-left: 20px;
}

.account-links a:hover {
    color: #4d184a;
    text-decoration: underline;
}

/* =========================
   NAVIGATION
========================= */

.navbar-custom {
    background-color: #4d184a;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.navbar-custom .nav-link {
    color: white;
    font-weight: 600;
    margin: 0 10px;
    transition: 0.3s;
}

.navbar-custom .nav-link:hover {
    color: #e4c7ea;
}

.navbar-custom .nav-link.active {
    color: white;
}

/* =========================
   HERO BANNERS
========================= */

/* Shared Hero Styles */

.hero-content,
.about-hero-content,
.page-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border-radius: 25px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    color: white;

    padding: 40px;
}

/* Home */

.hero-content {
    min-height: 550px;

    background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url("hero.image.jpg");
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin-bottom: 30px;
}

/* About */

.about-hero-content {
    min-height: 350px;

    background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url("hero.image.jpg");
}

/* Menu, Services & Offers */

.page-banner {
    min-height: 300px;

    background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url("hero.image.jpg");
}

.about-hero-content h1,
.page-banner h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.about-hero-content p,
.page-banner p {
    max-width: 700px;
    font-size: 1.1rem;
}

/* =========================
   BUTTONS
========================= */

.btn-quote {
    background-color: #5A1455;
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-quote:hover {
    background-color: #4d184a;
    color: white;
    transform: translateY(-2px);
}

.btn-quote:focus {
    box-shadow: 0 0 0 0.2rem rgba(90,20,85,0.3);
}

/* =========================
   CARDS
========================= */

.catering-card,
.feature-box,
.contact-card,
.form-container,
.content-card {
    background: white;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-box,
.contact-card,
.form-container,
.content-card {
    padding: 35px;
}

.catering-card {
    border: none;
    overflow: hidden;
    transition: 0.3s;
}

.catering-card:hover,
.feature-box:hover,
.content-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.catering-card img {
    height: 250px;
    object-fit: cover;
}

.catering-card h4,
.feature-box h3,
.feature-box h4,
.form-container h1,
.form-container h2,
.contact-card h3 {
    color: #5A1455;
}

/* =========================
   FORMS
========================= */

.form-container {
    max-width: 600px;
    margin: auto;
}

.form-control,
.form-select {
    border-radius: 12px;
    padding: 12px;
}

.form-control:focus,
.form-select:focus {
    border-color: #5A1455;
    box-shadow: 0 0 0 0.2rem rgba(90,20,85,0.25);
}

/* =========================
   CONTACT PAGE
========================= */

.map-container iframe {
    border-radius: 20px;
}

/* =========================
   MENU ACCORDION
========================= */

.accordion-item {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.accordion-button:not(.collapsed) {
    background-color: #5A1455;
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
}

/* =========================
   OFFERS
========================= */

.offer-badge {
    display: inline-block;
    background-color: #5A1455;
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* =========================
   FOOTER
========================= */

footer {
    background-color: #5A1455;
    color: white;
    margin-top: 50px;
}

footer p {
    margin: 0;
}

.social-icons img {
    width: 35px;
    height: 35px;
    margin-left: 15px;
    transition: 0.3s;
}

.social-icons img:hover {
    transform: scale(1.15);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

    .hero-content {
        min-height: 450px;
    }

    .page-banner h1,
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {

    .account-links {
        text-align: center;
    }

    .hero-content {
        min-height: 400px;
        padding: 30px 20px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .about-hero-content,
    .page-banner {
        min-height: 220px;
        padding: 30px 20px;
    }

    .about-hero-content h1,
    .page-banner h1 {
        font-size: 2rem;
    }

    .feature-box,
    .contact-card,
    .form-container,
    .content-card {
        padding: 25px;
    }

    .social-icons {
        margin-top: 20px;
    }

    .social-icons img {
        margin: 0 8px;
    }
}

@media (max-width: 576px) {

    .hero-content {
        min-height: 350px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .btn-quote {
        padding: 12px 24px;
    }
}