@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

h1{
    font-size: clamp(2rem, 3vw, 4rem);
    color: var(--ink);
    max-width: 800px;
}

:root {
    --ink: #32413b;
    --cream: #fbf5ea;
    --dark-cream: #e7ddca;
    --darker-cream: rgb(200, 185, 158);
    --sage: #c9d8c4;
    --baby: #c4d6d8;
    --terracotta: #bf7a63;
    --sand: #d8b998;
    --time: #b82c44;
    --font-family: 'Fraunces', serif;
}

body {
    font-family: var(--font-family);
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
     -webkit-user-select: none; /* Safari, Chrome, Edge */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* Internet Explorer 10+ */
  user-select: none;         /* Standard syntax */
}

p b{
    opacity: 0.5;
    text-transform: uppercase;
    font-family: Outfit, system-ui, sans-serif;
    color: var(--ink);
    max-width: 800px;
    font-weight: 650;
    letter-spacing: 0.05em;
    word-spacing: 0.2em;
    font-size: clamp(0.75rem, 1.5vw, 1rem);
}

.noise-overlay {
    top: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    background-size: 50vh;
    background-repeat: repeat;
    background-image: url('./Assets/nnnoise.svg') ;
    filter: invert(1) grayscale(1) opacity(.3);
    pointer-events: none;
    z-index: 2;
}

/*General Styles*/
.fadein {
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out calc(var(--i) * 0.1s) forwards;
}

.divider {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--dark-cream);
}   
/* Navbar Styles */
.navbar {

    /*Display*/
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;

    /*Color, and effects*/
    background: rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid var(--dark-cream);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); /* Safari */
    width: 100%;
    padding: 1rem;
    transition: all 0.5s ease;
    height: 98px;
    z-index: 1;
}

.navbar.hidden {
    transform: translateY(-100%);
}

.navbar a span {
    display: inline-block;
    text-decoration: none;
    color: var(--ink);
    padding: 20px;
    font-size: 1.3rem;
    transform: translateY(0);
    transition: color 0.3s ease, transform 0.3s ease;
}

.navbar a span:hover {
    color: var(--terracotta);
    transform: translateY(-3px);
}

.navbar-left {
    display: flex;
    align-items: center;
}

.navbar-right {
    display: flex;
}

@media (min-width: 769px) {
    .hamburger-overlay {
        display: none;
    }

    .hamburger {
        display: none;
    }
}

@media screen and (max-width: 768px) {

    /*Hamburger*/
    .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    padding: 1rem;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
    }

    .hamburger:hover{
    transform: translateY(-3px);
    }

    .hamburger span{
    display: flex;
    width: 25px;
    height: 3px;
    background-color: var(--ink);
    margin: 2px 0;
    transition: all 0.3s ease;
    }

    .hamburger span.active {
        display: flex;
        width: 25px;
        height: 3px;
        background-color: var(--ink);
        margin: -1px 0;
        transform-origin: center;
        transform: scaleX(0);
    }

    .hamburger span:nth-child(1) {
        transition-delay: 0.1s;
    }

    .hamburger span:nth-child(2) {
        transition-delay: 0.05s;
    }

    .hamburger span:nth-child(3) {
        transition-delay: 0s;
    }


    /*Hide Right Navigation*/
    .navbar-right a{
            display: none;
    }

    .navbar-right {
            padding: 0;
    }
        
    /*Hamburger overlay*/

    .hamburger-overlay {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        display: flex;
        justify-content: center;
        align-items: center;

        background: rgba(0, 0, 0, 0.5);
        z-index: 9999;

        opacity: 0;
        visibility: hidden;

        transition: all 0.3s ease;
    }

    .hamburger-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .hamburger-container {
        background: var(--cream);
        padding: 3rem;
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 80%;
        min-width: 15rem;
        max-width: 50rem;
        position: relative;
        transform: translateX(-50px);
        transition: all 0.3s ease;
    }

    .hamburger-container.active {
        transform: translateX(0);
    }

    .hamburger-container a{
        text-decoration: none;
        color: var(--ink);
        padding: 20px;
        font-size: 1.3rem;
        transition: color 0.3s ease, transform 0.3s ease;
    }

    .hamburger-container a:hover {
        color: var(--terracotta);
        transform: translateY(-3px);
    }
    .hamburger-container span {
    border: 1px solid var(--dark-cream);
    width: 90%;
    border-radius: 1px;
    }


    .hamburger-exit {
        position: absolute;
        top: 1rem;
        right: 1rem;
        width: 2rem;
        height: 2rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    .hamburger-exit:hover {
        transform: rotate(90deg);
    }

    .hamburger-exit span {
        border: 2px solid var(--darker-cream);
        border-radius: 2px;
        width: 100%;
        position: absolute;

        transform: translateX(-50px) rotate(0deg);
        transition: transform 0.3s ease;
    }

    .hamburger-exit span.active:nth-child(1) {
        transform: translateX(0px) rotate(45deg);
    }

    .hamburger-exit span.active:nth-child(2) {
        transform: translateX(0px) rotate(-45deg);
    }
}

/**/

