/* ========================================
   Yadkin Valley NC Wine Tours — Shared Styles
   ======================================== */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    overflow-x: hidden;
}

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

/* ========== Navigation ========== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.8rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.6rem;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-logo span {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1rem;
    color: #000;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.8rem;
    align-items: center;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #000;
}

.nav-links a.active {
    color: #000;
    font-weight: 600;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: #000;
}

.nav-cta {
    background: #000 !important;
    color: #fff !important;
    padding: 0.65rem 1.3rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: #333 !important;
    transform: translateY(-1px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* ========== Page Hero (subpages) ========== */
.page-hero {
    background: #000;
    color: #fff;
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(30,30,30,0.9) 100%);
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    color: #fff;
    letter-spacing: -0.02em;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.breadcrumb {
    font-size: 0.85rem;
    opacity: 0.6;
    margin-bottom: 1.5rem;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.breadcrumb a:hover {
    opacity: 1;
}

/* ========== Section Styles ========== */
.section {
    padding: 5rem 0;
}

.section-alt {
    background: #f8f9fa;
}

.section-dark {
    background: #000;
    color: #fff;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000;
    text-align: center;
    position: relative;
}

.section-dark .section-title {
    color: #fff;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #000;
    margin: 12px auto 0;
}

.section-dark .section-title::after {
    background: #fff;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* ========== Cards ========== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.card-accent {
    border-left: 4px solid #000;
}

.card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #000;
}

.card p {
    color: #555;
    line-height: 1.7;
}

/* ========== Buttons ========== */
.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid #000;
    transition: all 0.4s ease;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-outline {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid #000;
    transition: all 0.4s ease;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.btn-outline:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
}

.btn-white {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.btn-white:hover {
    background: transparent;
    color: #fff;
}

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

.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }

/* ========== Winery Cards ========== */
.winery-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.4s ease;
}

.winery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.winery-card-body {
    padding: 1.8rem;
}

.winery-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
}

.winery-tag {
    display: inline-block;
    background: #f8f9fa;
    color: #555;
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(0,0,0,0.08);
}

.winery-card p {
    color: #555;
    line-height: 1.7;
    margin-top: 0.8rem;
}

/* ========== Review Cards ========== */
.review-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-left: 4px solid #000;
    position: relative;
    transition: all 0.3s ease;
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 3.5rem;
    color: rgba(0,0,0,0.1);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    background: #fff;
}

.review-text {
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
}

.review-stars {
    color: #f0b429;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.review-author {
    font-weight: 600;
    color: #000;
    margin-top: 1.2rem;
    font-style: normal;
}

.review-location {
    color: #777;
    font-size: 0.9rem;
}

.review-source {
    font-size: 0.8rem;
    color: #999;
    margin-top: 0.3rem;
}

/* ========== Stats Bar ========== */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    padding: 3rem 0;
    text-align: center;
}

.stat-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #000;
}

.section-dark .stat-item h3 {
    color: #fff;
}

.stat-item p {
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-dark .stat-item p {
    color: #ccc;
}

/* ========== Contact Form ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info-block {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-icon-text h4 {
    font-weight: 600;
    color: #000;
    margin-bottom: 0.2rem;
}

.contact-icon-text p, .contact-icon-text a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-icon-text a:hover {
    color: #000;
}

.contact-form label {
    display: block;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid #ddd;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    margin-bottom: 1.2rem;
    transition: border-color 0.3s;
    background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #000;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* ========== FAQ ========== */
.faq-item {
    background: #fff;
    margin-bottom: 1rem;
    border: 1px solid rgba(0,0,0,0.08);
    border-left: 4px solid #000;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 1.3rem 1.5rem;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s;
}

.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem 1.3rem;
    color: #555;
    line-height: 1.7;
    display: none;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-answer ul {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.3rem;
}

/* ========== CTA Banner ========== */
.cta-banner {
    background: #000;
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.cta-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.cta-banner p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== Tour Package Cards ========== */
.tour-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.tour-card-header {
    background: #000;
    color: #fff;
    padding: 1.5rem 2rem;
}

.tour-card-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 0.3rem;
}

.tour-card-header .tour-tagline {
    font-size: 0.9rem;
    opacity: 0.8;
}

.tour-card-body {
    padding: 2rem;
}

.tour-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #555;
}

.tour-detail-icon {
    flex-shrink: 0;
    font-size: 1.1rem;
}

.tour-includes {
    list-style: none;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.tour-includes li {
    padding: 0.4rem 0;
    font-size: 0.95rem;
    color: #333;
}

.tour-includes li::before {
    content: '✓';
    color: #000;
    font-weight: bold;
    margin-right: 0.8rem;
}

/* ========== Footer ========== */
footer {
    background: #000;
    color: #fff;
    padding: 3.5rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: #fff;
}

.footer-section p,
.footer-section a {
    color: #aaa;
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: #fff;
}

.contact-info-footer {
    display: flex;
    align-items: center;
    margin-bottom: 0.6rem;
    gap: 0.5rem;
}

.contact-info-footer span:first-child {
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: #888;
    transition: color 0.3s ease;
    display: inline-flex;
}

.social-links a:hover {
    color: #fff;
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-copyright {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.15);
    color: #666;
    font-size: 0.85rem;
}

/* ========== Responsive ========== */
@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        gap: 0;
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links li {
        padding: 0.8rem 0;
        border-bottom: 1px solid #f0f0f0;
    }
    .nav-links li:last-child {
        border: none;
        padding-top: 1rem;
    }
    .mobile-menu-btn {
        display: block;
    }
    .page-hero {
        padding: 7rem 0 3rem;
    }
    .section {
        padding: 3.5rem 0;
    }
    .card-grid {
        grid-template-columns: 1fr;
    }
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .social-links {
        justify-content: center;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .stats-bar {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .stats-bar {
        grid-template-columns: 1fr;
    }
}

/* ========== Smooth Scroll + Selection ========== */
html {
    scroll-behavior: smooth;
}

::selection {
    background: #000;
    color: #fff;
}

/* Hero background image variants */
.page-hero.hero-tours {
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(30,30,30,0.75) 100%),
                url('./Img/imgs-(2).jpg') center/cover no-repeat;
}
.page-hero.hero-wineries {
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(30,30,30,0.75) 100%),
                url('./Img/imgs-(5).jpg') center/cover no-repeat;
}
.page-hero.hero-reviews {
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(30,30,30,0.75) 100%),
                url('./Img/imgs-(3).jpg') center/cover no-repeat;
}
.page-hero.hero-book {
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(30,30,30,0.75) 100%),
                url('./Img/imgs-(4).jpg') center/cover no-repeat;
}
.page-hero.hero-contact {
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(30,30,30,0.75) 100%),
                url('./Img/imgs-(1).jpg') center/cover no-repeat;
}

/* Image showcase section */
.image-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}
.image-showcase img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.image-showcase img:hover {
    transform: scale(1.03);
}

/* Fleet showcase for tours page */
.fleet-showcase {
    background: #f8f9fa;
    padding: 4rem 0;
}
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.fleet-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}
.fleet-card:hover {
    transform: translateY(-4px);
}
.fleet-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.fleet-card .fleet-info {
    padding: 1.25rem;
}
.fleet-card .fleet-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
}
.fleet-card .fleet-info p {
    font-size: 0.9rem;
    color: #666;
}
