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

:root {
    --color-cream: #FAF7F2;
    --color-champagne: #D4AF37;
    --color-gold: #B8860B;
    --color-charcoal: #2C2C2C;
    --color-brown: #6B4423;
    --color-light-gold: #F4E5D3;
    --color-white: #FFFFFF;
    --color-mocha: #8B7355
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #FAF7F2 0%, #F4E5D3 100%);
    color: var(--color-charcoal);
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1
}

.cursor {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-champagne);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.15s ease;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    opacity: 0
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--color-champagne);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    opacity: 0
}

.cursor.active {
    opacity: 1
}

.cursor-dot.active {
    opacity: 1
}

.cursor.hover {
    transform: translate(-50%, -50%) scale(1.8);
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--color-gold)
}

.main-container {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    overflow: hidden
}

.salon-icon {
    position: absolute;
    color: var(--color-champagne);
    opacity: 0;
    font-size: 24px;
    animation: floatUpFade 15s ease-in-out infinite
}

.salon-icon:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    font-size: 20px
}

.salon-icon:nth-child(2) {
    left: 20%;
    animation-delay: 3s;
    font-size: 26px
}

.salon-icon:nth-child(3) {
    left: 30%;
    animation-delay: 6s;
    font-size: 22px
}

.salon-icon:nth-child(4) {
    left: 50%;
    animation-delay: 2s;
    font-size: 28px
}

.salon-icon:nth-child(5) {
    left: 60%;
    animation-delay: 8s;
    font-size: 24px
}

.salon-icon:nth-child(6) {
    left: 70%;
    animation-delay: 5s;
    font-size: 20px
}

.salon-icon:nth-child(7) {
    left: 80%;
    animation-delay: 7s;
    font-size: 26px
}

.salon-icon:nth-child(8) {
    left: 90%;
    animation-delay: 4s;
    font-size: 22px
}

@keyframes floatUpFade {
    0% {
        bottom: -50px;
        opacity: 0;
        transform: translateX(0) rotate(0deg)
    }

    10% {
        opacity: 0.15
    }

    50% {
        opacity: 0.25;
        transform: translateX(30px) rotate(180deg)
    }

    90% {
        opacity: 0.15
    }

    100% {
        bottom: 110%;
        opacity: 0;
        transform: translateX(-30px) rotate(360deg)
    }
}

.content-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 4rem 3rem;
    max-width: 900px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-champagne), var(--color-gold), var(--color-champagne), transparent)
}

.border-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-champagne);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-champagne);
    opacity: 0;
    animation: sparkleMove 8s ease-in-out infinite
}

.sparkle:nth-child(1) {
    top: 10%;
    left: -2px;
    animation-delay: 0s
}

.sparkle:nth-child(2) {
    top: 30%;
    left: -2px;
    animation-delay: 2s
}

.sparkle:nth-child(3) {
    top: 50%;
    left: -2px;
    animation-delay: 4s
}

.sparkle:nth-child(4) {
    top: 70%;
    left: -2px;
    animation-delay: 6s
}

.sparkle:nth-child(5) {
    top: 90%;
    left: -2px;
    animation-delay: 1s
}

.sparkle:nth-child(6) {
    bottom: -2px;
    left: 20%;
    animation-delay: 3s
}

.sparkle:nth-child(7) {
    bottom: -2px;
    left: 50%;
    animation-delay: 5s
}

.sparkle:nth-child(8) {
    bottom: -2px;
    left: 80%;
    animation-delay: 7s
}

.sparkle:nth-child(9) {
    top: 10%;
    right: -2px;
    animation-delay: 1.5s
}

.sparkle:nth-child(10) {
    top: 50%;
    right: -2px;
    animation-delay: 3.5s
}

.sparkle:nth-child(11) {
    top: 90%;
    right: -2px;
    animation-delay: 5.5s
}

.sparkle:nth-child(12) {
    top: -2px;
    left: 30%;
    animation-delay: 2.5s
}

.sparkle:nth-child(13) {
    top: -2px;
    left: 60%;
    animation-delay: 4.5s
}

@keyframes sparkleMove {

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

    5% {
        opacity: 1;
        transform: scale(1)
    }

    10% {
        opacity: 0.8
    }

    15% {
        opacity: 0;
        transform: scale(0.5)
    }
}

.logo {
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(-30px);
    position: relative;
    z-index: 2
}

.logo-main {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: clamp(3.5rem, 9vw, 6rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--color-charcoal);
    line-height: 0.9;
    margin-bottom: 0.5rem;
    font-feature-settings: 'kern' 1, 'liga' 1;
    text-rendering: optimizeLegibility;
}

.logo-tagline {
    font-family: 'Crimson Text', Georgia, 'Times New Roman', serif;
    font-size: clamp(1.1rem, 2.2vw, 1.6rem);
    font-style: italic;
    color: var(--color-champagne);
    letter-spacing: 0.08em;
    font-weight: 400;
    line-height: 1.3;
    text-rendering: optimizeLegibility;
}

