/* V2 - Cleaner, simpler design inspired by Wayback Machine version */

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

:root {
    --primary-color: #73600f;
    --secondary-color: #FFD700;
    --dark-bg: #1a1a1a;
    --light-text: #f5f5f5;
    --accent: #FF9800;
}

body {
    font-family: 'Josefin Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: var(--light-text);
    background: var(--dark-bg);
    font-size: 18px;
}

/* Header */
header {
    background: var(--primary-color);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-family: 'Impact', 'Arial Black', 'Helvetica Neue', Arial, sans-serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
}

nav a:hover,
nav a.active {
    color: var(--secondary-color);
}

.book-btn {
    background: var(--secondary-color);
    color: var(--primary-color) !important;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color), #4a3c0a);
    padding: 3rem 2rem;
    text-align: center;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    display: -webkit-flex;
    justify-content: flex-start;
    align-items: center;
    gap: 4rem;
    padding: 0 2rem;
}

.hero-left {
    flex: 0 0 400px;
    max-width: 400px;
}

.hero-right {
    flex: 1;
    text-align: center;
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}

.hero-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 3.6rem;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    letter-spacing: 1px;
    line-height: 1.3;
}

.hero-subtitle {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.8rem;
    font-weight: 400;
    font-style: italic;
    color: #f5f5f5;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.copyright {
    font-size: 1rem;
    font-weight: normal;
    vertical-align: middle;
}

.hero-cta {
    margin-top: 1.2rem;
}

.price-banner {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
}

.price-note {
    font-size: 1.2rem;
    color: #ff6b6b;
    margin-bottom: 1.2rem;
    font-style: italic;
}

.cta-button {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-transform: uppercase;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

/* Professional Banner */
.professional-banner {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    background: #000;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.9;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
}

/* Section Separators */
.section-separator {
    height: 3px;
    background: var(--secondary-color);
    margin: 0;
    box-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

/* Sections */
section {
    padding: 1.5rem 0;
}

/* Alternating section backgrounds - uniform pattern */
.hero {
    background: linear-gradient(135deg, #73600f, #4a3c0a);
}

.intro {
    background: #1a1a1a;
}

.services {
    background: #73600f !important;
    background-color: #73600f !important;
}

.faq {
    background: #1a1a1a;
}

.understanding {
    background: linear-gradient(135deg, #73600f, #4a3c0a);
    padding: 3rem 1rem;
}

.understanding h2 {
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.understanding-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.understanding-card {
    background: rgba(26, 26, 26, 0.95);
    border: 3px solid #1a1a1a;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
}

.understanding-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    border-color: var(--secondary-color);
}

.understanding-card h3 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 900;
}

.understanding-card p {
    color: #f0f0f0;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.understanding-card .cta-button {
    background: var(--secondary-color);
    color: #1a1a1a;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
    margin-top: auto;
}

.understanding-card .cta-button:hover {
    background: #ff8c00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

.blog {
    background: #1a1a1a;
}

.testimonials {
    background: #1a1a1a;
}

.book {
    background: linear-gradient(135deg, #73600f, #4a3c0a);
}

.contact {
    background: #1a1a1a;
}

h2 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1.2rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Intro Section */

.intro-text {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.highlight {
    background: rgba(115, 96, 15, 0.2);
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--secondary-color);
    border-right: 4px solid var(--secondary-color);
    font-family: 'Georgia', 'Times New Roman', serif;
    font-style: italic;
    font-size: 1.4rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
    color: var(--secondary-color);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: rgba(115, 96, 15, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border: 3px solid #000000;
    transition: transform 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
}

.service-card h3 {
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
    font-size: 1.6rem;
}

.service-card p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.faq-item {
    background: rgba(255, 215, 0, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid var(--secondary-color);
}

.faq-item h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 0.8rem;
}

.faq-item p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    font-size: 1.2rem;
    color: #e0e0e0;
}

/* Blog */
.blog-post {
    background: rgba(115, 96, 15, 0.1);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-post:hover {
    background: rgba(115, 96, 15, 0.3);
    border: 2px solid #FFD700;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.blog-post h3 {
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
    font-size: 2rem;
    transition: color 0.3s ease;
}

.blog-post:hover h3 {
    color: #FF9800;
    text-shadow: 0 0 10px rgba(255, 152, 0, 0.5);
}

.blog-post p {
    font-size: 1.3rem;
    line-height: 1.7;
    transition: color 0.3s ease;
}

.blog-post:hover p {
    color: #fff;
}

/* Testimonials */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.testimonial {
    background: linear-gradient(135deg, var(--primary-color), #4a3c0a);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.testimonial:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 0.8rem;
    font-size: 1.6rem;
    line-height: 1.6;
}

.testimonial cite {
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.testimonial cite small {
    font-size: 1.15rem;
    color: #ccc;
    font-weight: normal;
}

/* Booking Form */
.book {
    padding-top: 1rem;
}

.discount-box {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent));
    color: black;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.discount-text {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.coupon-code {
    font-size: 1.4rem;
    font-weight: 600;
}

.code {
    background: black;
    color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-family: monospace;
    font-size: 1.6rem;
    display: inline-block;
    margin-top: 0.5rem;
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
}

.booking-intro {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.booking-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    padding: 1rem;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    background: rgba(255, 215, 0, 0.05);
    color: var(--light-text);
    font-size: 1rem;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
    color: #999;
}

.submit-btn {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: var(--accent);
}

/* Contact */
.contact {
    text-align: center;
}

.contact-info p {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.4;
}

.contact-info .address {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 3rem;
    color: var(--secondary-color);
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-info .phone {
    color: var(--secondary-color);
    font-size: 3.5rem;
    font-weight: bold;
}

.contact-info .email {
    font-size: 3rem;
    color: var(--accent);
}

.contact-info .hours {
    font-size: 2.5rem;
    font-style: italic;
}

.social {
    margin-top: 3rem;
    text-align: center;
}

.social-line {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.social-line a {
    color: var(--accent);
    text-decoration: none;
    font-weight: bold;
    font-size: 3rem;
}

.social-line a:hover {
    color: var(--secondary-color);
}

.twitter-prompt {
    font-size: 1.6rem;
    color: var(--accent);
    margin-top: 1.5rem;
    font-style: italic;
}

.twitter-prompt a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
}

.twitter-prompt a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: var(--primary-color);
    padding: 2rem;
    text-align: center;
    border-top: 3px solid var(--secondary-color);
}

.footer-content p {
    margin-bottom: 0.5rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.5s ease;
    z-index: 10000;
    border-top: 3px solid var(--secondary-color);
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cookie-content h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.cookie-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

.cookie-btn {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s;
}

.cookie-btn:hover {
    background: var(--accent);
    transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .hero-left {
        flex: 1 1 auto;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-right {
        text-align: center;
        padding-left: 0;
    }
    
    .hero-logo {
        max-width: 100%;
        width: 100%;
        height: auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .price-banner {
        font-size: 2rem;
    }
    
    .services-grid,
    .faq-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info p {
        font-size: 1.8rem;
    }
    
    .contact-info .address {
        font-size: 2rem;
    }
    
    .contact-info .phone {
        font-size: 2.2rem;
    }
    
    .contact-info .email {
        font-size: 2rem;
    }
    
    .contact-info .hours {
        font-size: 1.8rem;
    }
    
    .social p {
        font-size: 1.8rem;
    }
    
    .social a {
        font-size: 2rem;
    }
}