/*
Theme Name: NaNo ASMR
Theme URI: https://nanoasmr.pl/
Author: NaNo ASMR
Description: Salonu zabiegów relaksacyjnych NaNo ASMR w Siedlcach.
Version: 1.0.2
Text Domain: nano-asmr
*/

:root {
    --bg-main: #0a0a0c;
    --bg-light: #faf7f2;
    --accent-gold: #d4af37;
    --text-main: #111111;
    --text-light: #fdfdfd;
}

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

body {
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: var(--bg-main);
    color: var(--text-light);
    line-height: 1.6;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* Layout */

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */

header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 10, 12, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 0;
}

.logo {
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.logo span {
    color: var(--accent-gold);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
}

.nav-links a {
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.25rem;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.2s ease-out;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile nav */

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-light);
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        background: rgba(10, 10, 12, 0.98);
        flex-direction: column;
        width: 100%;
        max-width: 260px;
        padding: 1rem 1.5rem;
        border-left: 1px solid rgba(212, 175, 55, 0.2);
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        transform: translateY(-10px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease-out, transform 0.2s ease-out;
    }

    .nav-links.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-toggle {
        display: flex;
    }
}

/* Hero */

.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 3.5rem 0 4.5rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 0%, rgba(212, 175, 55, 0.15), transparent 55%),
                radial-gradient(circle at 80% 100%, rgba(212, 175, 55, 0.1), transparent 55%);
    z-index: -1;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.25rem;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--accent-gold);
}

.hero-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 500;
    margin-bottom: 1rem;
}

.hero-title span {
    color: var(--accent-gold);
}

.hero-subtitle {
    font-size: 0.98rem;
    max-width: 32rem;
    color: #d4d4d4;
    margin-bottom: 1.8rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.btn-primary {
    padding: 0.7rem 1.6rem;
    border-radius: 999px;
    border: none;
    background: var(--accent-gold);
    color: #111;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, background 0.15s ease-out;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    background: #f1d676;
}

.btn-outline {
    padding: 0.7rem 1.3rem;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.6);
    background: transparent;
    color: var(--accent-gold);
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.15s ease-out, color 0.15s ease-out, border-color 0.15s ease-out;
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: var(--accent-gold);
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.8rem;
    color: #b5b5b5;
}

.hero-meta strong {
    display: block;
    color: var(--accent-gold);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.15rem;
}

.hero-card {
    background: linear-gradient(135deg, #141419, #0b0b0d);
    border-radius: 1.6rem;
    padding: 1.6rem 1.5rem 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 22px 60px rgba(0,0,0,0.7);
    max-width: 360px;
    margin-left: auto;
}

.hero-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.1rem;
}

.hero-card-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #d4d4d4;
}

.hero-card-pill {
    font-size: 0.7rem;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.6);
    color: var(--accent-gold);
}

.hero-card-highlight {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}

.hero-card-text {
    font-size: 0.8rem;
    color: #bbbbbb;
    margin-bottom: 1rem;
}

.hero-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    font-size: 0.72rem;
}

.tag {
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 900px) {
    .hero {
        padding-top: 2.5rem;
    }
    .hero-card {
        margin: 1rem 0 0;
        max-width: 100%;
    }
}

/* Sections */

section {
    padding: 4rem 0;
}

.section-light {
    background: var(--bg-light);
    color: var(--text-main);
}

.section-dark {
    background: #050507;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-kicker {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    color: var(--accent-gold);
    margin-bottom: 0.4rem;
}

.section-title {
    font-size: 1.7rem;
    font-weight: 500;
}

.section-subtitle {
    font-size: 0.95rem;
    max-width: 30rem;
    margin: 0.4rem auto 0;
    color: #555;
}

/* About */

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
}

.about-text {
    font-size: 0.95rem;
}

.about-text p + p {
    margin-top: 0.8rem;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.2rem;
    margin-top: 1.8rem;
}

.about-highlight {
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    background: #f0e6d6;
    border: 1px solid rgba(0,0,0,0.04);
    font-size: 0.85rem;
}

.about-highlight strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #8a6a1e;
    margin-bottom: 0.25rem;
}

