/* ==========================================================================
   Iron & Oak Barbershop Stylesheet - Custom Vanilla CSS
   Aesthetically designed with a classic, premium, masculine & neighborhood feel.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Variables & Reset
   -------------------------------------------------------------------------- */
:root {
    /* Color Palette */
    --color-dark-bg: #111112;       /* Slate/Charcoal Dark Background */
    --color-dark-card: #19191b;     /* Dark Card Background */
    --color-dark-border: rgba(197, 168, 128, 0.15); /* Light Brass Border */
    
    --color-cream-bg: #FAF8F5;      /* Light Cream Background */
    --color-cream-card: #ffffff;    /* Light Card Background */
    --color-cream-border: rgba(30, 30, 32, 0.08); /* Light Slate Border */
    
    --color-gold: #c5a880;          /* Traditional Warm Gold/Brass */
    --color-gold-hover: #b0926a;    /* Muted Active Gold */
    --color-gold-light: rgba(197, 168, 128, 0.1);
    
    --color-text-dark: #1f1f21;     /* Dark Charcoal Text for Light BG */
    --color-text-muted-dark: #626266;
    
    --color-text-light: #f4f4f7;    /* Cream Text for Dark BG */
    --color-text-muted-light: #b0b0b5;
    
    /* Fonts */
    --font-heading: 'Cinzel', Georgia, serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Layout & Styling Tokens */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    
    --box-shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.03);
    --box-shadow-md: 0 8px 24px rgba(0, 0, 0, 0.05);
    --box-shadow-lg: 0 16px 36px rgba(0, 0, 0, 0.08);
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

section[id] {
    scroll-margin-top: 68px; /* Sticky header height offset */
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    background-color: var(--color-cream-bg);
    color: var(--color-text-dark);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* --------------------------------------------------------------------------
   2. Typography & Core Elements
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Helper Classes */
.text-gold {
    color: var(--color-gold) !important;
}

.text-white {
    color: var(--color-text-light) !important;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.section-padding {
    padding: 6.5rem 0;
}

.dark-section {
    background-color: var(--color-dark-bg);
    color: var(--color-text-light);
}

/* Section Header Styles */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-title {
    font-size: 2.25rem;
    color: var(--color-text-dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    position: relative;
    margin-bottom: 1.2rem;
}

.dark-section .section-title {
    color: var(--color-text-light);
}

.section-divider {
    width: 60px;
    height: 3px;
    background-color: var(--color-gold);
    margin: 0 auto 1.5rem auto;
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--color-gold);
    border: 3px solid var(--color-cream-bg);
    transform: rotate(45deg);
    top: -5px;
    left: calc(50% - 6px);
}

.dark-section .section-divider::before {
    border-color: var(--color-dark-bg);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--color-text-muted-dark);
    font-weight: 300;
    line-height: 1.7;
}

.dark-section .section-subtitle {
    color: var(--color-text-muted-light);
}

/* Styled Inline Links */
.link-gold {
    color: var(--color-gold);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.link-gold:hover {
    color: var(--color-gold-hover);
    transform: translateX(3px);
}

/* --------------------------------------------------------------------------
   3. Buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
    gap: 0.75rem;
}

.btn-sm {
    padding: 0.6rem 1.25rem;
    font-size: 0.75rem;
}

.btn-lg {
    padding: 1.25rem 3rem;
    font-size: 0.95rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-gold {
    background-color: var(--color-gold);
    color: #111112;
    border: 1px solid var(--color-gold);
}

.btn-gold:hover {
    background-color: var(--color-gold-hover);
    border-color: var(--color-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(197, 168, 128, 0.25);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-text-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--color-text-light);
    transform: translateY(-2px);
}

/* For light areas where we want a dark button outline */
body .btn-outline-dark {
    background-color: transparent;
    color: var(--color-text-dark);
    border: 1px solid rgba(30, 30, 32, 0.3);
}

body .btn-outline-dark:hover {
    background-color: rgba(30, 30, 32, 0.05);
    border-color: var(--color-text-dark);
}

/* --------------------------------------------------------------------------
   4. Header & Navigation
   -------------------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(17, 17, 18, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(197, 168, 128, 0.15);
    transition: var(--transition-smooth);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0.85rem 1.5rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-logo {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--color-gold);
    object-fit: cover;
}

.header-logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-text-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.primary-navigation {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.nav-link {
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted-light);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--color-text-light);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link.active {
    color: var(--color-gold);
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    z-index: 1100;
}

.hamburger-bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-text-light);
    transition: var(--transition-fast);
}

/* --------------------------------------------------------------------------
   5. Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('../../images/iron-oak-barber-at-work.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 100px;
    color: var(--color-text-light);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(17, 17, 18, 0.9) 30%, rgba(17, 17, 18, 0.7) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.hero-content {
    max-width: 780px;
}

.hero-tagline {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--color-gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 1.25rem;
    position: relative;
    padding-left: 35px;
}

.hero-tagline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 1px;
    background-color: var(--color-gold);
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    line-height: 1.15;
}

.hero-subheadline {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: var(--color-text-muted-light);
}

.hero-intro {
    font-size: 1.05rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    color: var(--color-text-muted-light);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

/* --------------------------------------------------------------------------
   6. Services Section
   -------------------------------------------------------------------------- */
.services-section {
    background-color: var(--color-cream-bg);
}

.services-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.services-intro-text {
    text-align: center;
    font-size: 0.95rem;
    color: var(--color-text-muted-dark);
    margin-bottom: 3.5rem;
    background-color: rgba(30, 30, 32, 0.03);
    padding: 1.25rem;
    border-radius: var(--border-radius-sm);
    border-left: 3px solid var(--color-gold);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    background-color: var(--color-cream-card);
    padding: 2.25rem;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--color-cream-border);
    box-shadow: var(--box-shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-md);
    border-color: rgba(197, 168, 128, 0.4);
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.75rem;
    gap: 1rem;
}

.service-name {
    font-size: 1.25rem;
    color: var(--color-text-dark);
    text-transform: uppercase;
}

.service-price {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-gold);
}

