/* Gastronomic Driving Routes - Main CSS */

:root {
    /* Primary Color Palette */
    --primary-burgundy: #8B1538;
    --primary-gold: #D4AF37;
    --primary-forest: #2D5016;
    --primary-cream: #F5F1E8;
    --primary-charcoal: #2C2C2C;
    
    /* Shades */
    --burgundy-light: #A94C6B;
    --burgundy-dark: #5D0F26;
    --gold-light: #E6C659;
    --gold-dark: #B8941F;
    --forest-light: #4A7A29;
    --forest-dark: #1A300C;
    --cream-light: #FDFCF9;
    --cream-dark: #E8E1D2;
    --charcoal-light: #505050;
    --charcoal-dark: #1A1A1A;
    
    /* Typography */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: 'Playfair Display', Georgia, serif;
    
    /* Sizes */
    --header-height: 80px;
    --border-radius: 12px;
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-medium: 0 16px 64px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    overflow-x: hidden;
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--charcoal-dark);
    background: var(--cream-light);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

/* Layout Components */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 5rem 0;
}

.text-center {
    text-align: center;
}

/* Header */
.navbar {
    background: linear-gradient(135deg, var(--burgundy-dark), var(--primary-burgundy));
    box-shadow: var(--shadow-soft);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold) !important;
    text-decoration: none;
}

.navbar-nav .nav-link {
    color: var(--cream-light) !important;
    font-weight: 500;
    margin: 0 1rem;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-burgundy), var(--burgundy-dark));
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../FAM_images/hero-bg.webp') center/cover;
    opacity: 0.3;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    color: var(--cream-light);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--primary-gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-dark));
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-outline-primary {
    color: var(--primary-burgundy);
    border: 2px solid var(--primary-burgundy);
    background: transparent;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background: var(--primary-burgundy);
    color: var(--cream-light);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--primary-burgundy);
    margin-bottom: 1rem;
}

.section-header h3 {
    color: var(--charcoal-light);
    font-weight: 400;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--charcoal-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Cards */
.card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: none;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.card-img-top {
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

.card-body {
    overflow-x: hidden;
    padding: 2rem;
}

.card-title {
    color: var(--primary-burgundy);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.card-text {
    color: var(--charcoal-light);
    margin-bottom: 1.5rem;
}

/* Services */
.services {
    background: var(--cream-light);
}

.service-card {
    text-align: center;
    padding: 2rem;
    height: 100%;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--charcoal-light);
}

.service-features li::before {
    content: '✓';
    color: var(--primary-forest);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Features */
.features {
    background: var(--cream-dark);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

/* Price Plans */
.priceplan {
    background: var(--cream-light);
}

.price-card {
    position: relative;
    text-align: center;
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    background: white;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.price-card.featured {
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--primary-burgundy), var(--burgundy-dark));
    color: white;
}

.price-card.featured .card-title {
    color: var(--primary-gold);
}

.price-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin: 1rem 0;
}

/* Team */
.team {
    background: var(--cream-dark);
}

.team-member {
    text-align: center;
    padding: 2rem;
}

.team-photo {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    border: 4px solid var(--primary-gold);
}

.team-name {
    color: var(--primary-burgundy);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--charcoal-light);
    font-style: italic;
}

/* Reviews/Testimonials */
.reviews {
    background: var(--cream-light);
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-soft);
    margin: 1rem;
}

.review-text {
    font-style: italic;
    color: var(--charcoal-light);
    margin-bottom: 1.5rem;
}

.review-author {
    color: var(--primary-burgundy);
    font-weight: 600;
}

/* Process Steps */
.process {
    background: var(--cream-dark);
}

.process-step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

/* Timeline */
.timeline {
    background: var(--cream-light);
}

.timeline-item {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-gold);
    box-shadow: var(--shadow-soft);
}

.timeline-title {
    color: var(--primary-burgundy);
    margin-bottom: 1rem;
}

/* FAQ */
.faq {
    background: var(--cream-dark);
}

.faq-item {
    background: white;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.faq-question {
    background: var(--primary-burgundy);
    color: white;
    padding: 1.5rem;
    cursor: pointer;
    margin: 0;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--burgundy-dark);
}

.faq-answer {
    padding: 1.5rem;
    color: var(--charcoal-light);
    display: none;
}

.faq-answer.active {
    display: block;
}

/* Gallery */
.gallery {
    background: var(--cream-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Contact Form */
.contact {
    background: var(--cream-dark);
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

.form-control {
    border: 2px solid var(--cream-dark);
    border-radius: var(--border-radius);
    padding: 1rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.contact-info {
    background: var(--primary-burgundy);
    color: white;
    padding: 3rem;
    border-radius: var(--border-radius);
}

.contact-info h4 {
    color: var(--primary-gold);
    margin-bottom: 2rem;
}

.contact-info p {
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--charcoal-dark), var(--charcoal-light));
    color: var(--cream-light);
    padding: 4rem 0 2rem;
}

.footer h5 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.footer a {
    color: var(--cream-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    border-top: 1px solid var(--charcoal-light);
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
}

/* Swiper Customization */
.swiper-pagination-bullet {
    background: var(--primary-gold);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-gold);
}

/* Utilities */
.text-gold {
    color: var(--primary-gold);
}

.text-burgundy {
    color: var(--primary-burgundy);
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-burgundy), var(--burgundy-dark));
}

.bg-gradient-gold {
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-dark));
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Breadcrumbs */
.breadcrumb {
    background: transparent;
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.breadcrumb-item img {
    height: 24px;
    width: auto;
}

/* Blog */
.blog {
    background: var(--cream-light);
}

.blog-card {
    height: 100%;
}

.blog-card .card-body {
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

.blog-excerpt {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.blog-link {
    color: var(--primary-burgundy);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.blog-link:hover {
    color: var(--burgundy-dark);
}

/* Career */
.career {
    background: var(--cream-dark);
}

.career-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    margin-bottom: 2rem;
}

.career-title {
    color: var(--primary-burgundy);
    margin-bottom: 1rem;
}

.career-role {
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Core Info */
.coreinfo {
    background: var(--cream-light);
}

.coreinfo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.coreinfo-item {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.coreinfo-title {
    color: var(--primary-burgundy);
    margin-bottom: 1rem;
}

/* Case Studies */
.casestudy {
    background: var(--cream-dark);
}

.casestudy-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    margin-bottom: 2rem;
}

.casestudy-title {
    color: var(--primary-burgundy);
    margin-bottom: 1rem;
} 