/* style.css */

/* Define your variables at the root level */
:root {
    --main-font: 'Helvetica Neue', Arial, sans-serif;
    --main-bg-color: #f9f9f9;
    --primary-color: #3388CC;
    --secondary-color: #fff;
    --text-color: #333;
    --text-color-light: #666;
    --link-hover-color: #2872A4;
    --logo-width: 100px;
}

/* Basic reset and styling */
body, h1, h2, h3, p, ul, li, a {
    margin: 0;
    padding: 0;
    color: var(--text-color);
    text-decoration: none;
}

body {
    font-family: var(--main-font);
    background-color: var(--main-bg-color);
}

/* Container for centered content */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Navigation bar styling */
nav {
    background-color: var(--secondary-color);
    border-bottom: 1px solid #eaeaea;
}

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

nav .logo {
    width: var(--logo-width);
    height: auto;
    padding: 10px 0;
}

nav .nav-links {
    list-style: none;
    display: flex;
}

nav .nav-links li {
    margin-left: 20px;
}

nav .nav-links a {
    color: var(--text-color);
    font-weight: bold;
    padding: 10px 0;
}

nav .nav-links a:hover {
    color: var(--primary-color);
}

/* Hero section styling */
.hero {
    background-color: var(--primary-color); /* Using variable for background color */
    color: var(--secondary-color);          /* Using variable for text color */
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero .tagline {
    font-size: 1.5em;
    margin-bottom: 40px;
}

.hero .store-buttons img {
    max-width: 150px;
    margin: 0 10px;
}

.hero .promo-image {
    max-width: 100%;
    max-height: 200px; /* Set your desired maximum height */
    width: auto;
    height: auto;
    display: block;
    margin: 50px auto 0 auto; /* Center the image horizontally */
}

/* Description section styling */
.description {
    padding: 80px 0;
    background-color: var(--secondary-color);
    text-align: center;
}

.description h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
}

.description p {
    font-size: 1.1em;
    color: var(--text-color-light);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Footer styling */
footer {
    background-color: #f1f1f1;
    padding: 30px 0;
    text-align: center;
}

footer .social-media a {
    margin: 0 10px;
}

footer .social-media img {
    width: 30px;
}

footer p {
    margin-top: 20px;
    font-size: 0.9em;
    color: #999;
}

footer a {
    color: var(--primary-color);
}

footer a:hover {
    text-decoration: underline;
}

/* Contact form styling */
.contact-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
    text-align: center;
}

.contact-section h1 {
    font-size: 2.5em;
    margin-bottom: 30px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button[type="submit"] {
    padding: 15px 30px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: var(--link-hover-color);
}

/* Policy sections styling */
.policy-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
    text-align: left;
}

.policy-section h1 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 30px;
}

.policy-section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1em;
    color: var(--text-color-light);
    line-height: 1.6;
}
