:root {
    --primary-color: #094B82; /* Main brand color */
    --primary-light: #1a5c93; /* Lighter shade for hover states */
    --primary-dark: #073d6b; /* Darker shade for active states */
    --text-color: #333333;
    --background-light: #f8f9fa;
    --white: #ffffff; /* White color variable */
}

html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* viewport height */
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

main {
    flex: 1 0 auto; /* This makes the main content area expand to fill available space */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px; /* Increased padding for more spacious layout */
}

/* Updated Header Styles */
.main-header {
    background-color: var(--white); /* Changed from black to white */
    padding: 1.5rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    align-items: center;
    /* justify-content: space-between;  // Uncomment if you have content on the right */
}

.logo-container {
    display: flex;
    align-items: center;
}

.header-logo {
    height: 50px;
    width: auto;
    display: block;
    margin-right: 0;
}

/* Optional: If you have other header items and want the logo to stick left */
.main-header .container {
    display: flex;
    align-items: center;
}

@media (max-width: 600px) {
    .header-logo {
        height: 30px;
    }
}

.brand-link {
    text-decoration: none; /* Remove underline */
    display: inline-block;
}

.brand-name {
    color: #094B82;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 0.5px;
}

/* Optional hover effect */
.brand-link:hover .brand-name {
    opacity: 0.9;
    transition: opacity 0.2s;
}

/* Updated Hero Section Styles */
.hero {
    padding: 4rem 0; /* Reduced padding since we now have the hero image above */
    background-color: var(--white);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 6rem;
    min-height: 300px; /* Set a minimum height for the content */
}

.text-box {
    flex: 1;
    height: 100%;
}

.text-box h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.text-box .subtitle {
    font-size: 18px;
    color: var(--text-color);
    line-height: 1.6;
}

.text-box .tagline {
    font-size: 1.5rem;
    color: var(--text-color);
    font-weight: 600;
}

.hero-image {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-width: 300px;
}

/* Separator */
.separator {
    height: 6rem;
    background-color: #000000;
    margin: 0rem 0;
}

/* Download Section */
.download {
    padding: 2rem 0;
    background-color: var(--background-light);
    text-align: center;
}

.download-content {
    max-width: 600px;
    margin: 0 auto;
}

.download h2 {
    font-size: 2rem;
    color: var(--primary-color); /* Using new main color */
    margin-bottom: 1rem;
    margin-top: auto;
}

.store-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.store-buttons a {
    display: flex; /* Added to ensure consistent sizing */
    justify-content: center;
    align-items: center;
    width: 180px; /* Fixed width for both buttons */
}

.store-buttons img {
    width: 180px; /* Fixed width */
    height: 52px; /* Fixed height */
    object-fit: contain;
    transition: transform 0.2s;
}

.store-buttons img:hover {
    transform: scale(1.05);
}

/* Updated Footer Styles */
footer {
    background-color: #000000;
    padding: 2rem 0;
}

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

.footer-copyright {
    color: var(--white);
    font-size: 0.9rem;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-nav a,
.footer-nav a:visited,
.footer-nav a:link,
.footer-nav a:active,
.footer-nav a:hover {
    color: var(--white) !important;
    text-decoration: none !important;
    font-size: 0.9rem;
    transition: opacity 0.2s;
}

.footer-nav a:hover {
    opacity: 0.8;
}

.footer-separator {
    color: var(--white);
    opacity: 0.5;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-nav {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .footer-separator {
        display: none;
    }
}

/* Content Separator */
.content-separator {
    height: 2px;
    background-color: BLACK;
}

/* Footer Separator */
.footer-separator {
    color: var(--white);
    opacity: 0.5;
    margin: 0 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .text-box h1 {
        font-size: 2rem;
    }

    .text-box .subtitle,
    .text-box .tagline {
        font-size: 16px; /* Slightly smaller on mobile */
    }

    .hero-image img {
        height: 250px; /* Slightly smaller on mobile */
    }

    .store-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .store-buttons a {
        width: 160px; /* Slightly smaller on mobile */
    }

    .store-buttons img {
        width: 160px;
        height: 48px;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .brand-name {
        font-size: 1.75rem;
    }
}

/* Privacy Policy Styles */
.privacy-content {
    padding: 4rem 0;
}

.privacy-content h1 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.privacy-content h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.privacy-content h3 {
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem;
}

.privacy-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.privacy-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.privacy-section {
    margin: 2rem 0;
}

.privacy-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.privacy-content li {
    margin-bottom: 0.5rem;
}

address {
    font-style: normal;
    margin: 1rem 0;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .privacy-content {
        padding: 2rem 0;
    }

    .privacy-content h1 {
        font-size: 1.75rem;
    }

    .privacy-content h2 {
        font-size: 1.25rem;
    }

    .privacy-content h3 {
        font-size: 1.1rem;
    }
}

/* Updated styles for the new content */
.hero {
    padding: 6rem 0;
    background-color: var(--white);
}

.text-box h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.text-box .subtitle {
    font-size: 18px;
    color: var(--text-color);
    line-height: 1.6;
}

.info-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.info-content {
    max-width: 900px;
    margin: 0 auto;
}

.main-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.cta-text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 3rem 0;
    }

    .text-box h1 {
        font-size: 2rem;
    }

    .text-box .subtitle {
        font-size: 16px;
    }

    .info-section {
        padding: 3rem 0;
    }

    .main-description,
    .cta-text {
        font-size: 16px;
        padding: 0 1rem;
    }
}

/* Add these styles for the hero image */
.hero-image-section {
    width: 100%;
    height: 33.33vh; /* One third of viewport height as requested earlier */
    overflow: hidden;
}

.hero-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This ensures the image covers the area without distortion */
    display: block;
}

/* Add these styles for the impressum page */
.impressum-content {
    padding: 4rem 0;
}

.impressum-content h1 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.company-info {
    max-width: 800px;
    margin: 0 auto;
}

.company-info h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.company-info h3 {
    font-size: 1.1rem;
    margin: 1.5rem 0 0.5rem;
    color: var(--primary-color);
}

.company-info p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.company-info address {
    font-style: normal;
    margin: 1.5rem 0;
    line-height: 1.6;
}

.contact-info {
    margin: 1.5rem 0;
}

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

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

.management-info,
.register-info,
.tax-info,
.responsibility-info {
    margin: 1.5rem 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .impressum-content {
        padding: 2rem 0;
    }

    .impressum-content h1 {
        font-size: 1.75rem;
    }

    .company-info h2 {
        font-size: 1.25rem;
    }

    .company-info h3 {
        font-size: 1rem;
    }
} 