body {
    margin: 0;
    font-family: "Futura", Arial, sans-serif;
    background: #ffa4b1; 
    transition: background 0.7s ease;
}

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


nav {
    position: fixed;
    top: 30px;
    right: 40px;
    display: flex;
    gap: 40px;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
    z-index: 1000;
}

nav a {
    color: #000;
    opacity: 0.6;
    transition: 0.3s ease;
}

nav a:hover {
    opacity: 1;
}

nav a.active {
    color: darkred;
    opacity: 1;
}


.logo {
    position: fixed;
    top: 30px;
    left: 40px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 1000;
    color: #fff;
}


.landing-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.landing-maintext {
    font-size: 82px;
    font-weight: 900;
    margin-bottom: 100px;
    color: darkred;
}

.landing-maintext span {
    color: darkred;
}

.main-button {
    background: #ffffff;
    padding: 16px 36px;
    border-radius: 14px;
    color: darkred;
    font-weight: bold;
    letter-spacing: 0.5px;
    transition: 0.3s ease;
}

.main-button:hover {
    background: #ffffff;
}

#glow-haven {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: #4b0000; 
    transition: background 0.7s ease;
}


#glow-haven nav a {
    color: #fff;
    opacity: 0.9;
}
#glow-haven nav a:hover {
    opacity: 1;
}
#glow-haven nav a.active {
    color: #fba402;
    opacity: 1;
}
#glow-haven .logo {
    color: #fff;
}
#glow-haven .subtitle {
    color: #fff;
}


#glow-haven:has(.lamp-scene:hover) nav a.active {
    color: darkred;
}


.subtitle {
    position: absolute;
    bottom: 40px;
    width: 100%;
    text-align: center;
    font-family: "Futura", Arial, sans-serif;
    font-weight: bold;
    font-size: 15pt;
    color: #000;
    letter-spacing: 1px;
}

.lamp-scene {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 490px;  
    height: auto;
    cursor: pointer;
}

#glow-haven:has(.lamp-scene:hover) {
    background: orange;
}

.lamp {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 490px;
    height: auto;
    transition: opacity 0.6s ease;
}

.lamp-off { opacity: 1; }
.lamp-on  { opacity: 0; }

.lamp-scene:hover .lamp-off { opacity: 0; }
.lamp-scene:hover .lamp-on  { opacity: 1; }


#cuddle-corner {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: #1d3016; 
    transition: background 0.7s ease;
}

#cuddle-corner nav a {
    color: #fff;
    opacity: 0.9;
}

#cuddle-corner nav a:hover {
    opacity: 1;
}

#cuddle-corner nav a.active {
    color: #fba402; 
    opacity: 1;
}

#cuddle-corner .logo {
    color: #fff;
}

/* Add-Pillow Button */
.add-pillow-button {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    color: #000;
    padding: 16px 36px;
    border: none;
    border-radius: 14px;
    font-family: "Futura", Arial, sans-serif;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: 0.3s ease;
    z-index: 100;
}

.add-pillow-button:hover {
    opacity: 0.9;
    transform: translateX(-50%) scale(1.05);
}

.add-pillow-button:active {
    transform: translateX(-50%) scale(0.95);
}


#quiet-space {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: #a8d8f0; 
    transition: background 0.7s ease;
}

#quiet-space nav a {
    color: #000;
    opacity: 0.6;
}

#quiet-space nav a:hover {
    opacity: 1;
}

#quiet-space nav a.active {
    color: #fba402; 
    opacity: 1;
}

#quiet-space .logo {
    color: #000;
}