.service-description {
    font-size: 0.9rem;
    color: var(--color-text-muted-dark);
    line-height: 1.6;
}

.services-footer {
    margin-top: 3.5rem;
}

.pricing-note {
    font-size: 0.85rem;
    color: var(--color-text-muted-dark);
    font-style: italic;
    text-align: center;
    margin-bottom: 2.5rem;
}

.pdf-download-container {
    max-width: 650px;
    margin: 0 auto;
}

.pdf-card {
    display: flex;
    align-items: center;
    background-color: rgba(197, 168, 128, 0.05);
    border: 1px dashed var(--color-gold);
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius-md);
    gap: 1.5rem;
    transition: var(--transition-fast);
}

.pdf-card:hover {
    background-color: rgba(197, 168, 128, 0.08);
}

.pdf-icon-wrapper {
    font-size: 2.25rem;
    color: var(--color-gold);
}

.pdf-details {
    flex-grow: 1;
}

.pdf-details h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-dark);
}

.pdf-details p {
    font-size: 0.85rem;
    color: var(--color-text-muted-dark);
}

.pdf-btn {
    flex-shrink: 0;
    color: var(--color-text-dark);
    border-color: rgba(30, 30, 32, 0.2);
}

.pdf-btn:hover {
    background-color: var(--color-gold);
    color: #111112;
    border-color: var(--color-gold);
}

.pdf-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   7. Team Section
   -------------------------------------------------------------------------- */
.team-section {
    background-color: #ffffff;
}

.team-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.team-intro-text {
    text-align: center;
    font-size: 0.95rem;
    color: var(--color-text-muted-dark);
    margin-bottom: 3.5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.team-card {
    background-color: var(--color-cream-bg);
    border: 1px solid var(--color-cream-border);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow-sm);
    transition: var(--transition-smooth);
    text-align: center;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
    border-color: var(--color-gold);
}

.barber-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: var(--color-dark-bg);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    border: 2px solid var(--color-gold);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.team-card:hover .barber-avatar {
    background-color: var(--color-gold);
    color: #111112;
    transform: scale(1.05);
    transition: var(--transition-fast);
}

.barber-name {
    font-size: 1.35rem;
    color: var(--color-text-dark);
    margin-bottom: 0.35rem;
    text-transform: uppercase;
}

