/* ===================================
   Chattanooga Souvenirs – Custom overrides
====================================== */

/* nav text logo */
.cs-logo {
    font-family: var(--alt-font);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 1.2;
    color: var(--dark-gray);
    text-decoration: none;
    display: inline-block;
}
.cs-logo span {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--medium-gray);
    font-family: var(--primary-font);
}
.cs-logo:hover { color: var(--dark-gray); }

/* nav height — override clothing-store.css which reduces brand padding to 20px */
header .navbar-brand {
    padding: 30px 0 !important;
}
.navbar .navbar-nav .nav-link {
    padding-top: 14px !important;
    padding-bottom: 14px !important;
}
/* nav CTA — simple custom button, bypasses Crafto btn animation system */
.cs-nav-btn {
    display: inline-block;
    padding: 9px 20px;
    background: var(--dark-gray);
    color: var(--white) !important;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: var(--primary-font);
    white-space: nowrap;
    align-self: center;
    transition: opacity 0.2s;
}
.cs-nav-btn:hover { opacity: 0.8; color: var(--white) !important; }

/* hero */
.cs-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.cs-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.cs-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(40,30,20,0.35) 0%, rgba(20,15,10,0.72) 100%);
}
.cs-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 120px;
}

/* category cards */
.cs-category-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 3/4;
    display: block;
    text-decoration: none;
}
.cs-category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cs-category-card:hover img { transform: scale(1.05); }
.cs-category-card .cs-cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(30,20,10,0.75) 100%);
}
.cs-category-card .cs-cat-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    color: var(--white);
}
.cs-category-card .cs-cat-label h4 {
    font-family: var(--alt-font);
    font-size: 1.4rem;
    font-weight: 400;
    margin: 0 0 4px;
    line-height: 1.2;
    color: var(--white);
}
.cs-category-card .cs-cat-label p {
    font-size: 0.8rem;
    margin: 0;
    opacity: 0.85;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
}

/* hours table */
.cs-hours-table td { padding: 4px 12px 4px 0; font-size: 0.95rem; }
.cs-hours-table td:first-child { font-weight: 600; }

/* map wrapper */
.cs-map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    height: 400px;
}
.cs-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* about page feature icons */
.cs-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--extra-medium-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--dark-gray);
    flex-shrink: 0;
}

/* contact form */
.cs-contact-form .form-control {
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--extra-medium-gray);
    border-radius: 0;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--dark-gray);
}
.cs-contact-form .form-control:focus {
    box-shadow: none;
    border-bottom-color: var(--dark-gray);
}
.cs-contact-form textarea.form-control { resize: none; }

/* page hero (inner pages) */
.cs-page-hero {
    background: var(--dark-gray);
    padding: 130px 0 60px;
    text-align: center;
    color: var(--white);
}
.cs-page-hero h1 {
    font-family: var(--alt-font);
    font-weight: 400;
    letter-spacing: -1px;
    color: var(--white);
}
.cs-page-hero p { opacity: 0.7; margin: 0; }

/* footer nav links */
footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li a { color: rgba(245,242,238,0.55); font-size: 0.9rem; display: block; padding-bottom: 5px; text-decoration: none; transition: color 0.2s; }
footer ul li a:hover { color: var(--white); }

/* address block */
.cs-address-block { font-size: 0.92rem; line-height: 1.8; }

/* nav active state */
.navbar-nav .nav-link.active { color: var(--base-color) !important; }

/* ticker bg override */
.cs-ticker { background-color: var(--dark-gray); }

/* shop grid */
.cs-shop-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.cs-shop-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.cs-shop-card:hover img { transform: scale(1.04); }
.cs-shop-card-body { padding: 18px 0 0; }
.cs-shop-card-body h4 {
    font-family: var(--alt-font);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 4px;
    color: var(--dark-gray);
}
.cs-shop-card-body p { font-size: 0.88rem; color: var(--medium-gray); margin: 0; }

@media (max-width: 767px) {
    .cs-hero { min-height: 85vh; }
    .cs-page-hero { padding: 110px 0 40px; }
    .cs-map-wrapper { height: 280px; }
}