/* Hero Section */
.hero-container {
    margin-top: 98px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 98px);
    position: relative;
    width: 100vw;
    overflow: hidden;
}


/*Circles*/
.hero-circle {
    z-index: -2;
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
    transform-origin: center;
    animation: float 6s ease-in-out infinite;
}

.hero-circle:nth-child(1){
    width: 600px;
    height: 600px;
    top: 15vh;
    left: 2vw;
    background-color: var(--sand);
    opacity: 30%;
}

.hero-circle:nth-child(2){
    width: 60vh;
    height: 60vh;
    top: -16vh;
    right: -5vw;
    background-color: var(--sage);
    opacity: 30%;
    animation-delay: 0.5s;
}

.hero-last-circle-container {
    position: absolute;
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.hero-last-circle-container .hero-circle{
    height: 60vh;
    width: 60vh;
    top: 70vh;
    left: 50vw;
    background-color: var(--baby);
    opacity: 30%;
    animation-delay: 0.5s;
}

.hero-content {
   width: 80%;
   color : var(--ink);
}

.hero-content h1{
    font-size: clamp(5rem, 8.5vw, 8.5rem);
    color: var(--ink);
    max-width: 800px;
}

@media screen and (max-width: 400px) {
    .hero-content h1{
        font-size: clamp(2rem, 3rem, 3rem);
        color: var(--ink);
        max-width: 800px;
    }
}

.hero-content p{
    font-family: Outfit, system-ui, sans-serif;
    color: var(--ink);
    max-width: 800px;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

.hero-content p b{
    opacity: 0.5;
    text-transform: uppercase;
    font-family: Outfit, system-ui, sans-serif;
    color: var(--ink);
    max-width: 800px;
    font-weight: 650;
    letter-spacing: 0.05em;
    word-spacing: 0.2em;
    font-size: clamp(0.75rem, 1.5vw, 1rem);
}

.hero-content span {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 3rem;
    background: var(--terracotta);
    color: var(--cream);
    text-decoration: none;
    font-size: 1.25rem;
    transition: background 0.3s ease, transform 0.3s ease;
}

.hero-content span:hover {
    background: var(--ink);
    transform: translateY(-2px);
    z-index: 5;

}

/*About Section*/
.about {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.aboutcontent {
    margin: 5rem 5rem 5rem 5rem;
    width: 50rem;
    min-width: 360px;

}

.aboutcontent h1{
    font-size: clamp(3rem, 4.5vw, 6rem);
    color: var(--ink);
    max-width: 800px;
}

.about img{
  width: calc(100% - 50rem);
  height: 100%;
  object-fit: cover;
}

.aboutcontent p{
    font-family: Outfit, system-ui, sans-serif;
    color: var(--ink);
    max-width: 800px;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
}

.aboutcontent a {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 3rem;
    background: var(--terracotta);
    color: var(--cream);
    text-decoration: none;
    font-size: 1.25rem;
    transition: background 0.3s ease, transform 0.3s ease;
}

.aboutcontent a:hover {
    background: var(--ink);
    transform: translateY(-2px);
    z-index: 5;

}

.aboutcontent p b{
    opacity: 0.5;
    text-transform: uppercase;
    font-family: Outfit, system-ui, sans-serif;
    color: var(--ink);
    max-width: 800px;
    font-weight: 650;
    letter-spacing: 0.05em;
    word-spacing: 0.2em;
    font-size: clamp(0.75rem, 1.5vw, 1rem);
}

@media screen and (max-width: 900px) {
    .aboutcontent h1{
       width: 100%;
        margin: 0;
    }

    .about img{
        display: none;
    }

    .aboutcontent {

        width: 100%;
        background-color: var(--cream);
        padding: 2rem;
    }

    .about {
        background-image: url('./Assets/Stock/GroupHug.jpg');
        background-size: cover;
        background-position: center bottom;
        height: auto
    }
}

/*Contact Section*/
.contact {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.contacttext h1{
    font-size: clamp(2rem, 3vw, 4rem);
    color: var(--ink);
    max-width: 800px;
}

.contacttext{
    margin: 5rem 5rem 5rem 5rem;
}

.contacttext p{
    font-family: Outfit, system-ui, sans-serif;
    color: var(--ink);
    max-width: 800px;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

.contacttext p b{
    opacity: 0.5;
    text-transform: uppercase;
    font-family: Outfit, system-ui, sans-serif;
    color: var(--ink);
    max-width: 800px;
    font-weight: 650;
    letter-spacing: 0.05em;
    word-spacing: 0.2em;
    font-size: clamp(0.75rem, 1.5vw, 1rem);
}

@media screen and (max-width: 900px) {
    .contacttext {
        display: none;
    }

}

.contact {
    overflow: hidden;
    height: 100%;
    position: relative
}

.contactcard {
    margin: 5rem 5rem 5rem 5rem;
    width: 50rem;
    background-color: white;
    border-radius: 5px;
    border: 1px solid var(--dark-cream);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: clamp(2vw, 4vw, 4rem);
    min-width: 350px;
    margin-top: 20vh;
    margin-bottom: 20vh;
}

.contactcard input {
    width: 100%;
    height: 10px;
    background-color: white;
    border: 1px solid var(--dark-cream);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-family: Outfit, system-ui, sans-serif;
    padding: 30px;
}

.contactcard input:focus {
    outline: none;
    border-color: var(--terracotta);
    box-shadow: 0 0 0 3px rgba(191, 122, 99, 0.2);
}

.contactcard textarea {
    height: 300px;
    width: 100%;
    background-color: white;
    border: 1px solid var(--dark-cream);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    resize: none;
    padding: 30px;
}

.contactcard p {
    opacity: 0.7;
    text-transform: uppercase;
    font-family: Outfit, system-ui, sans-serif;
    color: var(--terracotta);
    max-width: 800px;
    font-weight: 650;
    letter-spacing: 0.05em;
    word-spacing: 0.2em;
    font-size: clamp(0.75rem, 1.5vw, 1rem);
    padding: 10px;

}

.contactcard textarea:focus {
    outline: none;
    border-color: var(--terracotta);
    box-shadow: 0 0 0 3px rgba(191, 122, 99, 0.2);
}

.contactcard button {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 3rem;
    font-family: 'Fraunces';
    background: var(--terracotta);
    color: var(--cream);
    text-decoration: none;
    font-size: 1.25rem;
    border: none;
    transition: background 0.3s ease, transform 0.3s ease;

}

.contactcard button:hover {
    background: var(--ink);
    transform: translateY(-2px);
    z-index: 5;
    cursor: pointer;
}

.contact-circle:nth-child(1) {
    left: -8%;
    top: -5%;
    z-index: -1;
    background-color: var(--baby);
    width: 800px;
    height: 800px;
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
    transform-origin: center;
    animation: float 6s ease-in-out infinite;
}

.contact-circle:nth-child(2) {
    left: 75%;
    top: 75%;
    z-index: -1;
    background-color: var(--sand);
    width: 900px;
    height: 900px;
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
    transform-origin: center;
    animation: float 6s ease-in-out infinite;
}
/*Spaces*/

.spaces-text {
    padding: 5rem;
}

.spaces-text h1{
    font-size: clamp(2rem, 3vw, 6rem);
    color: var(--ink);
    max-width: 800px;
}

.spaces-spaces {
    padding: 5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 500px));
    justify-content: center;
    gap: 2rem;
    padding-bottom: 15vh;
}

.space {
    background-color: white;
    padding: 4rem;
        border: 1px solid var(--dark-cream);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 1.25rem;
    min-width: 400px;
}


.space span {
    display: block;
    width: 100%;
    height: 3px;
    margin: 2rem 0;
    border-radius: 100px;
    background-color: var(--dark-cream);
}

.space p b{
    font-size: clamp(0.75rem, 1.25rem, 2rem);
    
}

.space-description {
    height: 350px;
    overflow-y: auto;
}

.space p i {
    font-size: clamp(0.75rem, 1.5rem, 3rem);
    font-style: italic;
    font-weight: 500;
    color: var(--terracotta);
}

.space span.space-time {
  display: inline-block;
  width: auto;
  height: auto;
  margin: 0;
  background-color: transparent;
  font-family: Outfit, system-ui, sans-serif;
  text-transform: uppercase;
  font-weight: 650;
  color: var(--time);
  padding: 0px 0.5rem 0px 0.5rem;
  margin: 0px  10px 0px 10px;
  border-radius: 5px;
  background-color: var(--cream);
    border: 1px solid var(--dark-cream);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
  

.space a {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 3rem;
    background: var(--terracotta);
    color: var(--cream);
    text-decoration: none;
    font-size: 1.25rem;
    transition: background 0.3s ease, transform 0.3s ease;
}

.spaces-spaces h2 {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: var(--terracotta);
    width: 100%;
    text-align: center;
    transform: translateY(-50%);
    position: relative;
    padding: 0px;
    margin: 0px;
    opacity: 0.5;
    height: 100%;
}

.space a:hover {
    background: var(--ink);
    transform: translateY(-2px);
    z-index: 5;

}

/*breath-video*/
.breath-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

.breath-video {
    width: 500px;
    z-index: 1;
}

/*footer*/
.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    width: 100vw;
    background-color: var(--dark-cream);
    margin-top: 5px;
    gap: 70px;
}

.footer a{
    text-decoration: none;
    color: var(--ink);
    font-size: 1.25rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer a:hover {
    color: var(--terracotta);
    transform: translateY(-3px);
}

.footer p {
    font-size: clamp(0.75rem, 1.5vw, 1.3rem);
    color: var(--ink);
    opacity: 0.5;
}

.footer img {
    width: 30px;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.224));
    height: auto;
    transition: filter 0.3s ease, transform 0.3s ease;
}

/*Animations*/

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes justFadeIn {
  from { opacity: 0;}
  to   { opacity: 1;}
}

@keyframes float {
  0% { transform: translate3d(0, 0, 0,), scale(1); }
  50% { transform: translate3d(2.4rem, -1.8rem, 0) scale(1.08); }
  100% { transform: translate3d(0, 0, 0,), scale(1); }
}