.barber-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.barber-divider {
    width: 40px;
    height: 1px;
    background-color: var(--color-cream-border);
    margin: 1.25rem auto;
}

.specialties-header {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted-dark);
    margin-bottom: 0.75rem;
}

.specialties-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.72rem;
    font-weight: 500;
    background-color: #ffffff;
    border: 1px solid var(--color-cream-border);
    border-radius: 50px;
    color: var(--color-text-dark);
    transition: var(--transition-fast);
}

.team-card:hover .tag {
    border-color: rgba(197, 168, 128, 0.3);
}

.team-footer {
    margin-top: 3.5rem;
    text-align: center;
}

.individual-booking-note {
    font-size: 0.85rem;
    color: var(--color-text-muted-dark);
    font-style: italic;
}

/* --------------------------------------------------------------------------
   8. Gallery Section
   -------------------------------------------------------------------------- */
.gallery-section {
    background-color: var(--color-cream-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: var(--box-shadow-sm);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(17, 17, 18, 0.95) 0%, rgba(17, 17, 18, 0.4) 60%, rgba(17, 17, 18, 0) 100%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.gallery-caption {
    color: var(--color-text-light);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay .gallery-caption {
    transform: translateY(0);
}

/* --------------------------------------------------------------------------
   9. About Section
   -------------------------------------------------------------------------- */
.about-section {
    background-color: var(--color-dark-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    padding-right: 1rem;
}

.about-tag {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.75rem;
}

.about-title {
    font-size: 2.25rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

.section-divider-left {
    width: 50px;
    height: 3px;
    background-color: var(--color-gold);
    margin: 0 0 2rem 0;
}

.about-paragraph {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.primary-about {
    color: var(--color-text-light);
    font-size: 1.05rem;
    font-weight: 400;
}

.secondary-about {
    color: var(--color-text-muted-light);
}

.gift-card-banner {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background-color: var(--color-dark-card);
    border: 1px solid var(--color-dark-border);
    padding: 1.5rem 1.75rem;
    border-radius: var(--border-radius-md);
    margin-top: 2.5rem;
}

.gift-icon {
    font-size: 1.75rem;
    color: var(--color-gold);
    flex-shrink: 0;
}

.gift-text strong {
    display: block;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-light);
    margin-bottom: 0.25rem;
}

.gift-text p {
    font-size: 0.85rem;
    color: var(--color-text-muted-light);
    line-height: 1.5;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-dark-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    aspect-ratio: 4 / 5;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --------------------------------------------------------------------------
   10. Booking Section
   -------------------------------------------------------------------------- */
.booking-section {
    background-color: var(--color-cream-bg);
}

.booking-card {
    background-color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid var(--color-cream-border);
    box-shadow: var(--box-shadow-lg);
    border-radius: var(--border-radius-lg);
    padding: 4.5rem 3.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.booking-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--color-gold);
}

.booking-tag {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.booking-title {
    font-size: 2.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
}

.booking-intro {
    font-size: 1.15rem;
    color: var(--color-text-dark);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.booking-policy-text {
    font-size: 0.9rem;
    color: var(--color-text-muted-dark);
    background-color: var(--color-cream-bg);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius-sm);
    margin-bottom: 3rem;
    border-left: 2px solid var(--color-gold);
    display: inline-block;
    max-width: 650px;
}

.booking-action-wrapper {
    max-width: 420px;
    margin: 0 auto;
}

/* --------------------------------------------------------------------------
   11. Hours Section
   -------------------------------------------------------------------------- */
.hours-section {
    background-color: var(--color-dark-bg);
}

.hours-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--color-dark-card);
    border: 1px solid var(--color-dark-border);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.hours-table th {
    text-align: left;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--color-dark-border);
    color: var(--color-text-muted-light);
}

.hours-table th:last-child {
    text-align: right;
}

.day-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-fast);
}

.day-row:last-child {
    border-bottom: none;
}

.day-row td {
    padding: 1.1rem 0;
    font-size: 0.95rem;
}

.day-name {
    font-weight: 500;
    color: var(--color-text-light);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.day-time {
    text-align: right;
    color: var(--color-text-muted-light);
    font-weight: 300;
}

.closed-text {
    color: #df4747 !important;
    font-weight: 500;
}

/* Active current day highlighting styling */
.day-row.today {
    background-color: rgba(197, 168, 128, 0.08);
    border-left: 3px solid var(--color-gold);
}

.day-row.today td {
    padding-left: 1rem;
}

.day-row.today .day-name {
    color: var(--color-gold);
    font-weight: 700;
}

.day-row.today .day-time {
    color: var(--color-text-light);
    font-weight: 500;
    padding-right: 1rem;
}

.hours-notes {
    border-top: 1px dashed var(--color-dark-border);
    padding-top: 1.5rem;
    text-align: center;
}

.holiday-note {
    font-size: 0.82rem;
    color: var(--color-text-muted-light);
    font-style: italic;
}

/* --------------------------------------------------------------------------
   12. Location & Contact Section
   -------------------------------------------------------------------------- */
.contact-section {
    background-color: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4.5rem;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
}

.info-block {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.info-icon {
    font-size: 1.5rem;
    color: var(--color-gold);
    background-color: var(--color-cream-bg);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--color-cream-border);
}

.info-text h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted-dark);
    margin-bottom: 0.5rem;
}

.info-text p {
    font-size: 1.1rem;
    color: var(--color-text-dark);
    font-weight: 500;
    line-height: 1.5;
}

.contact-phone, .contact-email {
    transition: var(--transition-fast);
}

.contact-phone:hover, .contact-email:hover {
    color: var(--color-gold);
}

.social-block {
    border-top: 1px solid var(--color-cream-border);
    padding-top: 2rem;
}

.social-block h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted-dark);
    margin-bottom: 1.25rem;
}

