@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&display=swap');

:root {
    --bg-color: #ffffff;
    --text-color: #111111;
    --secondary-text: #666666;
    --accent-color: #f39c12;
    /* Rosta Orange */
    --shift-red: #e74c3c;
    --shift-green: #2ecc71;
    --shift-blue: #3498db;
    --shift-yellow: #f1c40f;
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Accessibility */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--text-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0 0 8px 8px;
    text-decoration: none;
    font-size: 0.9rem;
    z-index: 9999;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 3px;
    border-radius: 4px;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Base Layout */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

header {
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #f0f0f0;
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.05em;
    text-decoration: none;
    color: var(--text-color);
}

/* Language Selector */
.lang-selector {
    display: flex;
    gap: 1rem;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--secondary-text);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 400;
    transition: var(--transition);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.lang-btn:hover {
    color: var(--text-color);
}

.lang-btn.active {
    color: var(--text-color);
    font-weight: 600;
    background: #f0f0f0;
}

/* Hero Section */
.hero {
    padding: 10rem 0;
    text-align: center;
}

.hero h1 {
    font-size: clamp(3rem, 10vw, 5rem);
    font-weight: 300;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero p {
    font-size: 1.25rem;
    color: var(--secondary-text);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-weight: 300;
}

/* Content Section (Privacy Policy) */
.content-section {
    padding: 4rem 0 10rem;
    max-width: 700px;
}

.content-section h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.policy-section {
    position: relative;
    margin-bottom: 3rem;
}

.policy-content h3 {
    color: var(--text-color);
    margin: 0;
    position: sticky;
    top: 110px;
    /* Increased offset to accommodate header + spacing */
    background: var(--bg-color);
    padding: 1.5rem 0 1rem;
    z-index: 10;
    font-weight: 600;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.policy-content h3::before {
    content: '';
    width: 4px;
    height: 1.25rem;
    background: var(--accent-color);
    border-radius: 2px;
}

.policy-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.policy-list {
    list-style: none;
    margin: 1.5rem 0;
    padding-left: 0.5rem;
}

.policy-list-item {
    margin-bottom: 0.75rem;
    color: var(--secondary-text);
    position: relative;
    padding-left: 1.5rem;
}

.policy-list-item::before {
    content: '•';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Decorations */
.shift-circles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
    animation: float 20s infinite alternate;
}

.circle-1 {
    top: -10%;
    left: -5%;
    background: var(--shift-red);
}

.circle-2 {
    top: 60%;
    right: -5%;
    background: var(--shift-green);
    animation-delay: -5s;
}

.circle-3 {
    bottom: -10%;
    left: 20%;
    background: var(--shift-blue);
    animation-delay: -10s;
}

.circle-4 {
    top: 20%;
    right: 20%;
    background: var(--shift-yellow);
    animation-delay: -15s;
}

@keyframes float {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(40px, 40px);
    }
}

.app-icon {
    width: 160px;
    height: 160px;
    margin-bottom: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn {
    background: var(--accent-color);
}

/* Footer */
footer {
    padding: 4rem 0;
    border-top: 1px solid #eee;
    text-align: center;
    color: var(--secondary-text);
    font-size: 0.9rem;
}

footer a {
    color: var(--secondary-text);
    text-decoration: none;
    margin: 0 1rem;
    transition: var(--transition);
}

footer a:hover {
    color: var(--text-color);
}

/* Utilities */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--text-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 400;
    transition: var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1,
.hero p,
.hero .btn {
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
}

.hero p {
    animation-delay: 0.2s;
}

.hero .btn {
    animation-delay: 0.4s;
}

/* Responsive */
@media (max-width: 768px) {
    .lang-selector {
        gap: 0.5rem;
    }

    .lang-btn {
        font-size: 0.8rem;
    }
}

.contact-section {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

.contact-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    text-align: center;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    color: var(--secondary-text);
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 1px solid #eee;
    border-radius: 12px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(243, 156, 18, 0.1);
}

.contact-form .btn {
    border: none;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 1rem;
    width: 100%;
}

.form-success-msg {
    display: none;
    text-align: center;
    color: var(--shift-green);
    margin-top: 2rem;
    font-weight: 400;
}