/**
 * HuntingUSA Homepage Styles
 * Dark theme matching PBL design with Huntor gold accents
 */

/* Variables matching Huntor theme */
:root {
    --hunt-gold: #938a56;
    --hunt-gold-hover: #b5a96a;
    --hunt-dark: #151412;
    --hunt-darker: #0d0c0b;
    --hunt-gray: #888;
    --hunt-light-gray: #ccc;
}

/* Force dark theme on body - override Huntor defaults */
body,
body.custom-background,
body.page-template-template-huntingusa-home-php,
body.page-template-template-huntingusa-home {
    background-color: #151412 !important;
    background-image: none !important;
}

/* Override any wrapper backgrounds */
#page,
#content,
.site,
.site-content,
#primary,
.content-area,
main.site-main,
.wrap {
    background-color: transparent !important;
    background-image: none !important;
}

/* Hide Huntor theme page title if showing */
.page-title-bar,
.page-title-wrap {
    display: none !important;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hunt-hero {
    position: relative;
    min-height: 100vh;
    background-image: url('/wp-content/uploads/huntingusa-homepage/hero-hunter.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hunt-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hunt-hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.hunt-hero-title {
    font-family: 'American Captain', 'Huntor Heading', Arial, sans-serif;
    font-size: 6rem;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 8px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hunt-hero-subtitle {
    font-family: 'Huntor', Arial, sans-serif;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.hunt-hero-btn {
    display: inline-block;
    padding: 16px 40px;
    border: 2px solid var(--hunt-gold);
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Huntor', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.hunt-hero-btn:hover {
    background: var(--hunt-gold);
    color: #000;
}

.hunt-hero-btn span {
    margin-left: 10px;
}

/* Crosshair decorations */
.hunt-crosshair {
    position: absolute;
    width: 80px;
    height: 80px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='rgba(255,255,255,0.3)' stroke-width='2'/%3E%3Cline x1='50' y1='5' x2='50' y2='95' stroke='rgba(255,255,255,0.3)' stroke-width='1'/%3E%3Cline x1='5' y1='50' x2='95' y2='50' stroke='rgba(255,255,255,0.3)' stroke-width='1'/%3E%3Ccircle cx='50' cy='50' r='5' fill='rgba(255,255,255,0.5)'/%3E%3C/svg%3E");
    background-size: contain;
    opacity: 0.6;
    z-index: 1;
}

.hunt-crosshair-1 {
    top: 20%;
    left: 10%;
}

.hunt-crosshair-2 {
    top: 15%;
    right: 8%;
}

/* Hero dots */
.hunt-hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.hunt-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.hunt-dot.active {
    background: #ffffff;
}

/* ========================================
   CATEGORY BOXES
   ======================================== */

.hunt-categories {
    background: var(--hunt-dark);
    padding: 80px 0;
}

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

.hunt-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

@media (max-width: 900px) {
    .hunt-categories-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.hunt-category-box {
    text-align: center;
    padding: 20px;
}

.hunt-category-icon {
    width: 80px;
    height: 80px;
    border: 2px solid var(--hunt-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.hunt-category-icon svg {
    width: 32px;
    height: 32px;
    color: var(--hunt-gold);
}

.hunt-category-title {
    font-family: 'American Captain', 'Huntor Heading', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hunt-category-desc {
    font-family: 'Huntor', Arial, sans-serif;
    font-size: 14px;
    color: var(--hunt-gray);
    line-height: 1.7;
}

/* ========================================
   EXPERIENCE SECTION
   ======================================== */

.hunt-experience {
    background: var(--hunt-darker);
    padding: 100px 0;
}

.hunt-experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 900px) {
    .hunt-experience-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.hunt-experience-image {
    position: relative;
}

.hunt-experience-image img {
    max-width: 100%;
    height: auto;
}

.hunt-experience-circle {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: -1;
}

.hunt-experience-label {
    font-family: 'American Captain', 'Huntor Heading', Arial, sans-serif;
    font-size: 1rem;
    color: var(--hunt-gold);
    letter-spacing: 3px;
    display: block;
    margin-bottom: 10px;
}

.hunt-experience-title {
    font-family: 'American Captain', 'Huntor Heading', Arial, sans-serif;
    font-size: 3rem;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hunt-experience-divider {
    width: 60px;
    height: 3px;
    background: var(--hunt-gold);
    margin-bottom: 30px;
}

@media (max-width: 900px) {
    .hunt-experience-divider {
        margin: 0 auto 30px;
    }
}

.hunt-experience-content p {
    font-family: 'Huntor', Arial, sans-serif;
    font-size: 15px;
    color: var(--hunt-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.hunt-experience-content a {
    color: var(--hunt-gold);
    text-decoration: none;
    transition: color 0.2s;
}

.hunt-experience-content a:hover {
    color: var(--hunt-gold-hover);
}

/* ========================================
   RECENT BLOGS SECTION
   ======================================== */

.hunt-blogs {
    background: var(--hunt-dark);
    padding: 100px 0;
    text-align: center;
}

.hunt-section-label {
    font-family: 'American Captain', 'Huntor Heading', Arial, sans-serif;
    font-size: 1rem;
    color: var(--hunt-gold);
    letter-spacing: 3px;
    display: block;
    margin-bottom: 10px;
}

.hunt-section-title {
    font-family: 'American Captain', 'Huntor Heading', Arial, sans-serif;
    font-size: 3rem;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 60px;
}

.hunt-blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: left;
}

@media (max-width: 900px) {
    .hunt-blogs-grid {
        grid-template-columns: 1fr;
    }
}

.hunt-blog-card {
    background: var(--hunt-darker);
    position: relative;
}

.hunt-blog-card-image-link {
    display: block;
    overflow: hidden;
}

.hunt-blog-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.hunt-blog-card:hover .hunt-blog-card-image {
    transform: scale(1.05);
}

.hunt-blog-card-icon {
    width: 60px;
    height: 60px;
    background: var(--hunt-darker);
    border: 2px solid var(--hunt-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -30px auto 0;
    position: relative;
    z-index: 1;
}

.hunt-blog-card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--hunt-gold);
}

.hunt-blog-card-content {
    padding: 25px 30px 35px;
    text-align: center;
}

.hunt-blog-card-title {
    font-family: 'American Captain', 'Huntor Heading', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.hunt-blog-card-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s;
}

.hunt-blog-card-title a:hover {
    color: var(--hunt-gold);
}

.hunt-blog-card-excerpt {
    font-family: 'Huntor', Arial, sans-serif;
    font-size: 14px;
    color: var(--hunt-gray);
    line-height: 1.7;
    margin-bottom: 25px;
}

.hunt-blog-card-btn {
    display: inline-block;
    padding: 14px 28px;
    border: 2px solid var(--hunt-gold);
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    font-family: 'American Captain', 'Huntor Heading', Arial, sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.hunt-blog-card-btn:hover {
    background: var(--hunt-gold);
    color: #000;
}

/* ========================================
   FEATURED STORIES SECTION
   ======================================== */

.hunt-stories {
    position: relative;
    background-image: url('/wp-content/uploads/huntingusa-homepage/stories-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    text-align: center;
}

.hunt-stories-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
}

.hunt-stories .hunt-container {
    position: relative;
    z-index: 1;
}

.hunt-stories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

@media (max-width: 700px) {
    .hunt-stories-grid {
        grid-template-columns: 1fr;
    }
}

.hunt-story-link {
    display: block;
    text-decoration: none;
    padding-bottom: 15px;
    position: relative;
}

.hunt-story-title {
    font-family: 'American Captain', 'Huntor Heading', Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.hunt-story-link:hover .hunt-story-title {
    color: var(--hunt-gold);
}

.hunt-story-underline {
    display: block;
    height: 2px;
    background: var(--hunt-gold);
    width: 100%;
}

/* ========================================
   FLOATING DEALS BUTTON
   ======================================== */

.hunt-deals-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: transparent;
    border: 2px solid var(--hunt-gold);
    color: var(--hunt-gold);
    text-decoration: none;
    font-family: 'Huntor', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    z-index: 999;
}

.hunt-deals-btn:hover {
    background: var(--hunt-gold);
    color: #000;
}

.hunt-deals-btn svg {
    fill: currentColor;
}

/* ========================================
   RESPONSIVE HERO
   ======================================== */

@media (max-width: 768px) {
    .hunt-hero-title {
        font-size: 3rem;
        letter-spacing: 4px;
    }

    .hunt-hero-subtitle {
        font-size: 1rem;
    }

    .hunt-crosshair {
        display: none;
    }

    .hunt-experience-title {
        font-size: 2rem;
    }

    .hunt-section-title {
        font-size: 2rem;
    }
}
