:root {
    --gc-red:    #D9400A;
    --gc-orange: #F07030;
    --gc-light:  #FDF1EB;
    --gc-dark:   #1A1A1A;
}

* { box-sizing: border-box; }

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #fff;
    color: #333;
}

/* ── NAVBAR ── */
.navbar {
    background: linear-gradient(135deg, var(--gc-red) 0%, var(--gc-orange) 100%);
    box-shadow: 0 2px 12px rgba(0,0,0,.25);
    padding: 0.6rem 1.5rem;
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.75rem;
    color: #fff !important;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.navbar-brand img {
    height: 54px;
    width: auto;
    object-fit: contain;
}
.navbar-brand span {
    line-height: 1.15;
}
.navbar-brand small {
    display: block;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 2px;
    opacity: 0.88;
}
.navbar-nav .nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,.85) !important;
    padding: 0.5rem 1rem;
    transition: color .15s;
}
.navbar-nav .nav-link:hover {
    color: #fff !important;
}
.navbar-toggler {
    border-color: rgba(255,255,255,.5);
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2C255%2C255%2C0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── HERO ── */
.hero {
    position: relative;
    width: 100%;
    max-height: 520px;
    overflow: hidden;
}
.hero img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(217,64,10,.18) 0%,
        rgba(26,26,26,.52) 100%
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 2.5rem;
}
.hero-tagline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(1.25rem, 3vw, 2rem);
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,.55);
    letter-spacing: 1px;
    text-align: center;
    padding: 0 1rem;
}
.hero-divider {
    width: 60px;
    height: 4px;
    background: var(--gc-orange);
    border-radius: 2px;
    margin: 0.75rem auto 0;
}

/* ── SECTION HEADINGS ── */
.section-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.65rem;
    color: var(--gc-red);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    margin-bottom: 0.4rem;
}
.section-heading::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--gc-orange);
    border-radius: 2px;
    margin-top: 6px;
}

/* ── ABOUT ── */
.about-section {
    background: #fff;
    padding: 4rem 0 3rem;
}
.about-text {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #444;
    white-space: pre-line;
}
.facebook-btn {
    background: linear-gradient(135deg, var(--gc-red) 0%, var(--gc-orange) 100%);
    border: none;
    border-radius: 50px;
    padding: 0.65rem 1.8rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform .18s, box-shadow .18s;
    box-shadow: 0 4px 14px rgba(217,64,10,.35);
}
.facebook-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217,64,10,.45);
    color: #fff;
}

/* ── CAROUSEL SECTION ── */
.gallery-section {
    background: var(--gc-light);
    padding: 4rem 0;
}
.carousel-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,.18);
    position: relative;
}
#gcCarousel .carousel-inner {
    border-radius: 16px;
}
#gcCarousel .carousel-item img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center;
}
#gcCarousel .carousel-control-prev,
#gcCarousel .carousel-control-next {
    width: 48px;
    height: 48px;
    background: rgba(217,64,10,.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    margin: 0 12px;
    opacity: 1;
    transition: background .18s;
}
#gcCarousel .carousel-control-prev:hover,
#gcCarousel .carousel-control-next:hover {
    background: var(--gc-red);
}
#gcCarousel .carousel-control-prev-icon,
#gcCarousel .carousel-control-next-icon {
    width: 18px;
    height: 18px;
}
#gcCarousel .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255,255,255,.6);
    border: none;
    transition: background-color .2s;
}
#gcCarousel .carousel-indicators .active {
    background-color: var(--gc-orange);
}

/* ── FOOTER ── */
footer {
    background: linear-gradient(135deg, var(--gc-dark) 0%, #2e2e2e 100%);
    color: #ccc;
    padding: 3rem 0 1.5rem;
}
footer .footer-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.25rem;
    color: var(--gc-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
}
footer .footer-logo {
    height: 52px;
    opacity: 0.85;
    margin-bottom: 0.75rem;
}
footer .footer-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gc-orange);
    margin-bottom: 0.5rem;
}
footer p, footer address {
    font-size: 0.9rem;
    line-height: 1.8;
    margin: 0;
    font-style: normal;
}
footer a { color: var(--gc-orange); text-decoration: none; }
footer a:hover { text-decoration: underline; }
footer .footer-divider {
    border-color: rgba(255,255,255,.1);
    margin: 2rem 0 1rem;
}
footer .footer-bottom {
    font-size: 0.78rem;
    color: #666;
    text-align: center;
}

/* ── SMOOTH SCROLL OFFSET (sticky navbar) ── */
[id] {
    scroll-margin-top: 70px;
}

/* ── RESPONSIVE ── */
@media (max-width: 576px) {
    .hero img { height: 260px; }
    #gcCarousel .carousel-item img { height: 240px; }
    .about-section { padding: 2.5rem 0 2rem; }
    .gallery-section { padding: 2.5rem 0; }
}
