/* ═══════════════════════════════════════════════
   CORAL COAST KEBABS — COMPLETE CONSOLIDATED STYLESHEET
   All styles from styles.css + shared.css merged into one file
═══════════════════════════════════════════════ */

:root {
    --deep: #071828;
    --navy: #0d2b50;
    --ocean: #1565a8;
    --teal: #1a9eb8;
    --sky: #37c6d0;
    --flame: #d94217;
    --orange: #f06325;
    --gold: #f5c842;
    --sand: #fdf0d5;
    --white: #ffffff;
    --muted: rgba(255, 255, 255, 0.72);
    --line: rgba(245, 200, 66, 0.2);
    --card: rgba(21, 101, 168, 0.09);
    --border: rgba(55, 198, 208, 0.18);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "DM Sans", sans-serif;
    background:
        radial-gradient(circle at 85% 10%, rgba(240, 99, 37, 0.14), transparent 40%),
        radial-gradient(circle at 10% 85%, rgba(26, 158, 184, 0.18), transparent 42%),
        linear-gradient(170deg, #071a2c 0%, #091528 60%, #040d18 100%);
    color: var(--white);
    min-height: 100vh;
}

::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-thumb {
    background: var(--teal);
    border-radius: 8px;
}

.top-strip {
    background: linear-gradient(90deg, var(--flame), #eb6a24);
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.3px;
    padding: 8px 14px;
}

.navbar {
    background: rgba(4, 15, 30, 0.92) !important;
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(10px);
    transition: all 0.25s ease;
}

.navbar.scrolled {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
    background: rgba(4, 15, 30, 0.98) !important;
}

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--deep);
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold), #ffe083);
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 1px;
}

.brand-copy {
    line-height: 1;
}

.brand-copy .main {
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 1.6px;
    font-size: 1.2rem;
}

.brand-copy .sub {
    color: var(--gold);
    letter-spacing: 1.9px;
    font-size: 0.65rem;
    text-transform: uppercase;
}

.nav-link {
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 0.86rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-weight: 700;
    margin-left: 8px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold) !important;
}

.btn-main {
    border: 0;
    border-radius: 999px;
    padding: 12px 24px;
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
    color: #fff;
    background: linear-gradient(135deg, var(--flame), var(--orange));
    box-shadow: 0 10px 24px rgba(217, 66, 23, 0.35);
}

.btn-main:hover {
    color: #fff;
    transform: translateY(-2px);
}

.btn-alt {
    border: 2px solid var(--gold);
    border-radius: 999px;
    padding: 10px 24px;
    font-weight: 800;
    text-decoration: none;
    color: var(--gold);
}

.btn-alt:hover {
    color: var(--deep);
    background: var(--gold);
}

.page-hero {
    padding-top: 130px;
    padding-bottom: 80px;
}

.hero-kicker {
    text-transform: uppercase;
    letter-spacing: 2.7px;
    font-size: 0.72rem;
    color: var(--sky);
    border: 1px solid rgba(55, 198, 208, 0.5);
    padding: 6px 14px;
    border-radius: 999px;
    display: inline-block;
    font-weight: 800;
}

.hero-title {
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 2px;
    line-height: 0.95;
    font-size: clamp(3rem, 9vw, 6rem);
    margin-top: 14px;
}

.hero-title span {
    color: var(--gold);
}

.hero-text {
    color: var(--muted);
    max-width: 620px;
    line-height: 1.7;
}

.panel {
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(21, 101, 168, 0.13), rgba(26, 158, 184, 0.06));
    padding: 26px;
    height: 100%;
}

.section {
    padding: 72px 0;
}

.section-title {
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 1.5px;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
}

.section-title span {
    color: var(--gold);
}

.card-tile {
    border: 1px solid rgba(55, 198, 208, 0.26);
    border-radius: 18px;
    padding: 22px;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
}

.card-tile h4 {
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 800;
}

.card-tile p,
.copy {
    color: var(--muted);
    line-height: 1.65;
}

.list-check {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-check li {
    margin-bottom: 10px;
    color: var(--muted);
}

.list-check i {
    color: var(--gold);
    margin-right: 8px;
}

.menu-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.menu-item {
    border: none;
    border-radius: 0;
    padding: 8px 0;
    background: transparent;
    display: block;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item>div:first-child {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 2px;
}

.menu-item h6 {
    margin: 0;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex: 1;
}

.menu-item p {
    margin: 2px 0 0 10px;
    color: var(--muted);
    font-size: 0.8rem;
}

.price {
    color: var(--gold);
    font-weight: 700;
    font-family: "DM Sans", sans-serif;
    letter-spacing: 0;
    font-size: 0.95rem;
    white-space: nowrap;
    padding-top: 0;
}

/* Kebab table style */
.kebab-table {
    width: 100%;
}

.kebab-table-header {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 20px;
    margin-bottom: 8px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    color: var(--gold);
    padding-bottom: 6px;
    border-bottom: 2px solid rgba(245, 200, 66, 0.3);
}
/* Meat Box Table style */
.meat-box-table {
    width: 100%;
}

.meat-box-header {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    gap: 12px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--line);
}

.meat-box-header > div {
    color: var(--muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-weight: 600;
    text-align: center;
}

.meat-box-header > div:first-child {
    text-align: left;
}

.meat-box-row {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    align-items: center;
}

.meat-box-row:last-child {
    border-bottom: none;
}

.meat-box-row > div:first-child {
    text-align: left;
}

.meat-box-row h6 {
    margin: 0;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meat-box-row .price {
    text-align: center;
}

.kebab-table-header>div:first-child {
    min-width: 0;
}

.kebab-table-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 20px;
    padding: 8px 0;
    align-items: start;
}

.kebab-table-row>div:first-child {
    min-width: 0;
}

.kebab-table-row h6 {
    margin: 0;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.kebab-table-row p {
    margin: 2px 0 0 0;
    color: var(--muted);
    font-size: 0.8rem;
}

.kebab-table-row .price {
    text-align: right;
    min-width: 70px;
}

.contact-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 14px;
}

.contact-row i {
    color: var(--gold);
    margin-top: 4px;
}

.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 28px 0;
    margin-top: 48px;
    color: rgba(255, 255, 255, 0.62);
}

.map-wrap iframe {
    border: 0;
    width: 100%;
    min-height: 330px;
    border-radius: 16px;
}

.form-control,
.form-control:focus,
textarea.form-control {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    box-shadow: none;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.btn-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 12px 24px;
    font-weight: 800;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.btn-wa:hover {
    background: #1ebe5a;
    color: #fff;
    transform: translateY(-2px);
}

.btn-wa.w-100 {
    width: 100%;
    box-sizing: border-box;
}

.wa-float {
    position: fixed;
    bottom: 26px;
    right: 26px;
    z-index: 9999;
    background: #25D366;
    color: #fff;
    border-radius: 999px;
    padding: 14px 22px;
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 9px;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
    transition: transform 0.2s, box-shadow 0.2s;
    animation: waPulse 3s infinite;
}

.wa-float:hover {
    transform: scale(1.06);
    box-shadow: 0 12px 36px rgba(37, 211, 102, 0.65);
    color: #fff;
}

.wa-float i {
    font-size: 1.3rem;
}

@keyframes waPulse {

    0%,
    100% {
        box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
    }

    50% {
        box-shadow: 0 8px 44px rgba(37, 211, 102, 0.75), 0 0 0 8px rgba(37, 211, 102, 0.12);
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        margin-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 10px;
    }

    .page-hero {
        padding-top: 110px;
    }
}