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

:root {
        --primary-color: #3498db;
        --secondary-color: #2980b9;
        --background-color: #f4f4f4;
        --text-color: #333;
        --header-text-color: #f4f4f4;
        --accent-color: #e74c3c;
    }

/*
            * {
                border: solid black;
            }
*/

html, body {
    height: 100% !important;
    margin: 0;
}

body {
    display: flex !important;
    flex-direction: column !important;
    min-height: 100vh !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
}

body > main {
    flex: 1 0 auto !important;
}

body > .site-footer {
    flex-shrink: 0 !important;
    height: 80px;
    background-color: var(--primary-color);
    color: var(--header-text-color);
    line-height: 80px;
    text-align: center;
}
    
/*
body {
    display: flex;
    flex-direction: column;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    height: 100%;
    margin: 0;
    padding: 0;
}


h1 {
    font-family: 'Arial', sans-serif; /* You can replace with your preferred font */
    font-size: 2.5rem; /* Adjust size as needed */
    color: #3498db; /* This is a nice blue color, matching your theme */
    margin-bottom: 20px;
    padding-bottom: 10px;
/*    border-bottom: 2px solid #3498db; /* Adds a subtle underline */
    text-transform: uppercase; /* Optional: makes the text all caps */
    letter-spacing: 1px; /* Improves readability for uppercase text */
/*    text-align: center; /* Centers the text. Remove if you prefer left-aligned */
    line-height: 1.2; /* Improves readability */
    font-weight: 700; /* Makes the font bold */
    margin: 0.5rem;
}

/* Responsive sizing for smaller screens */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
}

/* You can add a hover effect if you want */
h1:hover {
    color: #2980b9; /* A slightly darker blue on hover */
    transition: color 0.3s ease; /* Smooth transition for color change */
}

p {
    margin: 0.5rem;
}

header {
    background-color: var(--primary-color);
    color: var(--header-text-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    text-align: center;
}

.header-text {
    color: var(--primary-color);
}

/*
footer {
    height: 80px;
    background-color: var(--primary-color);
    color: var(--header-text-color);
    line-height: 80px;
    text-align: center;
}

.site-footer {
    flex-shrink: 0;
    background-color: var(--primary-color);
}
*/



nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav ul li {
    margin: 0.5rem;
}

nav ul li a {
    color: var(--header-text-color);
    text-decoration: none;
    font-weight: 500;
}

main {
    flex: 1 0 auto;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.app-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2rem;
}

.app-icon {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.app-info h1 {
    margin: 0;
    font-size: 2rem;
}

.app-info p {
    margin: 0.5rem 0;
    color: #666;
}

.cta-button {
    background-color: var(--primary-color);
    color: var(--header-text-color);
    border: none;
    padding: .75rem 2rem;
    font-size: 1.1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.cta-button:hover {
    background-color: var(--secondary-color);
}

.app-screenshots {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
}

.screenshot {
    width: 100%;
    max-width: 300px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Added for expanded About Breakminder section */

.app-description h3 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.app-description ul, .app-description ol {
    padding-left: 1.5rem;
}

.app-description li {
    margin-bottom: 0.5rem;
}

.app-description ul {
    list-style-type: disc;
}

.app-description ol {
    list-style-type: decimal;
}

/* end added css for the about section */




.app-description, .app-features, .app-reviews {
    background-color: var(--background-color);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.feature-list {
    list-style-type: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.feature-list li::before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

.review {
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.review:last-child {
    border-bottom: none;
}

.stars {
    color: #f39c12;
}

    @media (min-width: 768px) {
        .app-header {
            flex-direction: row;
            text-align: left;
        }
        
        .app-icon {
            margin-right: 2rem;
            margin-bottom: 0;
        }
        
        .app-screenshots {
            flex-direction: row;
            justify-content: space-between;
        }
        
        .screenshot {
            width: 30%;
        }
        
        main {
            padding: 2rem;
        }
        
        .app-info h1 {
            font-size: 2.5rem;
        }
    }

#pre-order {
    max-width: 600px;
    margin: 2rem auto;
    text-align: center;
}

#checkout-button {
    background-color: var(--primary-color);
    color: var(--header-text-color);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#checkout-button:hover {
    background-color: var(--secondary-color);
}

/* Contact styles */
.contact {
  background-color: #f5f5f5;
  padding: 4rem 2rem;
  text-align: center;
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

form input,
form textarea {
  width: 100%;
  max-width: 400px;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 0.25rem;
}

form button {
  background-color: #333;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Waitlist CTA Styles */
.cta-section {
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.cta-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cta-section ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 1rem;
}

.cta-section .benefits-list li:before {
    content: "✓ ";
    color: var(--accent-color);
}

#waitlist-form {
    max-width: 400px;
    margin: 1rem auto;
}

#waitlist-form input[type="email"] {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid var(--secondary-color);
    border-radius: 4px;
}

.urgency-note {
    font-style: italic;
    color: var(--accent-color);
    margin-top: 1rem;
}

/* for the cookie banner */
        .cookie-banner {
            position: fixed;
/*
            bottom: -100%;
*/
            bottom: 0;
            left: 0;
            right: 0;
            background-color: #f1f1f1;
            padding: 20px;
            text-align: center;
            z-index: 1000;
            transition: bottom 0.5s ease-in-out;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        }
        .cookie-banner.show {
            bottom: 0;
        }
        .cookie-banner p {
            margin: 0 0 10px 0;
        }
        .cookie-banner button {
            background-color: #4CAF50;
            border: none;
            color: white;
            padding: 10px 20px;
            text-align: center;
            text-decoration: none;
            display: inline-block;
            font-size: 16px;
            margin: 4px 2px;
            cursor: pointer;
        }