.about-photo {
    position: relative;
    border-radius: 1.8rem;
    overflow: hidden;
    min-height: 260px;
    background: linear-gradient(145deg, #101014, #19171d);
    border: 1px solid rgba(0,0,0,0.4);
    display: flex;
    align-items: stretch;
    padding: 0.25rem;
}

.about-photo-inner {
    border-radius: 1.5rem;
    background-image: linear-gradient(135deg, rgba(0,0,0,0.2), rgba(0,0,0,0.75)),
                      url("/wp-content/themes/nano-asmr/assets/nanozabieg_01.webp?auto=compress&cs=tinysrgb&w=1200");
    background-size: cover;
    background-position: center;
    flex: 1;
}

.about-photo-label {
    position: absolute;
    bottom: 1.1rem;
    left: 1.2rem;
    background: rgba(10, 10, 12, 0.88);
    border-radius: 999px;
    padding: 0.35rem 0.8rem;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #f7f7f7;
}

.about-photo-label-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--accent-gold);
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* Offer */

.offer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 2.5rem;
}

@media (max-width: 900px) {
    .offer-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

.offer-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1.1rem;
}

.offer-item {
    padding: 1rem 1.1rem;
    border-radius: 1.1rem;
    background: #f3ebe0;
    border: 1px solid rgba(0,0,0,0.05);
}

.offer-name {
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.offer-time-price {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    color: #555;
    margin-bottom: 0.35rem;
}

.offer-desc {
    font-size: 0.8rem;
    color: #666;
}

.offer-note {
    margin-top: 1.4rem;
    font-size: 0.8rem;
    color: #666;
}

.offer-note span {
    color: #8a6a1e;
    font-weight: 500;
}

.offer-card {
    background: #14141a;
    color: #eee;
    border-radius: 1.4rem;
    padding: 1.3rem 1.2rem;
    border: 1px solid rgba(0,0,0,0.65);
}

.offer-card-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-gold);
    margin-bottom: 0.7rem;
}

.offer-card p {
    font-size: 0.85rem;
    color: #d0d0d0;
    margin-bottom: 0.9rem;
}

.offer-card-list {
    list-style: none;
    font-size: 0.8rem;
    display: grid;
    gap: 0.4rem;
}

.offer-card-list li::before {
    content: "•";
    color: var(--accent-gold);
    margin-right: 0.45rem;
}

/* Opinions */

.opinions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.4rem;
}

.opinion {
    background: #09090c;
    border-radius: 1.3rem;
    padding: 1.2rem 1.3rem;
    border: 1px solid rgba(255,255,255,0.05);
    font-size: 0.85rem;
}

.opinion-stars {
    color: var(--accent-gold);
    font-size: 0.8rem;
    margin-bottom: 0.45rem;
}

.opinion-text {
    margin-bottom: 0.6rem;
    color: #d5d5d5;
}

.opinion-author {
    font-size: 0.8rem;
    color: #a3a3a3;
}

/* Contact */

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    gap: 2.5rem;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

.contact-info {
    font-size: 0.9rem;
}

.contact-info h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.contact-row {
    margin-top: 0.8rem;
}

.contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--accent-gold);
    margin-bottom: 0.15rem;
}

.contact-value {
    font-size: 0.9rem;
}

.contact-hours {
    margin-top: 1.1rem;
    font-size: 0.85rem;
}

.contact-hours span {
    display: inline-block;
    min-width: 5.5rem;
}

.contact-actions {
    margin-top: 1.4rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.contact-actions a {
    font-size: 0.85rem;
}

.contact-actions .btn-outline {
    border-radius: 999px;
}

.contact-form {
    background: #0c0c10;
    border-radius: 1.4rem;
    padding: 1.5rem 1.4rem;
    border: 1px solid rgba(255,255,255,0.05);
}

.contact-form h3 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.contact-form p {
    font-size: 0.8rem;
    color: #b8b8b8;
    margin-bottom: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: minmax(0, 1fr);
    }
}

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

label {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
}

input, textarea, select {
    width: 100%;
    border-radius: 0.9rem;
    border: 1px solid rgba(255,255,255,0.1);
    background: #08080b;
    color: #f5f5f5;
    padding: 0.6rem 0.8rem;
    font-family: inherit;
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.15s ease-out, box-shadow 0.15s ease-out;
}

input:focus, textarea:focus, select:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.4);
}

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

.form-note {
    font-size: 0.75rem;
    color: #a3a3a3;
    margin-top: 0.5rem;
}

/* Footer */

footer {
    padding: 1.5rem 0 2rem;
    background: #050506;
    border-top: 1px solid rgba(255,255,255,0.04);
    font-size: 0.78rem;
    color: #888;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.8rem;
    align-items: center;
}

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

.footer-links a {
    color: #aaa;
}

.footer-links a:hover {
    color: var(--accent-gold);
}
