:root {
    /* CCD's real brand palette is a bold saturated red on white/black,
       not maroon+gold. Adjust these variables freely to taste. */
    --ccd-maroon: #d61820;       /* primary brand red */
    --ccd-maroon-dark: #a30f16;  /* darker red for hover/footer */
    --ccd-cream: #ffffff;        /* CCD uses white/light-grey backgrounds, not cream */
    --ccd-gold: #1a1a1a;         /* accent used for CTAs/text — near-black, not gold */
    --ccd-text: #1a1a1a;
    --ccd-white: #ffffff;
}

* { box-sizing: border-box; }

.ccd-clone-body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--ccd-text);
    background: var(--ccd-cream);
}

.ccd-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utility bar */
.ccd-utility-bar {
    background: #1a1a1a;
    color: #cfcfcf;
    font-size: 0.78rem;
}
.ccd-utility-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 20px;
}
.ccd-utility-links a { color: #cfcfcf; text-decoration: none; }
.ccd-utility-links a:hover { color: #ffffff; }

/* Navbar */
.ccd-navbar {
    background: var(--ccd-maroon);
    position: sticky;
    top: 0;
    z-index: 100;
}
.ccd-navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
}
.ccd-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ccd-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
}
.ccd-logo img { height: 34px; width: 34px; }
.ccd-nav-links { display: flex; gap: 24px; }
.ccd-nav-links a {
    color: var(--ccd-cream);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}
.ccd-nav-links a:hover { color: #ffe0b2; }
.ccd-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--ccd-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero */
.ccd-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: var(--ccd-maroon);
    color: var(--ccd-white);
    text-align: center;
}
.ccd-hero-content { position: relative; z-index: 2; width: 100%; }
.ccd-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 2.6rem;
    margin-bottom: 16px;
}
.ccd-hero p { font-size: 1.15rem; margin-bottom: 28px; opacity: 0.9; }

.ccd-btn {
    display: inline-block;
    background: var(--ccd-maroon);
    color: var(--ccd-white);
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.15s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}
.ccd-btn:hover { background: var(--ccd-maroon-dark); transform: translateY(-2px); }
.ccd-btn-outline {
    background: transparent;
    border: 2px solid var(--ccd-maroon);
    color: var(--ccd-maroon);
}
.ccd-btn-outline:hover { background: var(--ccd-maroon); color: var(--ccd-white); }

/* Sections */
.ccd-section { padding: 70px 0; }
.ccd-section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1.9rem;
    text-align: center;
    color: var(--ccd-maroon);
    margin-bottom: 8px;
}
.ccd-section-subtitle {
    text-align: center;
    opacity: 0.75;
    margin-bottom: 40px;
}

/* Menu grid */
.ccd-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 28px;
}
.ccd-menu-card {
    background: var(--ccd-white);
    border-radius: 14px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(111, 29, 27, 0.08);
}
a.ccd-blog-card {
    background: var(--ccd-white);
    border-radius: 14px;
    padding: 18px;
    text-align: left;
    box-shadow: 0 6px 18px rgba(111, 29, 27, 0.08);
    display: block;
    text-decoration: none;
    color: var(--ccd-text);
    transition: transform 0.15s ease;
}
a.ccd-blog-card:hover { transform: translateY(-3px); }
a.ccd-blog-card h3 { margin: 8px 0 6px; font-size: 1.05rem; color: var(--ccd-maroon); }
a.ccd-blog-card p { font-size: 0.9rem; opacity: 0.75; margin: 0; }
.ccd-menu-card-img {
    height: 140px;
    border-radius: 10px;
    background-color: #eee;
    background-size: cover;
    background-position: center;
    margin-bottom: 14px;
}
.ccd-menu-card h3 { margin: 8px 0 6px; font-size: 1.05rem; }
.ccd-menu-card p { font-size: 0.9rem; opacity: 0.75; min-height: 40px; }
.ccd-price { font-weight: 700; color: var(--ccd-maroon); }

/* About */
.ccd-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.ccd-about-img {
    height: 320px;
    border-radius: 16px;
    background-color: #eee;
    background-size: cover;
    background-position: center;
}
.ccd-about-text p { line-height: 1.7; margin-bottom: 24px; }

/* Locate */
.ccd-locate { background: var(--ccd-white); text-align: center; }
.ccd-locate-box {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.ccd-locate-input {
    padding: 12px 16px;
    border-radius: 30px;
    border: 1px solid #ddd;
    width: 320px;
    max-width: 80vw;
}
.ccd-locate-note { font-size: 0.85rem; opacity: 0.6; }

/* Footer */
.ccd-footer { background: var(--ccd-maroon-dark); color: var(--ccd-cream); padding: 50px 0 0; }
.ccd-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding-bottom: 30px;
}
.ccd-footer h3, .ccd-footer h4 { color: #ffffff; margin-bottom: 12px; }
.ccd-footer ul { list-style: none; padding: 0; margin: 0; }
.ccd-footer ul li { margin-bottom: 8px; }
.ccd-footer a { color: var(--ccd-cream); text-decoration: none; }
.ccd-footer a:hover { color: #ffe0b2; }
.ccd-footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 16px 0;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .ccd-nav-links { display: none; }
    .ccd-nav-toggle { display: block; }
    .ccd-about-grid { grid-template-columns: 1fr; }
    .ccd-hero h1 { font-size: 2.1rem; }
}
