:root {
    --brand-blue: #30C4DC; /* Light blue from hashtag icon */
    --brand-yellow: #FFCC33; /* Yellow/gold from thumbs up */
    --brand-pink: #E57B94; /* Pink/red from heart icon */
    --brand-dark: #212529; /* Dark color for text */
    --brand-light: #f8f9fa; /* Light background color */
    --brand-gray: #6c757d; /* Medium gray for secondary elements */
    --brand-light-gray: #e9ecef; /* Light gray for backgrounds */
    
    /* Set primary and other colors to use our brand colors */
    --primary-color: var(--brand-blue);
    --secondary-color: var(--brand-gray);
    --dark-color: var(--brand-dark);
    --light-color: var(--brand-light);
    --light-gray: var(--brand-light-gray);
    --dark-gray: #495057;
    --border-radius: 0.5rem;
    --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
}

/* Header */
.header {
    top: 0;
    background-color: white;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    z-index: 1000;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.hero h1 {
    font-weight: 800;
    line-height: 1.2;
}

.hero-features {
    margin: 2rem 0;
}

.hero-feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.hero-feature i {
    margin-right: 0.75rem;
    font-size: 1.25rem;
}

.hero-image {
    border-radius: var(--border-radius);
    overflow: hidden;
}

/* Typing Animation Demo */
.typing-demo-container {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin: 2rem;
}

.typing-demo-header {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid var(--light-gray);
}

.typing-demo-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 0.75rem;
    font-size: 1.25rem;
}

.typing-demo-info {
    display: flex;
    flex-direction: column;
}

.typing-demo-business {
    font-weight: 600;
    font-size: 1rem;
}

.typing-demo-time {
    font-size: 0.8rem;
    color: var(--secondary-color);
}

.typing-demo-content {
    padding: 1.5rem;
    min-height: 200px;
    position: relative;
    font-size: 1rem;
    line-height: 1.5;
    background-color: #f8f9fa;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.post-image-placeholder {
    margin: 1rem;
    text-align: center;
}

.post-image-placeholder img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.typing-cursor {
    display: inline-block;
    width: 2px;
    animation: blink 1s step-end infinite;
    font-weight: bold;
}

@keyframes blink {
    from, to {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

.typing-demo-image {
    padding: 0 1rem 1rem;
}

.typing-demo-image img {
    border-radius: var(--border-radius);
    width: 100%;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: -1;
}

/* Feature Cards */
.feature-card {
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.2);
}

.feature-card h3 {
    font-weight: 700;
    margin-bottom: 1rem;
}

/* How It Works Section */
.step-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--brand-blue);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

/* Alternate colors for step numbers */
.step-card:nth-child(2) .step-number {
    background-color: var(--brand-yellow);
    color: var(--brand-dark);
}

.step-card:nth-child(3) .step-number {
    background-color: var(--brand-pink);
}

/* Waitlist Section */
.waitlist {
    background-color: white;
    position: relative;
}

.waitlist-feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.waitlist-feature i {
    margin-right: 0.75rem;
    font-size: 1.25rem;
}

.waitlist-form-container {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Testimonial Cards */
.testimonial-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.testimonial-content {
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author-info h5 {
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.testimonial-author-info p {
    margin-bottom: 0;
    font-size: 0.875rem;
}

/* FAQ Section */
.accordion-button:not(.collapsed) {
    background-color: var(--light-gray);
    color: var(--brand-blue);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.125);
}

/* Promo Banner Styling */
.promo-banner {
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-pink))!important;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
    color: white;
    padding: 1.5rem;
}

.promo-badge {
    display: inline-block;
    background-color: var(--brand-yellow);
    color: var(--brand-dark);
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    margin-bottom: 0.5rem;
}

.countdown-container {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius);
    padding: 1rem;
}

.countdown-label {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.countdown-display {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: white;
}

/* Sticky Header with CTA */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 0.75rem 0;
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.sticky-header.visible {
    transform: translateY(0);
}

/* Benefits Section */
.benefit-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: rgba(48, 196, 220, 0.1);
    color: var(--brand-blue);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    transition: transform 0.3s ease;
}

/* Alternate colors for benefit icons */
.benefit-card:nth-child(2) .benefit-icon {
    background-color: rgba(255, 204, 51, 0.1);
    color: var(--brand-yellow);
}

.benefit-card:nth-child(3) .benefit-icon {
    background-color: rgba(229, 123, 148, 0.1);
    color: var(--brand-pink);
}

.benefit-icon:hover {
    transform: scale(1.05);
}

.benefit-card h3 {
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
}

.footer h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.social-links {
    display: flex;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    margin-right: 0.75rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--brand-blue);
    color: white;
    transform: translateY(-3px);
}

/* Alternate hover colors for social links */
.social-link:nth-child(2):hover {
    background-color: var(--brand-yellow);
    color: var(--brand-dark);
}

.social-link:nth-child(3):hover {
    background-color: var(--brand-pink);
}

.social-link:nth-child(4):hover {
    background-color: var(--brand-blue);
}