.coming-soon-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-champagne), var(--color-gold));
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    opacity: 0;
    transform: scale(0.8);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    position: relative;
    z-index: 2
}

.main-heading {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--color-charcoal);
    margin-bottom: 1.5rem;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    z-index: 2;
    letter-spacing: -0.01em;
    font-feature-settings: 'kern' 1, 'liga' 1;
    text-rendering: optimizeLegibility;
}

.highlight {
    color: var(--color-champagne);
    font-style: italic;
    display: block;
    font-weight: 300
}

.description {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(1.1rem, 2.2vw, 1.25rem);
    line-height: 1.7;
    color: var(--color-mocha);
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    z-index: 2;
    font-weight: 400;
    letter-spacing: -0.005em;
    text-rendering: optimizeLegibility;
}

.location-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    z-index: 2
}

.location-icon {
    font-size: 1.5rem;
    color: var(--color-champagne)
}

.location-text {
    font-family: 'Crimson Text', Georgia, 'Times New Roman', serif;
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    color: var(--color-charcoal);
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
    text-rendering: optimizeLegibility;
}

.countdown-container {
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    z-index: 2
}

.countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto
}

.countdown-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(250, 247, 242, 0.8), rgba(244, 229, 211, 0.8));
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2)
}

.countdown-number {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: clamp(2.2rem, 5.5vw, 3.2rem);
    font-weight: 600;
    color: var(--color-champagne);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    font-feature-settings: 'kern' 1, 'liga' 1;
    text-rendering: optimizeLegibility;
}

.countdown-label {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-mocha);
    font-weight: 500;
    text-rendering: optimizeLegibility;
}

.notify-form {
    max-width: 500px;
    margin: 0 auto 3rem;
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    z-index: 2
}

.form-title {
    font-family: 'Crimson Text', Georgia, 'Times New Roman', serif;
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--color-charcoal);
    font-weight: 500;
    line-height: 1.3;
    text-rendering: optimizeLegibility;
}

.input-group {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.8);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.95rem;
    color: var(--color-charcoal);
    outline: none;
    transition: all 0.3s ease;
    font-weight: 400;
    letter-spacing: -0.005em;
    text-rendering: optimizeLegibility;
}

.email-input::placeholder {
    color: var(--color-mocha);
    opacity: 0.6
}

.email-input:focus {
    border-color: var(--color-champagne);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1)
}

.notify-btn {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--color-champagne), var(--color-gold));
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    text-rendering: optimizeLegibility;
}

.notify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4)
}

.notify-btn:active {
    transform: translateY(0)
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    z-index: 2
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    color: var(--color-champagne);
    font-size: 1.25rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.5)
}

.social-link:hover {
    background: var(--color-champagne);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3)
}

.decorative-line {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-champagne), transparent);
    margin: 2rem auto;
    opacity: 0;
    position: relative;
    z-index: 2
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

.float-animation {
    animation: float 3s ease-in-out infinite
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0
    }

    100% {
        background-position: 1000px 0
    }
}

.shimmer {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(212, 175, 55, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
    background-size: 1000px 100%;
    animation: shimmer 3s infinite
}

@media(max-width:768px) {

    .cursor,
    .cursor-dot {
        display: none
    }

    body {
        cursor: auto
    }

    .content-card {
        padding: 3rem 2rem;
        border-radius: 20px
    }

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

    .input-group {
        flex-direction: column
    }

    .email-input {
        min-width: 100%
    }

    .notify-btn {
        width: 100%
    }

    .location-container {
        flex-direction: column;
        gap: 0.5rem
    }

    .salon-icon {
        font-size: 18px !important
    }
}

@media(max-width:480px) {
    .content-card {
        padding: 2rem 1.5rem
    }

    .countdown {
        gap: 0.75rem
    }

    .countdown-item {
        padding: 1rem 0.5rem
    }

    .social-links {
        gap: 1rem
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem
    }
}

.success-message {
    display: none;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.05));
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 15px;
    padding: 1rem;
    margin-top: 1rem;
    text-align: center;
    color: #2e7d32;
    font-size: 0.9rem;
    position: relative;
    z-index: 2
}

.success-message.show {
    display: block;
    animation: slideDown 0.3s ease
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px)
    }

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

.contact-info {
    max-width: 500px;
    margin: 2rem auto 3rem;
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    z-index: 2;
    text-align: center;
}

.contact-info-title {
    font-family: 'Crimson Text', Georgia, 'Times New Roman', serif;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--color-charcoal);
    font-weight: 500;
    line-height: 1.3;
    text-rendering: optimizeLegibility;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.95rem;
    color: var(--color-mocha);
    text-rendering: optimizeLegibility;
}

.contact-item i {
    color: var(--color-champagne);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.contact-item a {
    color: var(--color-mocha);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--color-champagne);
}

.contact-phone {
    font-weight: 500;
    color: var(--color-charcoal);
}