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

html {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: white;
}

/* Header & Navigation - Combined */
header {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 99;
}

.header-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    gap: 1rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    height: 100%;
}

/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
    order: -1;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

nav {
    background: transparent;
    border-bottom: none;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 0;
    margin: 0;
    align-items: center;
}

nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
    white-space: nowrap;
}

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

/* Language Switcher */
.lang-toggle {
    position: fixed;
    top: 1.2rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    letter-spacing: 0.05em;
    z-index: 101;
}

.lang-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Language Display */
.uk {
    display: none;
    visibility: hidden;
    -webkit-user-select: none;
    user-select: none;
}

body.uk-active .uk {
    display: block;
    visibility: visible;
    -webkit-user-select: auto;
    user-select: auto;
}

body.uk-active .en {
    display: none;
    visibility: hidden;
    -webkit-user-select: none;
    user-select: none;
}

/* Heading Styles */
h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

h1.uk, h2.uk {
    display: none;
}

body.uk-active h1.uk,
body.uk-active h2.uk {
    display: block;
}

body.uk-active h1.en,
body.uk-active h2.en {
    display: none;
}

h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.75rem;
    font-weight: 600;
}

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

.hero {
    text-align: center;
    padding: 2rem 0 3rem;
}

article {
    max-width: 800px;
    margin: 0 auto;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.footer-link {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.95rem;
}

.footer-link a {
    color: white;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Forms */
.vision-book-form {
    max-width: 500px;
    margin: 2rem 0;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

input,
textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: inherit;
    font-size: 1rem;
}

input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.submit-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
    font-size: 1rem;
}

.submit-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Footer */
footer {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 0;
    margin-top: 4rem;
    text-align: center;
    opacity: 0.8;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content p {
    margin: 0.5rem 0;
}

/* Responsive */
@media (max-width: 1024px) {
    nav ul {
        gap: 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        height: 60px;
        flex-wrap: nowrap;
    }

    .logo {
        font-size: 1.2rem;
        order: 1;
    }

    nav {
        order: 2;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: transparent;
        display: none;
        width: 100%;
    }

    nav.menu-open {
        display: block;
        background: rgba(102, 126, 234, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        max-height: 400px;
        overflow-y: auto;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        margin: 0;
        align-items: flex-start;
        list-style: none;
    }

    nav li {
        width: 100%;
        padding: 0.75rem 2rem;
    }

    nav a {
        display: block;
        font-size: 1rem;
        white-space: normal;
    }

    /* Show hamburger on mobile */
    .hamburger {
        display: flex;
        order: 0;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .description {
        font-size: 1rem;
    }
}
