/* ==========================================================================
   NaszSlub.eu - Landing Page "Coming Soon"
   Product-focused design based on dev.naszslub.eu style
   ========================================================================== */

/* CSS Variables */
:root {
    --color-text: #2c2416;
    --color-text-light: #5a4d3c;
    --color-accent: #b8a076;
    --color-accent-light: #d4c4a8;
    --color-card-bg: #fcfaf7;
    --color-card-shadow: rgba(44, 36, 22, 0.15);

    --font-script: 'Great Vibes', cursive;
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Cormorant Garamond', serif;

    --transition-default: 0.3s ease;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Background with blur effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg,
            rgba(180, 150, 120, 0.3) 0%,
            rgba(200, 170, 140, 0.2) 50%,
            rgba(160, 130, 100, 0.3) 100%),
        linear-gradient(to bottom,
            rgba(220, 200, 180, 0.8) 0%,
            rgba(200, 180, 160, 0.6) 30%,
            rgba(180, 160, 140, 0.7) 70%,
            rgba(160, 140, 120, 0.8) 100%);
    background-size: cover;
    z-index: -2;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at center bottom,
            rgba(200, 180, 160, 0.4) 0%,
            transparent 70%),
        radial-gradient(ellipse at top,
            rgba(180, 160, 140, 0.3) 0%,
            transparent 60%);
    z-index: -1;
    backdrop-filter: blur(2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 2rem;
    background: linear-gradient(to bottom,
            rgba(252, 250, 247, 0.95) 0%,
            rgba(252, 250, 247, 0.8) 50%,
            transparent 100%);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: var(--transition-default);
}

.logo:hover {
    opacity: 0.8;
}

.logo-icon {
    font-size: 1.5rem;
}

.logo-text {
    font-family: var(--font-script);
    font-size: 1.5rem;
    color: var(--color-text);
    letter-spacing: 0.02em;
}

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

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text);
    text-decoration: none;
    transition: var(--transition-default);
    cursor: default;
}

.nav-link.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.nav-link.btn {
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-text);
    border-radius: 4px;
}

.nav-link.btn.disabled {
    border-color: var(--color-text-light);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition-default);
}

/* Main Content */
.main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6rem 1.5rem 3rem;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

/* Card */
.card {
    background: var(--color-card-bg);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    max-width: 520px;
    width: 100%;
    box-shadow:
        0 25px 50px -12px var(--color-card-shadow),
        0 0 0 1px rgba(255, 255, 255, 0.5);
    text-align: center;
    position: relative;
}

/* Ornaments */
.ornament {
    display: flex;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.ornament-svg {
    width: 100px;
    height: auto;
    color: var(--color-accent);
}

.ornament-svg.small {
    width: 70px;
}

.bottom-ornament {
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Brand Name */
.brand-name {
    font-family: var(--font-script);
    font-size: 2.75rem;
    font-weight: 400;
    color: var(--color-accent);
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.brand-tagline {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    color: var(--color-text-light);
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

/* Divider */
.divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--color-accent) 50%,
            transparent 100%);
    margin: 0 auto 1.5rem;
}

/* Status Section */
.status-section {
    padding: 0.75rem 0 1.25rem;
}

.status-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 0.75rem;
    color: var(--color-accent);
    animation: pulse 2s ease-in-out infinite;
}

.status-icon svg {
    width: 100%;
    height: 100%;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.7;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.status-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.status-subtitle {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--color-text-light);
    letter-spacing: 0.02em;
    line-height: 1.6;
}

/* Features Preview */
.features-preview {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--color-accent-light);
}

.features-heading {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    list-style: none;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.75rem 0.5rem;
    border-radius: 10px;
    background: rgba(184, 160, 118, 0.08);
    transition: var(--transition-default);
}

.feature-item:hover {
    background: rgba(184, 160, 118, 0.18);
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.feature-text {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--color-text);
}

.feature-desc {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 400;
    color: var(--color-text-light);
    text-align: center;
    line-height: 1.3;
}

/* Footer Message */
.footer-message {
    font-family: var(--font-script);
    font-size: 1.15rem;
    color: var(--color-accent);
    margin-top: 0.75rem;
}

/* Site Footer */
.site-footer {
    text-align: center;
    padding: 1.5rem;
}

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

.site-footer p {
    font-size: 0.75rem;
    color: var(--color-text-light);
    opacity: 0.6;
}

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

