
/*
Theme Name: QuietSpace
Theme URI: https://example.com
Author: QuietSpace
Description: A calming sleep and relaxation WordPress theme.
Version: 1.0.0
License: GPL-2.0-or-later
Text Domain: quietspace
*/

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #07111f;
    color: #f5f7fb;
    font-family: Arial, sans-serif;
}

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

.qs-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 5%;
    background: rgba(7,17,31,.85);
    backdrop-filter: blur(15px);
}

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

.qs-logo {
    font-size: 24px;
    font-weight: bold;
}

.qs-logo span {
    opacity: .4;
}

.qs-nav {
    display: flex;
    gap: 25px;
    color: #a7b4c4;
}

.qs-nav a:hover {
    color: white;
}

.qs-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 20px;
}

.qs-hero-content {
    max-width: 800px;
}

.qs-moon {
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    background: white;
    box-shadow: 0 0 80px rgba(255,255,255,.25);
}

.qs-eyebrow {
    margin-top: 35px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #a7b4c4;
    font-size: 12px;
}

.qs-hero h1 {
    font-size: clamp(50px,8vw,90px);
    line-height: 1;
    margin: 20px 0;
}

.qs-hero p {
    color: #a7b4c4;
    font-size: 18px;
}

.qs-button {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 28px;
    border-radius: 40px;
    background: white;
    color: #07111f;
    font-weight: bold;
}

.qs-section {
    max-width: 1200px;
    margin: auto;
    padding: 90px 5%;
}

.qs-section h2 {
    font-size: 40px;
}

.qs-section-intro {
    color: #a7b4c4;
}

.qs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.qs-card {
    padding: 30px;
    border-radius: 25px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
}

.qs-card:hover {
    background: rgba(255,255,255,.1);
}

.qs-icon {
    font-size: 40px;
}

.qs-card p {
    color: #a7b4c4;
}

.qs-breathe {
    text-align: center;
}

.qs-circle {
    width: 190px;
    height: 190px;
    margin: 60px auto 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(190,215,235,.1);
    border: 1px solid rgba(190,215,235,.4);
    transition: transform 4s ease;
}

.qs-circle.grow {
    transform: scale(1.4);
}

.qs-timer {
    max-width: 650px;
    margin: auto;
    text-align: center;
    padding: 45px;
    border-radius: 30px;
    background: rgba(255,255,255,.06);
}

.qs-time {
    font-size: 65px;
    margin-bottom: 30px;
}

.qs-timer button {
    margin: 5px;
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,.2);
    background: transparent;
    color: white;
    cursor: pointer;
}

.qs-footer {
    padding: 60px 20px;
    text-align: center;
    color: #a7b4c4;
    border-top: 1px solid rgba(255,255,255,.1);
}

@media(max-width:800px) {

    .qs-nav {
        display: none;
    }

    .qs-grid {
        grid-template-columns: 1fr;
    }

    .qs-hero h1 {
        font-size: 55px;
    }
}