.social-links-wrapper {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.social-icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--color-cream-border);
    background-color: var(--color-cream-bg);
    color: var(--color-text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.social-icon-btn:hover {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: #111112;
    transform: translateY(-3px);
}

.social-handle {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.map-visual-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow-lg);
    border: 1px solid var(--color-cream-border);
    aspect-ratio: 4 / 3;
}

.contact-map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background-color: rgba(17, 17, 18, 0.95);
    border: 1px solid var(--color-dark-border);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 1.25rem 1.5rem;
    border-radius: var(--border-radius-md);
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.location-badge i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.location-badge strong {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.15rem;
}

.location-badge p {
    font-size: 0.78rem;
    color: var(--color-text-muted-light);
}

/* --------------------------------------------------------------------------
   13. Parking Section
   -------------------------------------------------------------------------- */
.parking-section {
    background-color: var(--color-dark-bg);
}

.parking-card-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--color-dark-card);
    border: 1px solid var(--color-dark-border);
    border-radius: var(--border-radius-lg);
    padding: 3.5rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.parking-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.parking-icon-circle {
    font-size: 2.25rem;
    color: var(--color-gold);
    background-color: rgba(197, 168, 128, 0.08);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed var(--color-gold);
}

.parking-title {
    font-size: 1.75rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.parking-description {
    font-size: 1.05rem;
    color: var(--color-text-muted-light);
    line-height: 1.7;
    font-weight: 300;
}

/* --------------------------------------------------------------------------
   14. Footer
   -------------------------------------------------------------------------- */
.site-footer {
    background-color: #0c0c0d;
    color: var(--color-text-light);
    padding: 5rem 0 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-top {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3rem auto;
}

.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--color-gold);
    object-fit: cover;
    margin-bottom: 1.25rem;
}

.footer-title {
    font-size: 1.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}

.footer-tagline {
    font-size: 0.88rem;
    color: var(--color-text-muted-light);
    line-height: 1.6;
    font-weight: 300;
}

.footer-middle {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 0;
    margin-bottom: 2.5rem;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.footer-nav a {
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted-light);
}

.footer-nav a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    text-align: center;
}

.copyright {
    font-size: 0.78rem;
    color: var(--color-text-muted-light);
    font-weight: 300;
}

.footer-divider-dot {
    color: var(--color-gold);
    margin: 0 0.5rem;
}

/* --------------------------------------------------------------------------
   15. Media Queries (Responsive Adjustments)
   -------------------------------------------------------------------------- */