.footer-link {
    font-size: 0.75rem;
    color: var(--color-accent);
    text-decoration: none;
    transition: var(--transition-default);
}

.footer-link:hover {
    color: var(--color-text);
    text-decoration: underline;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.75rem;
}

.lang-link,
.lang-current {
    font-size: 0.7rem;
    text-decoration: none;
    transition: var(--transition-default);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.lang-link {
    color: var(--color-text-light);
    opacity: 0.7;
}

.lang-link:hover {
    opacity: 1;
    background: rgba(184, 160, 118, 0.15);
}

.lang-current {
    color: #fff;
    font-weight: 600;
    background: rgba(184, 160, 118, 0.45);
    border-radius: 4px;
}

/* Contact link */
.nav-link.contact-trigger {
    opacity: 1;
    cursor: pointer;
}

.nav-link.contact-trigger:hover {
    color: var(--color-accent);
}

/* Contact Modal */
.contact-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 36, 22, 0.6);
    backdrop-filter: blur(6px);
    z-index: 999;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
}

.contact-overlay.active {
    display: flex;
}

.contact-modal {
    background: var(--color-card-bg);
    border-radius: 20px;
    padding: 2.5rem 2.5rem 2rem;
    max-width: 460px;
    width: 100%;
    box-shadow: 0 25px 50px -12px rgba(44, 36, 22, 0.3);
    position: relative;
    animation: fadeIn 0.4s ease-out;
}

.contact-close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-text-light);
    cursor: pointer;
    transition: var(--transition-default);
    line-height: 1;
    padding: 0.25rem;
}

.contact-close:hover {
    color: var(--color-text);
    transform: scale(1.1);
}

.contact-title {
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--color-accent);
    text-align: center;
    margin-bottom: 0.5rem;
}

.contact-subtitle {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: var(--color-text-light);
    text-align: center;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

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

.form-group label {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-text-light);
}

.form-group input,
.form-group textarea {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--color-accent-light);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.7);
    color: var(--color-text);
    transition: var(--transition-default);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-accent);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(184, 160, 118, 0.15);
}

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

.form-submit {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, var(--color-accent), #9a8560);
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    transition: var(--transition-default);
    margin-top: 0.5rem;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(184, 160, 118, 0.4);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-status {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    text-align: center;
    padding: 0.5rem;
    border-radius: 6px;
    display: none;
}

.form-status.success {
    display: block;
    color: #2d6a4f;
    background: rgba(45, 106, 79, 0.1);
}

.form-status.error {
    display: block;
    color: #c1121f;
    background: rgba(193, 18, 31, 0.1);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 768px) {
    .header {
        padding: 1rem;
    }

    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .main {
        padding: 5rem 1rem 2rem;
    }

    .card {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

    .brand-name {
        font-size: 2.25rem;
    }

    .status-title {
        font-size: 1.2rem;
    }

    .ornament-svg {
        width: 80px;
    }

    .ornament-svg.small {
        width: 50px;
    }

    .features-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .feature-item {
        padding: 0.6rem 0.4rem;
    }
}

@media (max-width: 480px) {
    .card {
        padding: 1.75rem 1.25rem;
    }

    .brand-name {
        font-size: 2rem;
    }

    .status-icon {
        width: 36px;
        height: 36px;
    }

    .status-title {
        font-size: 1.1rem;
    }

    .status-subtitle {
        font-size: 0.8rem;
    }

    .features-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
    }

    .feature-icon {
        font-size: 1.25rem;
    }

    .feature-text {
        font-size: 0.6rem;
    }

    .feature-desc {
        font-size: 0.55rem;
    }
}

/* ==========================================================================
   Animations
   ========================================================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.card {
    animation: fadeIn 0.8s ease-out;
}

.header {
    animation: fadeIn 0.6s ease-out;
}

.feature-item {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.feature-item:nth-child(1) {
    animation-delay: 0.2s;
}

.feature-item:nth-child(2) {
    animation-delay: 0.3s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.4s;
}

.feature-item:nth-child(4) {
    animation-delay: 0.5s;
}

.feature-item:nth-child(5) {
    animation-delay: 0.6s;
}

.feature-item:nth-child(6) {
    animation-delay: 0.7s;
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {

    body::before,
    .background-overlay,
    .header {
        display: none;
    }

    .card {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}