/* --- 1. VARIABLES & RESET --- */
:root {
    --bg-dark: #1a1a1b;
    --card-tan: #b89b74;
    --ink-dark: #1a1a1b;
    --accent: #b89b74;
}

body {
    margin: 0;
    background-color: #1a1a1b;
    color: #e2e2d5;
    font-family: 'Inter', sans-serif;
}

/* --- 2. HEADER & NAVIGATION --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: #121212;
    border-bottom: 1px solid #333;
}

.nav-logo {
    height: 45px;
}

.nav-links a {
    color: #e2e2d5;
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero {
    padding: 100px 20px;
    text-align: center;
    background: #151516;
    /* Dark background to make the tan accents pop */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-brand {
    margin-bottom: 40px;
}

.hero-logo {
    max-width: 250px;
    /* Large enough to be the anchor, not so big it's a billboard */
    height: auto;
    filter: brightness(1.1) contrast(1.1);
    /* Keeps the logo sharp on the dark background */
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #e2e2d5;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.hero-content {
    max-width: 700px;
    /* Keeps the lines from getting too long to read comfortably */
    margin: 0 auto;
}

.hero-mission {
    color: var(--accent);
    /* That nice tan/gold color */
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 25px;
}

.hero-details {
    color: #a0a0a0;
    /* Subtle grey for the technical explanation */
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.hero-tagline {
    color: #e2e2d5;
    font-size: 1.1rem;
    font-style: italic;
    border-top: 1px solid rgba(184, 155, 116, 0.3);
    padding-top: 20px;
}

/* --- 3. THE HANGTAG CARD --- */
/* --- 3. THE HANGTAG CARD --- */
.container {
    padding: 60px 10%;
    display: flex;
    flex-direction: column;
    /* This stacks the header on top of the card */
    align-items: center;
    /* This centers the card and header */
}

/* Add this to style the 'Available Now' text properly */
.section-label {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.5rem;
    color: #e2e2d5;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.guitar-card {
    background-color: var(--card-tan) !important;
    color: var(--ink-dark);
    width: 350px;
    border-radius: 12px;
    box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    margin-bottom: 50px;
}

/* The Eyelet Hole */
.guitar-card::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--bg-dark);
    border-radius: 50%;
    border: 4px solid var(--card-tan);
    z-index: 5;
}

/* --- 4. LOGO AREA --- */
.tag-brand {
    text-align: center;
    padding: 60px 0 20px 0;
    /* Increased top padding from 40px to 60px */
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.card-logo-badge {
    max-width: 180px !important;
    height: auto;
    display: block;
    margin: 0 auto;
    mix-blend-mode: multiply !important;
    filter: contrast(1.1) brightness(0.9);
}

/* --- 5. IMAGE SLIDER (THE ENGINE) --- */
.card-image-area {
    position: relative;
    height: 420px;
    /* Sized for your 800x1066 portraits */
    background: #121212;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.image-slider {
    display: flex;
    height: 100%;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.image-slider::-webkit-scrollbar {
    display: none;
}

.guitar-photo {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    scroll-snap-align: start;
    flex-shrink: 0;
}

/* --- 6. SLIDER CONTROLS --- */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: 0.2s;
}

.slider-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
}

.dot.active {
    background: #fff;
    transform: scale(1.2);
}

.status-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--ink-dark);
    color: var(--card-tan);
    padding: 4px 10px;
    font-size: 0.6rem;
    font-weight: bold;
    border-radius: 4px;
    z-index: 10;
}

/* --- 7. TAG TEXT & SPECS --- */
.tag-body {
    padding: 25px;
}

.tag-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 5px;
}

.tag-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 800;
}

.price {
    font-weight: 800;
    font-size: 1.2rem;
    border: 2px solid var(--ink-dark);
    padding: 0 6px;
}

.tier-label {
    font-size: 0.7rem;
    font-weight: bold;
    opacity: 0.6;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.checklist-group {
    margin: 15px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.check-item {
    display: flex;
    justify-content: space-between;
    padding: 7px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.85rem;
    color: #1a1a1b;
}

.check-item strong {
    font-weight: 700;
}

/* The indented nut work details */
.sub-item {
    padding-left: 20px !important;
    font-style: italic;
    opacity: 0.8;
    border-bottom: none;
    /* Removes the line between related sub-items */
    padding-top: 2px;
    padding-bottom: 2px;
}

.sub-item span {
    font-size: 0.8rem;
}

.description {
    font-size: 0.85rem;
    font-style: italic;
    line-height: 1.4;
    margin: 20px 0;
    opacity: 0.8;
}

.btn-inquire {
    display: block;
    text-align: center;
    border: 2px solid var(--ink-dark);
    color: var(--ink-dark);
    padding: 12px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: 0.2s;
}

.btn-inquire:hover {
    background: var(--ink-dark);
    color: var(--card-tan);
}

/* --- 8. FOOTER / TEACHING SECTION --- */

.dark-section {
    background: #121212;
    padding: 80px 20px;
    border-top: 1px solid #333;
    display: flex;
    flex-direction: column;
    /* Stacks Title, Text, and Button */
    align-items: center;
    /* Centers everything */
    text-align: center;
    gap: 15px;
    /* Adds automatic breathing room between items */
}

/* Ensure the paragraph text doesn't stretch too wide on big screens */
.dark-section p {
    max-width: 600px;
    line-height: 1.6;
    margin: 0 auto;
}

.cta-secondary {
    display: inline-block;
    border: 1px solid var(--accent);
    padding: 10px 20px;
    color: var(--accent);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-top: 20px;
}

.shop-preface {
    max-width: 600px;
    margin: 0 auto 50px auto;
    /* Centered with 50px gap before the cards */
    text-align: center;
    line-height: 1.6;
}

.shop-preface p {
    color: var(--accent);
    /* Using your tan/gold accent color */
    font-size: 1.2rem;
    font-style: italic;
    opacity: 0.9;
}

/* Ensure the grid and label stay centered under the preface */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}