/* Header Mobile Switch */
@media (max-width: 991px) {
    .header-container {
        padding: 0.75rem 1.5rem;
    }
    
    .mobile-nav-toggle {
        display: flex;
    }

    .primary-navigation {
        position: fixed;
        top: 68px; /* Height of header */
        left: 0;
        width: 100%;
        height: calc(100vh - 68px);
        background-color: rgba(17, 17, 18, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 3rem 2rem;
        flex-direction: column;
        align-items: center;
        border-top: 1px solid rgba(197, 168, 128, 0.1);
        transform: translateY(-110%);
        transition: transform var(--transition-smooth);
        z-index: 999;
        overflow-y: auto;
    }

    .primary-navigation.open {
        transform: translateY(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 2.25rem;
        text-align: center;
        width: 100%;
    }

    .nav-link {
        font-size: 1.1rem;
        letter-spacing: 0.12em;
    }

    .header-cta-wrapper {
        display: none; /* Hide topcta on mobile in nav, show inside nav */
    }

    /* Transform Hamburger into X */
    .mobile-nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Grid Adjustments */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.large-span {
        grid-column: span 2;
        grid-row: auto;
        aspect-ratio: 4/3;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image-wrapper {
        aspect-ratio: 16 / 10;
        max-height: 400px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .map-visual-container {
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 4.5rem 0;
    }

    .section-title {
        font-size: 1.85rem;
    }

    .hero-headline {
        font-size: 2.35rem;
    }

    .hero-subheadline {
        font-size: 1.1rem;
    }

    .hero-intro {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }



    .booking-card {
        padding: 3rem 1.5rem;
    }

    .booking-title {
        font-size: 1.85rem;
    }

    .booking-intro {
        font-size: 1.05rem;
    }

    .hours-wrapper {
        padding: 1.75rem;
    }

    .hours-table th, .day-row td {
        padding: 0.85rem 0;
        font-size: 0.88rem;
    }

    .parking-card-container {
        padding: 2.25rem 1.5rem;
    }

    .parking-title {
        font-size: 1.45rem;
    }

    .parking-description {
        font-size: 0.95rem;
    }

    .pdf-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
    }

    .pdf-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .pdf-btn {
        width: 100%;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }
}

/* --- RVA Sites Notice Bar --- */
.rva-notice-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    background-color: var(--color-dark-bg, #111112);
    color: var(--color-text-light, #f4f4f7);
    border-bottom: 2px solid var(--color-gold, #c5a880);
    font-size: 0.85rem;
    padding: 8px 16px;
    text-align: center;
    line-height: 1.4;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.rva-notice-bar a {
    color: var(--color-gold, #c5a880);
    text-decoration: underline;
    font-weight: 600;
    white-space: nowrap;
    transition: var(--transition-fast, 0.2s cubic-bezier(0.4, 0, 0.2, 1));
}

.rva-notice-bar a:hover {
    color: var(--color-text-light, #f4f4f7);
}

/* Adjust header to sit below fixed notice bar */
.site-header {
    top: 36px !important;
}

@media (max-width: 991px) {
    .site-header {
        top: 56px !important;
    }
    .primary-navigation {
        top: calc(68px + 56px) !important;
        height: calc(100vh - 68px - 56px) !important;
    }
}

@media (max-width: 480px) {
    .site-header {
        top: 76px !important;
    }
    .primary-navigation {
        top: calc(68px + 76px) !important;
        height: calc(100vh - 68px - 76px) !important;
    }
}

/* Section scroll offset correction due to notice bar + header */
section[id] {
    scroll-margin-top: 104px !important; /* 68px header + 36px notice bar */
}

@media (max-width: 991px) {
    section[id] {
        scroll-margin-top: 124px !important; /* 68px header + 56px notice bar */
    }
}

@media (max-width: 480px) {
    section[id] {
        scroll-margin-top: 144px !important; /* 68px header + 76px notice bar */
    }
}

/* Location details note */
.demo-location-note {
    font-size: 0.85rem !important;
    color: var(--color-text-muted-dark, #626266) !important;
    font-style: italic;
    font-weight: 400 !important;
    margin-top: 0.25rem;
    line-height: 1.4;
}

