/* Custom Font Declarations */
@font-face {
    font-family: 'Dune Rise';
    src: url('assets/fonts/Dune_Rise.woff2') format('woff2'),
         url('assets/fonts/Dune_Rise.woff') format('woff'),
         url('assets/fonts/Dune_Rise.ttf') format('truetype'),
         url('assets/fonts/Dune_Rise.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --text-grey: #6c757d;
    --secondary-color: #3498db;
}

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

body {
    font-family: 'Dune Rise', sans-serif;
    line-height: 1.6;
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: transparent;
}

.logo h1 {
    display: flex;
    align-items: flex-end;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-grey);
    margin-left: 30px;
    font-weight: normal;
}

/* Hero Section Styling */
.hero-do {
    font-weight: normal;
    color: var(--text-grey);
    font-size: 1.4em;
    line-height: 1;
}

.hero-it {
    color: var(--secondary-color);
    font-size: 1.4em;
    line-height: 1;
}

.hero-bpo {
    font-weight: normal;
    font-size: 0.9em;
    color: var(--secondary-color);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    margin-left: -0.1em;
    line-height: 1;
}

.hero {
    padding: 100px 0;
    text-align: center;
    background: transparent;
}

.hero h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--text-grey);
    font-weight: normal;
}

.hero h2 .highlight {
    color: var(--secondary-color);
}

.hero-lead {
    font-size: 1.6rem;
    color: var(--text-grey);
    margin-bottom: 15px;
    font-weight: normal;
}

.hero-mission {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: normal;
    max-width: 600px;
    margin: 0 auto;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-grey);
}

/* About Section */
.about {
    padding: 50px 0;
    background: transparent;
}

.about h2 {
    font-size: 1.4rem;
    color: var(--text-grey);
    margin-bottom: 16px;
    text-align: center;
    font-weight: normal;
}

.about-text {
    font-size: 0.95rem;
    color: var(--secondary-color);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Section */
.contact {
    padding: 50px 0;
    background: transparent;
}

.contact h2 {
    font-size: 1.4rem;
    color: var(--text-grey);
    margin-bottom: 16px;
    text-align: center;
    font-weight: normal;
}

.contact-info {
    text-align: center;
    margin-bottom: 25px;
    font-size: 0.95rem;
    color: var(--text-grey);
}

.contact-info a {
    color: var(--secondary-color);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-form {
    background: rgba(255, 255, 255, 0.7);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    backdrop-filter: blur(10px);
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 6px;
    color: var(--text-grey);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    font-family: 'Montserrat', sans-serif;
    color: #aaa;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 1em;
    padding-right: 40px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background-color: var(--secondary-color);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    width: 100%;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #2980b9;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer .copyright {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.footer .company-info {
    font-size: 0.9rem;
}

.footer a {
    color: #3498db;
    text-decoration: none;
}

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

/* Apps Section */
.apps {
    padding: 50px 0;
    background-color: #fff;
}

.apps h2 {
    font-size: 1.4rem;
    color: var(--text-grey);
    margin-bottom: 30px;
    text-align: center;
    font-weight: normal;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.app-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.app-card:hover {
    transform: translateY(-5px);
}

.app-card h3 {
    font-size: 1.2rem;
    color: var(--text-grey);
    margin-bottom: 15px;
    font-weight: normal;
}

.app-screenshots {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
}

.app-screenshot {
    width: 45%;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.app-description {
    font-size: 0.9rem;
    color: var(--text-grey);
    margin-bottom: 20px;
    line-height: 1.5;
}

.app-store-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.app-store-button img,
.play-store-button img {
    height: 40px;
    width: auto;
} 