/* Base Styles and Reset */
:root {
    --primary-color: #1e3799;
    --secondary-color: #ff5722;
    --dark-blue: #0c2461;
    --light-blue: #4a69bd;
    --text-color: #333;
    --light-text: #f8f9fa;
    --background: #f8f9fa;
    --card-bg: #ffffff;
    --border-color: #e0e0e0;
    --footer-bg: #222831;
}

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

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    background-color: var(--background);
    line-height: 1.6;
}

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

a {
    text-decoration: none;
    color: var(--primary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

h2 {
    font-size: 2rem;
    margin-top: 30px;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 20px;
}

/* Header */
header {
    background-color: var(--primary-color);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-family: 'Audiowide', cursive;
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
}

nav ul {
    display: flex;
    gap: 25px;
}

nav a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    transition: all 0.3s;
}

nav a:hover, nav a.active {
    color: white;
}

.download-btn {
    background-color: var(--secondary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s;
}

.download-btn:hover {
    background-color: #e64a19;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-color));
    color: white;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-image {
    flex: 1;
    max-width: 500px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s;
    cursor: pointer;
    display: inline-block;
}

.btn.primary {
    background-color: var(--secondary-color);
    color: white;
}

.btn.primary:hover {
    background-color: #e64a19;
    transform: translateY(-2px);
}

.btn.secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn.secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Features Section */
.features {
    padding: 70px 0;
    text-align: center;
}

.features h2 {
    margin-bottom: 50px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
}

/* Download Section */
.download {
    padding: 70px 0;
    background-color: var(--light-blue);
    color: white;
    text-align: center;
}

.download h2 {
    margin-bottom: 15px;
}

.download p {
    margin-bottom: 30px;
    font-size: 1.2rem;
    opacity: 0.9;
}

.download-badge {
    display: inline-block;
    transition: all 0.3s;
}

.download-badge:hover {
    transform: translateY(-3px);
}

.download-badge img {
    height: 60px;
}

/* Page Content (Privacy, About) */
.page-content {
    padding: 50px 0;
}

.page-content h1 {
    margin-bottom: 30px;
    color: var(--primary-color);
}

.page-content h2 {
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.policy-content ul, .developer-bio ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.policy-content li, .developer-bio li {
    margin-bottom: 10px;
}

/* About Developer Page */
.developer-profile {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.profile-image {
    flex: 0 0 300px;
}

.profile-image img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.profile-info {
    flex: 1;
}

.profile-info .tagline {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-style: italic;
}

.education, .social-links {
    margin-bottom: 30px;
}

.social-links ul {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-block;
    padding: 8px 15px;
    background-color: var(--light-blue);
    color: white;
    border-radius: 4px;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

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

.project-card {
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.project-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.companies {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.company {
    padding: 10px 20px;
    background-color: #f0f0f0;
    border-radius: 4px;
    font-weight: 500;
}

.recent-work li {
    margin-bottom: 20px;
}

.recent-work h4 {
    margin-bottom: 5px;
}

/* Footer */
footer {
    background-color: var(--footer-bg);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-logo {
    font-family: 'Audiowide', cursive;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    gap: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s;
}

.footer-social a:hover {
    color: white;
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .developer-profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .social-links ul {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .feature-grid, .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-links ul {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
} 