/* Custom Bike Theme Styles - Rugged Modern */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&family=Roboto:wght@300;400;700&display=swap');

:root {
    --color-bg-dark: #121212;
    --color-bg-card: #1E1E1E;
    --color-primary: #212121;
    /* Dark Grey */
    --color-accent: #D4AF37;
    /* Gold */
    --color-text-main: #E0E0E0;
    --color-text-muted: #A0A0A0;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background-color: var(--color-bg-dark);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: #fff;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #fff;
    text-shadow: 0 0 10px var(--color-accent);
}

/* Container */
.lb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.lb-hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.lb-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(18, 18, 18, 1) 100%);
}

.lb-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.lb-hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 20px;
    line-height: 1.1;
}

.lb-hero-subtitle {
    font-size: 1.5rem;
    color: var(--color-text-main);
    margin-bottom: 40px;
    font-weight: 300;
}

.lb-btn {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--color-accent);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 2px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.lb-btn:hover {
    background-color: #E64A19;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 87, 34, 0.4);
}

/* Section Common */
.lb-section {
    padding: 80px 0;
}

.lb-section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}

.lb-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--color-accent);
    margin: 15px auto 0;
}

.lb-section-header {
    text-align: center;
}

/* Category Grid */
.lb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.lb-card {
    background-color: var(--color-bg-card);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.lb-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lb-card-img {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.lb-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.lb-card-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.lb-card-excerpt {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.lb-card-link {
    margin-top: auto;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* About Page */
.lb-about-hero {
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.lb-about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(18, 18, 18, 0.7);
}

.lb-about-hero h1 {
    position: relative;
    z-index: 2;
    font-size: 4rem;
}

.lb-text-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--color-text-main);
}

/* Contact Page */
.lb-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.lb-form-group {
    margin-bottom: 20px;
}

.lb-form-label {
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-heading);
    color: var(--color-accent);
}

.lb-input,
.lb-textarea {
    width: 100%;
    padding: 12px;
    background-color: var(--color-bg-card);
    border: 1px solid #333;
    color: #fff;
    border-radius: 4px;
}

.lb-textarea {
    height: 150px;
    resize: vertical;
}

.lb-contact-info-item {
    margin-bottom: 30px;
}

.lb-contact-info-item h3 {
    color: var(--color-accent);
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .lb-hero-title {
        font-size: 3rem;
    }

    .lb-contact-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Feature Box */
.lb-feature-box {
    background: var(--color-bg-card);
    padding: 30px;
    border-radius: 4px;
    border-left: 3px solid var(--color-accent);
}

/* Logo Override - Targeting Phlox Site Title */
.site-title a,
.site-header .logo a {
    display: flex;
    align-items: center;
    width: auto;
    min-width: 280px;
    /* Slight increase for longer text */
    height: 60px;
    background: none !important;
    /* Ensure no background image */
    color: transparent !important;
    /* Hide original text color */
    font-size: 0 !important;
    /* Hide original text size */
    overflow: visible;
    text-indent: 0;
    /* logic reset */
    position: relative;
    text-decoration: none;
}

/* Hide any image tags inside the logo link */
.site-title a img,
.site-header .logo a img {
    display: none !important;
}

.site-title a::after,
.site-header .logo a::after {
    content: "HOPE PHOTOGRAPHIC";
    visibility: visible;
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);

    /* Restore Text Properties */
    font-size: 24px !important;
    line-height: 1;
    color: #212121 !important;
    /* Changed to Dark Grey for visibility on white header */
    font-family: 'Oswald', sans-serif;
    /* Fallback to literal font name to be safe */
    font-weight: 700;
    letter-spacing: 2px;
    white-space: nowrap;
    text-indent: 0;
}

.site-description {
    display: none;
    /* Hide tagline if present */
}