/* ============================================
   GLOBAL
============================================ */
body {
    background-color: #0a0a0a;
    color: #e0e0e0;
    font-family: 'Georgia', serif;
    margin: 0;
    padding: 0;
}

a {
    color: #e0e0e0;
    text-decoration: none;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   HERO SPLIT
============================================ */
.hero-split {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    overflow: hidden;
}

.hero-left,
.hero-right {
    position: relative;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.hero-left img,
.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.hero-left:hover img,
.hero-right:hover img {
    transform: scale(1.03);
}

.hero-left-overlay,
.hero-right-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.hero-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 100%;
    padding: 0 20px;
    pointer-events: none;
}

.hero-name {
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 0.4em 0;
    text-shadow: 0 2px 20px rgba(0,0,0,0.8);
}

.hero-tagline {
    font-size: clamp(0.9rem, 2vw, 1.3rem);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #cccccc;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

/* ============================================
   TASTER SECTIONS
============================================ */
.taster-section {
    padding: 40px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.taster-title {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #888888;
    margin: 0 0 40px 0;
    text-align: center;
}

.taster-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    margin-bottom: 40px;
}

.taster-card {
    overflow: hidden;
    aspect-ratio: 4/3;
}

.taster-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0.85;
}

.taster-card:hover img {
    transform: scale(1.05);
    opacity: 1;
}

.taster-button {
    text-align: center;
}

.gallery-link {
    display: inline-block;
    padding: 12px 40px;
    border: 1px solid #444444;
    color: #cccccc;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.gallery-link:hover {
    border-color: #cccccc;
    color: #ffffff;
}

/* ============================================
   ASTRO ARCHIVE
============================================ */
.astro-archive {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 40px;
}

.astro-archive-header {
    text-align: center;
    margin-bottom: 60px;
}

.astro-archive-header h1 {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #888888;
    margin: 0 0 12px 0;
}

.astro-archive-header p {
    font-size: 0.9rem;
    color: #555555;
    letter-spacing: 0.1em;
}

.astro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.astro-card a {
    display: block;
    text-decoration: none;
    color: #e0e0e0;
}

.astro-card-image {
    overflow: hidden;
    aspect-ratio: 4/3;
}

.astro-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0.85;
}

.astro-card:hover .astro-card-image img {
    transform: scale(1.05);
    opacity: 1;
}

.astro-card-info {
    padding: 12px 0;
}

.astro-card-title {
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin: 0 0 6px 0;
    color: #e0e0e0;
}

.astro-card-classification {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #666666;
}

.astro-pagination {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 0 0 0;
}

.astro-pagination .page-numbers {
    display: inline-block;
    padding: 8px 14px;
    margin: 0 3px;
    border: 1px solid #333333;
    color: #888888;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.astro-pagination .page-numbers:hover,
.astro-pagination .page-numbers.current {
    border-color: #888888;
    color: #e0e0e0;
}

/* ============================================
   ASTRO SINGLE POST
============================================ */
.astro-single {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 40px;
}

.astro-image {
    margin-bottom: 40px;
}

.astro-image img {
    width: 100%;
    height: auto;
}

.astro-title {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin: 0 0 30px 0;
    color: #ffffff;
}

.astro-meta {
    border-top: 1px solid #222222;
    border-bottom: 1px solid #222222;
    padding: 24px 0;
    margin-bottom: 40px;
}

.astro-meta p {
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    margin: 8px 0;
    color: #aaaaaa;
}

.astro-meta strong {
    color: #666666;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    margin-right: 8px;
}

.astro-description {
    line-height: 1.8;
    color: #cccccc;
}

.astro-description h2 {
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #666666;
    margin: 0 0 20px 0;
}

/* ============================================
   STREET ARCHIVE
============================================ */
.street-archive {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 40px;
}

.street-archive-header {
    text-align: center;
    margin-bottom: 60px;
}

.street-archive-header h1 {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #888888;
    margin: 0 0 12px 0;
}

.street-archive-header p {
    font-size: 0.9rem;
    color: #555555;
    letter-spacing: 0.1em;
}

.street-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

.street-card {
    overflow: hidden;
    aspect-ratio: 3/2;
}

.street-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0.85;
}

.street-card:hover img {
    transform: scale(1.05);
    opacity: 1;
}

/* ============================================
   STREET SINGLE POST
============================================ */
.street-single {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 40px;
}

.street-image {
    margin-bottom: 40px;
}

.street-image img {
    width: 100%;
    height: auto;
}

.street-title {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin: 0 0 30px 0;
    color: #ffffff;
}

