/* style.css */

/* Universal reset and box-sizing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Basic typography using Roboto */
body, h1, p, a, form, input, button, textarea {
    font-family: 'Roboto', sans-serif;
    color: #333;
    text-decoration: none;
}

/* Subtle background for body */
body {
    background: linear-gradient(135deg, #f7f7f7, #f0f0f0);
    min-height: 100vh;
    position: relative;
}

/* Wave shape containers */
.top-wave {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: translateY(-1px);
}
.top-wave svg {
    display: block;
    width: calc(135% + 1.3px);
    height: 150px;
}
.bottom-wave {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: translateY(1px);
    position: relative;
    z-index: -1;
}
.bottom-wave svg {
    display: block;
    width: calc(135% + 1.3px);
    height: 150px;
}
.shape-fill {
    fill: #fff;
}

/* Home container for the index page */
.home-container {
    width: 90%;
    max-width: 600px;
    background-color: #fff;
    margin: 60px auto;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    z-index: 10;
}

.home-container-left {
    width: 90%;
    max-width: 600px;
    background-color: #fff;
    margin: 60px auto;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    z-index: 10;
    text-align: left;
}


/* Footer styling */
.footer-section {
    position: relative;
    margin-top: 60px;
}
.footer-text {
    text-align: center;
    background-color: #fff;
    padding: 20px;
    margin-top: -5px;
    font-size: 0.9em;
    color: #999;
}

/* Logo styling */
.logo {
    max-width: 120px;
    display: block;
    margin: 0 auto 20px auto;
}

/* Title styling */
.title {
    font-size: 2em;
    margin-bottom: 30px;
    color: #444;
}

/* Navigation buttons container */
.nav-buttons {
    display: flex;
    justify-content: center;
    gap: 10px; /* Space between buttons */
    margin-bottom: 30px; /* Space below buttons */
}

/* Button styles */
.btn {
    padding: 14px 24px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-weight: bold;
    color: #333;
    transition: background-color 0.3s, transform 0.2s;
    min-width: 120px; /* Ensures consistent button sizing */
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn:hover {
    background-color: #ddd;
    transform: translateY(-2px);
}

/* App Store badge container */
.app-store-badge {
    text-align: center;
    margin: 0 auto;
}

/* App Store badge image styling */
.app-store-badge img {
    max-width: 200px;
    transition: transform 0.2s;
}
.app-store-badge img:hover {
    transform: scale(1.05);
}
/* Support form styling */
.support-form {
    text-align: left;
    margin: 0 auto;
    max-width: 400px;
}

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

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

.support-form .form-group input[type="text"],
.support-form .form-group input[type="email"],
.support-form .form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 6px;
}

/* Add focus outline and hover effect for better UX */
.support-form .form-group input[type="text"]:focus,
.support-form .form-group input[type="email"]:focus,
.support-form .form-group textarea:focus {
    outline: none;
    border-color: #888;
    box-shadow: 0 0 4px rgba(136,136,136,0.25);
}
