/* Color Palette:
Deep Blue: #084B83
Maize Crayola/Gold: #EFCB68
Alice Blue/Light Greenish-Gray: #E1EFE6
Silver Sand/Gray: #AEB7B3
Walnut Brown/Dark Gray-Brown: #696047
*/

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333; /* Default text color */
    background-color: #E1EFE6; /* Alice Blue/Light Greenish-Gray for background */
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    overflow: hidden; /* Clear floats */
}

/* Header & Navigation */
header {
    background: #084B83; /* Deep Blue */
    color: #fff;
    padding-top: 20px;
    min-height: 70px;
    border-bottom: #EFCB68 3px solid; /* Maize Crayola/Gold accent */
}

header a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}

header .logo {
    float: left;
    font-size: 24px;
    font-weight: bold;
}

header nav ul {
    float: right;
    list-style: none;
}

header nav ul li {
    display: inline;
    padding: 0 20px;
}

header nav ul li a:hover {
    color: #EFCB68; /* Maize Crayola/Gold for hover */
}

/* Hamburger Menu Button - Hidden by default on larger screens */
#hamburger-menu {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    float: right;
    line-height: 70px; /* Align with nav height */
}

/* Hero Section */
.hero {
    background: #084B83; /* Deep Blue */
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

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

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

/* Buttons */
.btn {
    display: inline-block;
    background: #EFCB68; /* Maize Crayola/Gold */
    color: #084B83; /* Deep Blue text on gold button */
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background: #dcaf50; /* Darker Gold */
}

.btn-secondary {
    background: #AEB7B3; /* Silver Sand/Gray */
    color: #084B83; /* Deep Blue text */
}

.btn-secondary:hover {
    background: #939c98; /* Darker Silver Sand */
}

/* Section Padding */
.section-padding {
    padding: 40px 0;
}

/* About Snippet Section */
.about-snippet {
    background-color: #fff;
    text-align: center;
}

.about-snippet h2, .featured-app h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 30px;
    color: #084B83; /* Deep Blue for headings */
}

.about-snippet p {
    margin-bottom: 20px;
    color: #696047; /* Walnut Brown for text */
}

/* Featured App Section */
.featured-app {
    background-color: #f4f4f4; /* Light gray for contrast */
}

.app-showcase {
    display: flex;
    gap: 30px;
    align-items: center;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.app-icon-placeholder {
    flex-basis: 150px;
    height: 150px;
    background: #AEB7B3; /* Silver Sand/Gray */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 14px;
}

.app-description p {
    margin-bottom: 20px;
    color: #696047; /* Walnut Brown for text */
}

/* Footer */
footer {
    background: #696047; /* Walnut Brown/Dark Gray-Brown */
    color: #E1EFE6; /* Alice Blue/Light Greenish-Gray text */
    text-align: center;
    padding: 30px 0;
    margin-top: 30px;
}

/* Styles for About and App Pages */
.page-title {
    background-color: #084B83; /* Deep Blue */
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

.page-title h1 {
    font-size: 36px;
}

.about-content, .app-details {
    background-color: #fff;
    padding-bottom: 20px; /* Add some padding at the bottom too */
}

.about-content h2, .app-info h2 {
    color: #084B83; /* Deep Blue for headings */
    margin-bottom: 15px;
    font-size: 28px;
}

.about-content h3 {
    color: #696047; /* Walnut Brown */
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 22px;
}

.about-content p, .app-info p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #333;
}

.about-content strong {
    color: #084B83;
}

.app-info ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.app-info ul li {
    margin-bottom: 10px;
    color: #333;
}

.app-detail-flex {
    display: flex;
    gap: 40px;
    align-items: flex-start; /* Align items to the top */
}

.app-image-placeholder {
    flex-basis: 40%; /* Adjust as needed */
    background: #AEB7B3; /* Silver Sand/Gray */
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    min-height: 300px; /* Example height */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.app-image-placeholder p {
    color: #fff;
}

.app-info {
    flex-basis: 60%; /* Adjust as needed */
}

.app-store-badges img {
    height: 50px;
    margin-right: 10px;
}

/* Responsive Adjustments (Basic Example) */
@media(max-width: 768px) {
    header .logo,
    header nav ul {
        float: none;
        text-align: center;
        width: 100%;
    }

    header nav ul {
        display: none; /* Hide by default on mobile */
        flex-direction: column;
        width: 100%;
        background-color: #074273; /* Slightly darker blue for dropdown */
        position: absolute;
        top: 70px; /* Position below header */
        left: 0;
        z-index: 1000;
        padding-bottom: 10px; /* Spacing for the last item */
    }

    header nav ul.active {
        display: flex; /* Show when active */
    }

    header nav ul li {
        display: block;
        padding: 10px 0;
        width: 100%;
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    header nav ul li:first-child {
        border-top: none;
    }

    header nav ul li a {
        display: block;
        padding: 10px 20px;
    }

    #hamburger-menu {
        display: block; /* Show hamburger on mobile */
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero p {
        font-size: 18px;
    }

    .app-showcase {
        flex-direction: column;
        text-align: center;
    }

    .app-icon-placeholder {
        margin-bottom: 20px;
    }

    .app-detail-flex {
        flex-direction: column;
    }

    .app-image-placeholder {
        margin-bottom: 30px;
        min-height: 200px;
    }
} 