/*
Theme Name: Cam Cycle Harley Full Theme
Theme URI: https://camcyclellc.com
Author: Rick / ChatGPT
Description: Dark Harley-Davidson–style theme for Cam Cycle Parts and Service with slider, gallery, merch, and contact form.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: camcycle
*/

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background: #050505;
    color: #f0f0f0;
}

a {
    color: #ff7a1a;
    text-decoration: none;
}

a:hover {
    color: #ffae57;
    text-decoration: underline;
}

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

.site-header {
    background: #000;
    border-bottom: 3px solid #ff7a1a;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 50;
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-logo-img {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    border: 2px solid #ff7a1a;
    object-fit: cover;
}

.site-title-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.site-title {
    margin: 0;
    font-size: 1.5rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.site-title a {
    color: #ffffff;
    text-decoration: none;
}

.site-tagline {
    margin: 0;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #ff7a1a;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.main-nav a {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    color: #f0f0f0;
}

.main-nav a:hover {
    color: #ffae57;
}

.hero {
    position: relative;
    background: radial-gradient(circle at top, #333 0, #050505 55%);
    padding: 80px 20px 60px;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(255, 122, 26, 0.15), transparent 55%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 2.7rem;
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #ff7a1a;
}

.hero h2 {
    margin: 0 0 14px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #ffae57;
}

.hero p {
    margin: 0 auto;
    max-width: 700px;
    font-size: 1rem;
    color: #f5f5f5;
}

.button-primary {
    display: inline-block;
    margin-top: 24px;
    padding: 11px 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff7a1a, #ffae57);
    color: #111;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
}

.button-primary:hover {
    background: linear-gradient(135deg, #ffae57, #ffd08a);
    text-decoration: none;
}

.hero-slider-wrapper {
    margin-top: 40px;
    position: relative;
}

.hero-slider {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    border: 2px solid #222;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.75);
    max-height: 420px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-slide.active {
    opacity: 1;
    position: relative;
}

.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.slider-indicator {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #555;
}

.slider-indicator.active {
    background: #ff7a1a;
}

.section {
    padding: 40px 20px 15px;
    border-top: 1px solid #151515;
    background: #050505;
}

.section:nth-of-type(even) {
    background: #070707;
}

.section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 1.5rem;
    margin: 0;
    color: #ff7a1a;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.section-subtitle {
    margin: 0;
    font-size: 0.9rem;
    color: #ccc;
}

.services-list {
    list-style: none;
    margin: 6px 0 0;
    padding: 0;
}

.services-list li {
    margin-bottom: 6px;
    padding-left: 18px;
    position: relative;
    color: #e0e0e0;
    font-size: 0.98rem;
}

.services-list li::before {
    content: "◆";
    position: absolute;
    left: 0;
    top: 0;
    color: #ff7a1a;
    font-size: 0.7rem;
    transform: translateY(4px);
}

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
    gap: 32px;
    align-items: flex-start;
}

.card {
    background: radial-gradient(circle at top left, #202020, #050505);
    border-radius: 16px;
    padding: 18px 18px 16px;
    border: 1px solid #222;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.75);
}

.card h3 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #ffae57;
}

.card p {
    margin-top: 0;
    color: #e0e0e0;
    font-size: 0.96rem;
}

.contact-details p {
    margin: 4px 0;
    font-size: 0.98rem;
}

.contact-details strong {
    color: #ffae57;
}

.map-embed {
    width: 100%;
    min-height: 260px;
    border: 0;
    border-radius: 12px;
    margin-top: 10px;
}

.content-area {
    padding: 40px 20px 60px;
}

.content-area h1 {
    font-size: 1.9rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #ff7a1a;
    margin-top: 0;
    margin-bottom: 14px;
}

.content-area p {
    color: #e0e0e0;
    line-height: 1.6;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}

.gallery-grid-item {
    flex: 1 1 calc(33.333% - 8px);
    min-width: 200px;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid #222;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
    background: #111;
}

.gallery-grid-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease-out;
}

.gallery-grid-item:hover img {
    transform: scale(1.04);
}

.merch-note {
    font-size: 0.95rem;
    color: #d0d0d0;
    margin-bottom: 14px;
}

.contact-form {
    max-width: 520px;
}

.contact-form-row {
    margin-bottom: 14px;
}

.contact-form label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #ffae57;
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px 11px;
    border-radius: 10px;
    border: 1px solid #333;
    background: #0c0c0c;
    color: #f0f0f0;
    font-size: 0.95rem;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff7a1a;
    box-shadow: 0 0 0 1px #ff7a1a55;
}

.contact-success {
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    background: #103016;
    color: #c2f0c5;
    border: 1px solid #2f7a3a;
    font-size: 0.9rem;
}

.contact-error {
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    background: #3b0b0b;
    color: #ffdede;
    border: 1px solid #b32626;
    font-size: 0.9rem;
}

.site-footer {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    padding: 22px 10px 28px;
    border-top: 1px solid #151515;
    background: #020202;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .site-header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero {
        padding: 64px 16px 44px;
    }

    .hero h1 {
        font-size: 2.1rem;
    }

    .hero-slider-wrapper {
        margin-top: 28px;
    }

    .gallery-grid-item {
        flex: 1 1 calc(50% - 8px);
    }

    .two-column {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid-item {
        flex-basis: 100%;
    }

    .site-header-inner {
        gap: 10px;
    }
}