/* Buttons */
.btn-primary {
    background-color: var(--brand-blue);
    border-color: var(--brand-blue);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    background-color: #28b1c8;
    border-color: #28b1c8;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-outline-primary {
    border-color: var(--brand-blue);
    color: var(--brand-blue);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--brand-blue);
    border-color: var(--brand-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Add animations to all buttons */
.btn {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero {
        padding: 3rem 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .feature-icon, .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .waitlist-form-container {
        padding: 1.5rem;
    }
}

/* New Styles for Generated Info */
.hero-buttons {
    margin-top: 10px;
    /* Centering Hero Buttons and Generated Info */
    display: flex;
    justify-content: center;
    gap: 10px;
}

.generated-info {
    display: flex;
    margin-top: 10px;
    justify-content: center;
    margin-bottom: 10px;
}

.hand-drawn-arrow {
    width: 50px;
    margin-right: 10px;
}

.generated-text {
    font-size: 14px;
    color: #555;
}

/* Bootstrap overrides */
.text-primary {
    color: var(--brand-blue) !important;
}

/* Add colorful wave backgrounds to sections */
.benefits {
    position: relative;
    background-color: var(--brand-light);
}

.benefits::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-yellow), var(--brand-pink));
    opacity: 0.7;
}

.features {
    position: relative;
    background-color: var(--brand-light);
}

.features::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--brand-pink), var(--brand-blue), var(--brand-yellow));
    opacity: 0.7;
}

/* Add subtle animations to cards */
.feature-card, .benefit-card, .testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover, .benefit-card:hover, .testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Feature highlight items styling */
.feature-highlight-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.feature-highlight-item i {
    margin-right: 1rem;
    font-size: 1.5rem;
    padding-top: 0.25rem; /* This aligns the icon with the heading text */
}

.feature-highlight-item h4 {
    margin-top: 0;
}

/* CTA section styling update */
.cta {
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-pink))!important;
}

/* --- Pricing Page Ribbon/Badge Styling --- */
.pricing-card {
  position: relative;
  overflow: visible;
}

.popular-badge {
  position: absolute;
  top: 18px;
  left: -32px;
  transform: rotate(-18deg);
  padding: 0.4em 2.2em;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 0.5em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  z-index: 2;
  letter-spacing: 0.03em;
  border: 2px solid #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.08);
}

@media (max-width: 576px) {
  .popular-badge {
    font-size: 0.85rem;
    padding: 0.3em 1.2em;
    top: 12px;
    left: -18px;
  }
}

/* Mobile Padding Adjustments for Landing Page Elements */
@media (max-width: 767px) {
    /* "Post Now" and "Schedule for Later" buttons in the typing demo */
    .typing-demo-container .hero-buttons .btn {
        padding-left: 1rem;   /* Add horizontal padding to the buttons */
        padding-right: 1rem;
        padding-top: 0.6rem;    /* Adjust vertical padding */
        padding-bottom: 0.6rem;
        margin-bottom: 0.5rem; /* Add some margin if they stack or for spacing */
    }
    /* Container for these buttons */
    .typing-demo-container .hero-buttons {
        margin-bottom: 0.75rem; /* Space below the button group */
        padding-left: 0.5rem; /* Add some padding to the container itself */
        padding-right: 0.5rem;
    }

    /* "All images and text generated by Social Post Writer" text */
    .typing-demo-container .generated-info {
        padding: 0.75rem 1rem; /* Add padding around the text */
        margin-bottom: 0.5rem; /* Ensure space at the bottom of its container */
    }
    .typing-demo-container .generated-info .generated-text { /* If text is wrapped */
        font-size: 0.9em; /* Make text slightly smaller if cramped */
    }

    /* "CLAIM NOW" button in the promo banner */
    .promo-banner .countdown-container .btn.btn-warning,
    .promo-banner .countdown-container .btn-claim-now { /* A common custom class name */
        padding: 0.8rem 1.75rem; /* Generous padding for the button */
        margin-top: 0.75rem; /* Added top margin for spacing above the button */
        margin-bottom: 0.75rem;  /* Space below the button */
        display: block;         /* Make it block to center easily */
        margin-left: auto;
        margin-right: auto;
        width: auto;            /* Let it size to content + padding */
        max-width: 90%;         /* Prevent it from being too wide */
    }

    /* Text below "CLAIM NOW" button (e.g., "No credit card required") */
    .promo-banner .countdown-container p { 
        padding: 0 0.75rem;      /* Add some horizontal padding to the text */
        margin-top: 0.25rem;    /* Adjust top margin */
        margin-bottom: 0.5rem; /* Ensure some space below it */
        text-align: center;
        font-size: 0.9rem;
    }
    
    /* Add some padding to the container of the countdown elements */
    .promo-banner .countdown-container {
        padding-top: 1rem;
        padding-bottom: 0.75rem; /* Ensure enough space at the bottom */
    }

    /* Specific top padding for the CLAIM NOW button's column on mobile */
    .promo-banner .col-lg-2.text-center {
        padding-top: 20px;
    }
}