.street-meta {
    border-top: 1px solid #222222;
    border-bottom: 1px solid #222222;
    padding: 24px 0;
}

.street-meta p {
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    margin: 8px 0;
    color: #aaaaaa;
}

.street-meta strong {
    color: #666666;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    margin-right: 8px;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 768px) {

    .hero-name {
        font-size: 1.8rem;
    }

    .hero-tagline {
        font-size: 0.75rem;
        letter-spacing: 0.15em;
    }

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

    .taster-section,
    .astro-archive,
    .street-archive,
    .astro-single,
    .street-single {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {

    .hero-split {
        flex-direction: column;
    }

    .hero-left,
    .hero-right {
        width: 100%;
        height: 50%;
    }

    .taster-grid,
    .astro-grid,
    .street-grid {
        grid-template-columns: 1fr;
    }
}
/* ============================================
   HEADER
============================================ */
[data-header*="type-1"] .ct-header [data-row*="middle"] {
    background-color: #0a0a0a !important;
}

[data-header*="type-1"] .ct-header {
    background-color: #0a0a0a !important;
}

.ct-header a {
    color: #cccccc !important;
}

.ct-header a:hover {
    color: #ffffff !important;
}

.ct-header .site-title a,
.ct-header .ct-site-title a {
    color: #ffffff !important;
    font-weight: 300 !important;
    letter-spacing: 0.2em !important;
    text-transform: uppercase !important;
    font-size: 0.9rem !important;
}

.ct-header svg,
.ct-header .ct-icon {
    fill: #cccccc !important;
    color: #cccccc !important;
}
.ct-header svg,
.ct-header .ct-icon {
    fill: #cccccc !important;
    color: #cccccc !important;
}

/* ============================================
   ABOUT PAGE
============================================ */
.about-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 40px;
}

.about-intro {
    text-align: center;
    margin-bottom: 30px;
}

.about-heading {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #888888;
    margin: 0;
}

.about-bio {
    max-width: 760px;
    margin: 0 auto 30px auto;
    width: 100%;
}

.about-bio h2 {
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #666666;
    margin: 0 0 30px 0;
}

.about-bio p {
    font-size: 1rem;
    line-height: 1.9;
    color: #cccccc;
    margin: 0 0 20px 0;
}

.about-equipment-heading {
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #666666;
    margin: 0 0 60px 0;
    text-align: center;
}

.about-equipment-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    width: 100%;
    box-sizing: border-box;
}

.about-equipment-block img {
    width: 100%;
    height: auto;
    opacity: 0.85;
}

.about-equipment-text h3 {
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #888888;
    margin: 0 0 20px 0;
}

.about-equipment-text p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #cccccc;
    margin: 0 0 16px 0;
}

.about-equipment-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-equipment-text ul li {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #aaaaaa;
    padding: 8px 0;
    border-bottom: 1px solid #1a1a1a;
}

.about-equipment-text ul li strong {
    color: #cccccc;
}

.about-image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background-color: #111111;
    border: 1px solid #222222;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-placeholder span {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #333333;
}

@media (max-width: 768px) {
    .about-equipment-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-equipment-astro .about-equipment-text {
        order: 1;
    }

    .about-equipment-astro .about-equipment-image {
        order: 2;
    }
}
/* ============================================
   CONTACT PAGE
============================================ */
.contact-page {
    max-width: 760px;
    margin: 0 auto;
    padding: 80px 40px;
}

.contact-page h1 {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #888888;
    text-align: center;
    margin: 0 0 60px 0;
}

/* WPForms dark theme */
.wpforms-container input[type="text"],
.wpforms-container input[type="email"],
.wpforms-container textarea {
    background-color: #111111 !important;
    border: 1px solid #2a2a2a !important;
    color: #e0e0e0 !important;
    border-radius: 0 !important;
    padding: 12px !important;
}

.wpforms-container input[type="text"]:focus,
.wpforms-container input[type="email"]:focus,
.wpforms-container textarea:focus {
    border-color: #444444 !important;
    outline: none !important;
}

.wpforms-container label {
    color: #666666 !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.2em !important;
    text-transform: uppercase !important;
}

.wpforms-container .wpforms-field-label,
.wpforms-container .wpforms-field-sublabel {
    color: #666666 !important;
}

.wpforms-container button[type="submit"],
.wpforms-container input[type="submit"] {
    background-color: transparent !important;
    border: 1px solid #444444 !important;
    color: #cccccc !important;
    border-radius: 0 !important;
    padding: 12px 40px !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.3em !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: border-color 0.3s ease, color 0.3s ease !important;
}

