:root {
    --primary-red: #8B0000;
    --primary-gold: #C5A059;
    /* More muted, classy gold */
    --primary-navy: #0F1C2E;
    /* Deep Navy */
    --bg-light: #F4F1EA;
    /* Cream/Paper texture feel */
    --text-dark: #1A1A1A;
    --text-light: #FFFFFF;
    --font-heading: 'Lexend', sans-serif;
    /* Maintaining Lexend as requested */
    --font-body: 'Lexend', sans-serif;
    /* Keeping it simple with one family but different weights */
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

/* --- Header --- */
.site-header {
    position: absolute;
    /* Floating over hero */
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    z-index: 100;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-gold);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-cta .cta-link {
    background-color: var(--primary-gold);
    color: var(--primary-navy);
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.header-cta .cta-link:hover {
    background-color: #fff;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: url('assets/ozzy_shop_background.png') no-repeat center center/cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 28, 46, 0.7);
    /* Navy overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-light);
    max-width: 800px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.hero-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-logo {
    width: 120px;
    margin-bottom: 1.5rem;
}

.brand-name {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.sideways-the {
    display: inline-block;
    transform: rotate(-90deg);
    font-size: 0.3em;
    line-height: 1;
    margin: 0 -0.4rem;
}

.separator-gold {
    width: 60px;
    height: 3px;
    background-color: var(--primary-gold);
    margin: 1.5rem 0;
}

.tagline {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2.5rem;
}

.hero-btn {
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.hero-btn:hover {
    background-color: var(--primary-gold);
    color: var(--primary-navy);
}

/* --- Split Section --- */
.split-section {
    display: flex;
    min-height: 60vh;
}

.content-side {
    flex: 1;
    padding: 5rem;
    background-color: var(--bg-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-side {
    flex: 1;
    padding: 5rem;
    background-color: var(--primary-navy);
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-title,
.info-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    text-transform: uppercase;
}

.section-title {
    color: var(--primary-navy);
    border-bottom: 3px solid var(--primary-red);
    display: inline-block;
}

.info-title {
    color: var(--primary-gold);
    border-bottom: 3px solid #fff;
    display: inline-block;
}

.content-side p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #444;
}

.contact-info-block {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(139, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-red);
    letter-spacing: 2px;
}

.contact-phone {
    font-size: 2rem;
    color: var(--primary-navy);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
    display: block;
}

.contact-phone:hover {
    color: var(--primary-red);
}

.hours-list {
    list-style: none;
    margin-bottom: 3rem;
    font-family: monospace;
    /* Fallback for a clean tabular look */
    font-size: 1.1rem;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.phone-display {
    display: block;
    color: var(--primary-gold);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 1rem 0;
    transition: color 0.3s;
}

.phone-display:hover {
    color: #fff;
}

.direction-btn {
    display: inline-block;
    background-color: var(--primary-red);
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 700;
    margin-top: 2rem;
    transition: background 0.3s;
}

.direction-btn:hover {
    background-color: #600000;
}

/* --- Gallery Section --- */
.gallery-section {
    padding: 5rem 2rem;
    background-color: #fff;
    text-align: center;
}

.gallery-title {
    font-size: 2rem;
    color: var(--primary-navy);
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    border: 3px solid var(--primary-gold);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* --- Footer --- */
.site-footer {
    background-color: var(--text-dark);
    color: #888;
    text-align: center;
    padding: 3rem 2rem;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.made-by-container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    color: #666;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo-dropdown-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.footer-logo {
    height: 14px;
    width: auto;
    filter: grayscale(100%) invert(1) brightness(0.5) opacity(0.5);
    /* Make it look like a watermark */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.logo-dropdown-wrapper:hover .footer-logo {
    filter: grayscale(0%) invert(0) brightness(1) opacity(1);
    transform: scale(1.1);
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    bottom: 200%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(10px);
    color: var(--primary-gold);
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    border: 1px solid rgba(197, 160, 89, 0.2);
    display: flex;
    align-items: center;
}

.dropdown-content::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: rgba(30, 30, 30, 0.95) transparent transparent transparent;
}

.logo-dropdown-wrapper:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.phone-icon {
    margin-right: 8px;
    font-size: 1.1rem;
    filter: drop-shadow(0 0 5px rgba(197, 160, 89, 0.3));
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .split-section {
        flex-direction: column;
    }

    .site-header {
        padding: 1rem;
        flex-direction: column;
        gap: 1.5rem;
    }

    .header-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .brand-name {
        font-size: 2.5rem;
    }

    .content-side,
    .info-side {
        padding: 3rem 1.5rem;
    }
}

/* --- Loyalty System --- */
.loyalty-body {
    background-color: var(--primary-navy);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.loyalty-container {
    background: #000;
    width: 100%;
    max-width: 400px;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-header {
    margin-bottom: 2rem;
}

.card-logo {
    width: 60px;
    margin-bottom: 0.5rem;
}

.stamps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-bottom: 2rem;
}

.stamp {
    aspect-ratio: 1;
    background: #222;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #444;
    font-weight: bold;
    border: 2px solid #333;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stamp.filled {
    background: var(--primary-gold);
    color: var(--primary-navy);
    border-color: var(--primary-gold);
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.5);
    transform: scale(1.1);
}

.card-status {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.save-prompt {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #888;
}