/* General Styling */
body {
    font-family: 'Lato', sans-serif;
    color: #F5F5F5;
    background-color: #1A1A1A;
    margin: 0;
    line-height: 1.7;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    color: #FFFFFF;
    line-height: 1.2;
}

h1.logo {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    padding-left: 10px;
}

.logo-image {
    max-width: 70px;
    height: auto;
    border-radius: 8px;
}

.section-title, .page-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.hero-subheadline {
    font-size: 1.5rem;
    color: #F5F5F5;
    margin-bottom: 2rem;
}

/* Header & Navigation */
.header {
    background-color: rgba(26, 26, 26, 0.9);
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #FFFFFF;
}

.nav-link {
    color: #F5F5F5;
    text-decoration: none;
    margin-left: 15px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: #B8860B;
}

/* Hero Section */
.hero-section {
    background-color: #1A1A1A;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.2) 0%, transparent 60%);
    background-size: 50% 100%;
    animation: flow-effect 20s linear infinite;
    opacity: 0.8;
}

@keyframes flow-effect {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0%);
    }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-button {
    display: inline-block;
    background-image: linear-gradient(to right, #5A472E, #B8860B);
    color: #FFFFFF;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 5px;
    font-weight: bold;
    transition: background-image 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-image: linear-gradient(to right, #B8860B, #5A472E);
    transform: translateY(-2px);
}

/* General Page Sections */
.page-section {
    padding: 5rem 0;
}

.problem-section {
    background-color: #282828;
    padding: 5rem 0;
    text-align: center;
}

.problem-section .section-text {
    max-width: 700px;
    margin: 0 auto;
}

.solution-section {
    background-color: #212121;
    padding: 5rem 0;
    text-align: center;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.solution-item {
    background-color: #282828;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
}

.solution-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.solution-icon-svg {
    width: 100%;
    height: 100%;
    color: #B8860B; /* Match the gold accent color */
}

/* Testimonials */
.testimonial-section {
    background-color: #282828;
    padding: 5rem 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: #333333;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #B8860B;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: bold;
    text-align: right;
    color: #FFFFFF;
}

/* Blog Page */
.blog-section {
    background-color: #1a1a1a;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-post {
    background-color: #242424;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h4 {
    color: #E3C279;
    margin-top: 0;
}

.blog-snippet {
    color: #b0b0b0;
}

.blog-read-more {
    display: inline-block;
    padding-top: 1rem;
    color: #E3C279;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-read-more:hover {
    color: #FFD700;
}

/* Blog Post Page */
.blog-post-content h2,
.blog-post-content h3 {
    text-align: left;
}

.blog-post-content p {
    color: #b0b0b0;
}

.blog-post-content ul li {
    color: #b0b0b0;
}

.blog-meta {
    color: #777;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}


/* Dividers and Accents */
.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    margin: 1rem auto 0;
    background-image: linear-gradient(to right, #B8860B, #5A472E);
}

/* About Page */
.about-section {
    text-align: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 2rem;
}

.about-text {
    max-width: 800px;
    text-align: left;
}

blockquote {
    border-left: 4px solid #B8860B;
    padding-left: 1rem;
    margin: 2rem 0;
    font-style: italic;
}

/* Contact Page */
.contact-section {
    text-align: center;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #C4C4C4;
    border-radius: 5px;
    font-family: 'Lato', sans-serif;
    background-color: #333333;
    color: #F5F5F5;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

/* Waitlist Form on Blog Post */
.waitlist-form {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.waitlist-cta {
    font-weight: bold;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.waitlist-form-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.waitlist-form-group input[type="email"],
.waitlist-form-group .cta-button {
    width: 100%;
}


/* Footer */
.footer {
    background-color: #0D0D0D;
    color: #F5F5F5;
    padding: 2rem 0;
    text-align: center;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-links a {
    color: #F5F5F5;
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #B8860B;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        text-align: center;
    }

    .nav {
        margin-top: 1rem;
    }

    .nav-link {
        margin: 0 10px;
    }

    .hero-headline {
        font-size: 2.5rem;
    }

    .solution-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
/* Timeline specific styles */
.timeline-section {
    background-color: #1a1a1a;
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 20px; /* Adjust padding for mobile */
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background-color: #E3C279;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(227, 194, 121, 0.5);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 40px;
}

.timeline-dot {
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    background-color: #E3C279;
    border-radius: 50%;
    transform: translateX(-50%);
    border: 3px solid #1a1a1a;
    z-index: 1;
    box-shadow: 0 0 10px rgba(227, 194, 121, 0.5);
}

.timeline-content {
    background-color: #242424;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #333;
    color: #b0b0b0;
}

.timeline-content h4 {
    color: #E3C279;
    margin-top: 0;
}