.wpforms-container button[type="submit"]:hover,
.wpforms-container input[type="submit"]:hover {
    border-color: #cccccc !important;
    color: #ffffff !important;
}
/* ============================================
   FOOTER
============================================ */
.ct-footer {
    background-color: #0a0a0a !important;
}

[data-footer*="type-1"] .ct-footer [data-row*="bottom"] {
    background-color: #0a0a0a !important;
}

[data-footer*="type-1"] .ct-footer [data-row*="top"],
[data-footer*="type-1"] .ct-footer [data-row*="middle"] {
    background-color: #0a0a0a !important;
}

.ct-footer,
.ct-footer a,
.ct-footer p,
.ct-footer span {
    color: #666666 !important;
}

.ct-footer a:hover {
    color: #cccccc !important;
}
/* ============================================
   STREET TAGS
============================================ */
.street-tags {
    margin-top: 24px;
    padding-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.street-tag {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid #2a2a2a;
    color: #666666 !important;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.street-tag:hover {
    border-color: #666666 !important;
    color: #cccccc !important;
}
.street-tags-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #444444;
    margin-right: 4px;
}

.street-tags-separator {
    color: #333333;
    font-size: 0.75rem;
}
/* ============================================
   STREET FILTER
============================================ */
.street-filter {
    text-align: center;
    margin-bottom: 60px;
}

.street-filter-dropdown {
    background-color: transparent;
    border: 1px solid #444444;
    color: #cccccc;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    padding: 12px 40px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23cccccc' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.street-filter-dropdown:hover {
    border-color: #cccccc;
    color: #ffffff;
}

.street-filter-dropdown option {
    background-color: #0a0a0a;
    color: #cccccc;
    letter-spacing: 0.1em;
}

.street-filter-dropdown:focus {
    outline: none;
    border-color: #666666;
}
/* ============================================
   GLIGHTBOX
============================================ */
.glightbox-clean .gslide-description {
    background: #0a0a0a !important;
}

.glightbox-clean .gslide-title {
    color: #ffffff !important;
    font-size: 0.9rem !important;
    font-weight: 300 !important;
    letter-spacing: 0.2em !important;
    text-transform: uppercase !important;
}

.glightbox-clean .gslide-desc {
    color: #888888 !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.15em !important;
}

.glightbox-clean .gnext,
.glightbox-clean .gprev {
    background-color: transparent !important;
}

.glightbox-clean .gnext svg path,
.glightbox-clean .gprev svg path {
    fill: #cccccc !important;
}

.glightbox-container .gclose {
    background-color: transparent !important;
}

.glightbox-container .gclose svg path {
    fill: #cccccc !important;
}

.goverlay {
    background: rgba(0, 0, 0, 0.95) !important;
}

.glightbox-container .gnext,
.glightbox-container .gprev {
    display: none !important;
}

/* ============================================
   ASTRO POST NAVIGATION
============================================ */
.astro-post-nav {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #222222;
}

.astro-post-nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    align-items: center;
}

.astro-nav-prev {
    text-align: left;
}

.astro-nav-gallery {
    text-align: center;
}

.astro-nav-next {
    text-align: right;
}

.astro-nav-prev a,
.astro-nav-next a,
.astro-nav-gallery a {
    display: inline-block;
    color: #666666 !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.astro-nav-prev a:hover,
.astro-nav-next a:hover,
.astro-nav-gallery a:hover {
    color: #cccccc !important;
}

.astro-nav-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #444444;
    margin-bottom: 6px;
}

.astro-nav-title {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: #888888;
}

.astro-nav-gallery a {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 10px 20px;
    border: 1px solid #2a2a2a;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.astro-nav-gallery a:hover {
    border-color: #666666 !important;
}
/* ============================================
   STREET POST NAVIGATION
============================================ */
.street-post-nav {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #222222;
}

.street-post-nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    align-items: center;
}

.street-nav-prev {
    text-align: left;
}

.street-nav-gallery {
    text-align: center;
}

.street-nav-next {
    text-align: right;
}

.street-nav-prev a,
.street-nav-next a,
.street-nav-gallery a {
    display: inline-block;
    color: #666666 !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.street-nav-prev a:hover,
.street-nav-next a:hover,
.street-nav-gallery a:hover {
    color: #cccccc !important;
}

.street-nav-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #444444;
    margin-bottom: 6px;
}

.street-nav-title {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: #888888;
}

.street-nav-gallery a {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 10px 20px;
    border: 1px solid #2a2a2a;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.street-nav-gallery a:hover {
    border-color: #666666 !important;
}