/* --- CUSTOMIZATION SECTION --- */
/*
  Instructions:
  1.  Replace the color hex codes below with your 3 brand colors.
      --primary-color: Your main call-to-action color (e.g., buttons).
      --secondary-color: A supporting color (e.g., secondary buttons, accents).
      --background-color: The primary background color for sections.

  2.  Replace the font family with your desired font from Google Fonts or your own.
      --heading-font: For the main logo and all headings (h1, h2, h3).
      --body-font: For all other text.

  3.  To add your logo, go to the `index.html` file and replace the text
      inside the `<div class="logo">` with an `<img>` tag pointing to your logo file.
      Example: <img src="path/to/your/logo.svg" alt="The Hoppery Logo">
*/
:root {
    /* Color Palette */
    --primary-color: #8AA5E1;    /* A vibrant blue - for buttons and highlights */
    --secondary-color: #C05952; /* A fresh mint - for secondary actions or icons */
    --background-color: #FDF6F2;/* A very light grey - for section backgrounds */
    
    /* Neutral Colors */
    --text-color-dark: #333333;
    --text-color-light: #FFFFFF;
    --border-color: #DDDDDD;

    /* Typography */
    --heading-font: 'Rancho', sans-serif;
    --body-font: 'Poppins', sans-serif;
}

/* --- General Styles & Resets --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--body-font);
    color: var(--text-color-dark);
    line-height: 1.6;
    background-color: var(--text-color-light);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

h1, h2, h3 {
    font-family: var(--heading-font);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 400;
}

h1 {
    font-size: 4rem;
}

h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
}

h3 {
    font-size: 2rem;
}

p {
    margin-bottom: 1rem;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease;
    text-align: center;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-color-light);
    border: none;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-color-light);
    border: none;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
}

/* --- Header & Navbar --- */
.header {
    background-color: var(--primary-color);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    color: var(--text-color-light);
    text-decoration: none;
}
/* If using an image logo */
.logo img {
  max-height: 50px; 
  display: block;
}


/* --- Hero Section --- */
.hero {
    padding: 4rem 0;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-text {
    flex: 1.5;
}

.hero .subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
}

/* --- UPDATED: Hero Call-to-Action Styling --- */
.hero-cta {
    margin-top: 2rem;
}
.cta-footer {
    font-size: 0.9rem;
    color: #777;
    margin-top: 1rem;
}


/* --- How It Works Section --- */
.how-it-works {
    padding: 5rem 0;
    background-color: var(--background-color);
}

.steps {
    display: flex;
    justify-content: space-between;
    text-align: center;
    gap: 2rem;
}

.step-icon {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--text-color-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

/* --- Features Section --- */
.features {
    padding: 5rem 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-color: var(--primary-color);
    color: var(--text-color-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

/* --- Coming Soon Section --- */
.coming-soon {
    padding: 5rem 0;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--text-color-light);
}
.coming-soon h2 {
    color: var(--text-color-light);
}
.app-stores {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.app-store-btn {
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--text-color-light);
    color: var(--text-color-light);
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.app-store-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* --- Footer --- */
.footer {
    background-color: #333;
    color: var(--text-color-light);
    padding: 2rem 0;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links a {
    color: var(--text-color-light);
    text-decoration: none;
    margin-left: 1.5rem;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-image {
        margin-top: 3rem;
    }
    
    .steps {
        flex-direction: column;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }
}
