/* Amazon Spa & Wellness - Premium Styling System */

/* CSS Variables */
:root {
    --bg-dark: #040c09;
    --bg-darker: #020705;
    --color-gold-light: #f5e6c8;
    --color-gold: #d4af37;
    --color-gold-hover: #e6c257;
    --color-gold-dark: #8e6f1a;
    --text-light: #f4f7f6;
    --text-muted: #8ea59b;
    --glass-bg: rgba(6, 20, 16, 0.45);
    --glass-border: rgba(212, 175, 55, 0.15);
    --glass-border-hover: rgba(212, 175, 55, 0.3);
    --font-heading: 'Cinzel', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 20px;
}

/* Decorative Background Glowing Orbs */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.45;
}

.glow-orb-1 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(20, 70, 55, 0.6) 0%, rgba(4, 12, 9, 0) 70%);
    top: -10%;
    left: -10%;
    animation: floatOrb 25s infinite alternate ease-in-out;
}

.glow-orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(12, 50, 38, 0.5) 0%, rgba(4, 12, 9, 0) 70%);
    bottom: -15%;
    right: -10%;
    animation: floatOrb 30s infinite alternate-reverse ease-in-out;
}

.glow-orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(4, 12, 9, 0) 70%);
    top: 35%;
    left: 45%;
    animation: floatOrb 20s infinite alternate ease-in-out;
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(40px, -60px) scale(1.1);
    }
    100% {
        transform: translate(-30px, 40px) scale(0.95);
    }
}

/* Main Container and Glassmorphism */
.container {
    width: 100%;
    max-width: 820px;
    position: relative;
    z-index: 10;
    animation: fadeInScale 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.96) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 60px 45px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 
                inset 0 1px 0 rgba(255, 255, 255, 0.05),
                0 0 40px rgba(212, 175, 55, 0.02);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Add subtle decorative borders in corners */
.glass-card::before, .glass-card::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border: 1.5px solid var(--color-gold);
    pointer-events: none;
    opacity: 0.6;
}

.glass-card::before {
    top: 25px;
    left: 25px;
    border-right: none;
    border-bottom: none;
}

.glass-card::after {
    bottom: 25px;
    right: 25px;
    border-left: none;
    border-top: none;
}

/* Header Section */
.header {
    margin-bottom: 40px;
}

.logo-wrapper {
    display: inline-block;
    position: relative;
    margin-bottom: 20px;
    animation: pulseLogo 4s infinite ease-in-out;
}

.logo-svg {
    width: 90px;
    height: 90px;
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.3));
}

@keyframes pulseLogo {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.3));
    }
    50% {
        transform: scale(1.03);
        filter: drop-shadow(0 0 22px rgba(212, 175, 55, 0.5));
    }
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 500;
    letter-spacing: 0.4em;
    color: var(--color-gold-light);
    margin-left: 0.4em; /* Balancing letter-spacing offset */
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.brand-tagline {
    font-size: 0.75rem;
    letter-spacing: 0.6em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 5px;
    margin-left: 0.6em;
}

/* Content Section */
.content {
    margin-bottom: 45px;
}

.main-title {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    line-height: 1.45;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 400;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* Countdown Timer Section */
.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
}

.countdown-box {
    width: 90px;
    height: 95px;
    background: rgba(2, 7, 5, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
}

.countdown-box:hover {
    border-color: var(--glass-border-hover);
    background: rgba(2, 7, 5, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 
                0 0 15px rgba(212, 175, 55, 0.05);
}

.countdown-value {
    font-size: 2.1rem;
    font-weight: 600;
    color: var(--color-gold);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 5px;
}

.countdown-label {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    font-weight: 500;
}

.countdown-divider {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-gold);
    opacity: 0.5;
    padding-bottom: 15px;
    animation: blinkDivider 1.5s infinite;
}

@keyframes blinkDivider {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.9; }
}

/* Email & Contact Section */
.contact-section {
    margin-bottom: 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-info-text {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.email-card {
    display: flex;
    align-items: center;
    background: rgba(2, 7, 5, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 6px 6px 6px 24px;
    max-width: 420px;
    width: 100%;
    transition: var(--transition-smooth);
    position: relative;
}

.email-card:hover {
    border-color: var(--color-gold);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.1);
}

.email-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-light);
    flex-grow: 1;
    outline: none;
}

.email-icon {
    width: 20px;
    height: 20px;
    color: var(--color-gold);
    transition: var(--transition-smooth);
}

.email-link:hover .email-icon {
    transform: scale(1.1);
}

.email-text {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: var(--transition-smooth);
}

.email-link:hover .email-text {
    color: var(--color-gold-light);
}

.copy-btn {
    background: var(--color-gold);
    border: none;
    border-radius: 50px;
    color: var(--bg-darker);
    width: 38px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    outline: none;
}

.copy-btn:hover {
    background: var(--color-gold-hover);
    transform: scale(1.05);
}

.copy-btn:active {
    transform: scale(0.95);
}

.copy-icon {
    width: 16px;
    height: 16px;
}

/* Tooltip */
.copy-tooltip {
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    background: var(--bg-darker);
    color: var(--text-light);
    font-size: 0.7rem;
    padding: 5px 10px;
    border-radius: 6px;
    border: 1px solid var(--glass-border);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.copy-btn:hover .copy-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Footer Section */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.social-icon {
    color: var(--text-muted);
    transition: var(--transition-smooth);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.social-icon:hover {
    color: var(--color-gold);
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.copyright {
    font-size: 0.75rem;
    color: rgba(142, 165, 155, 0.5);
    letter-spacing: 0.05em;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #061914;
    border: 1px solid var(--color-gold);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 
                0 0 20px rgba(212, 175, 55, 0.1);
    color: var(--text-light);
    padding: 15px 25px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 100;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-success-icon {
    width: 20px;
    height: 20px;
    color: var(--color-gold);
}

/* Responsive Design */
@media (max-width: 768px) {
    .glass-card {
        padding: 50px 30px;
    }
    
    .brand-name {
        font-size: 1.8rem;
        letter-spacing: 0.35em;
    }
    
    .main-title {
        font-size: 1.4rem;
        line-height: 1.4;
    }
    
    .countdown-container {
        gap: 10px;
    }
    
    .countdown-box {
        width: 75px;
        height: 80px;
    }
    
    .countdown-value {
        font-size: 1.7rem;
    }
    
    .countdown-label {
        font-size: 0.55rem;
    }
    
    .countdown-divider {
        font-size: 1.4rem;
        padding-bottom: 10px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 15px;
    }
    
    .glass-card {
        padding: 40px 20px;
        border-radius: 20px;
    }
    
    .brand-name {
        font-size: 1.5rem;
        letter-spacing: 0.3em;
    }
    
    .main-title {
        font-size: 1.2rem;
    }
    
    .description {
        font-size: 0.85rem;
    }
    
    .countdown-container {
        gap: 6px;
    }
    
    .countdown-box {
        width: 65px;
        height: 70px;
    }
    
    .countdown-value {
        font-size: 1.4rem;
    }
    
    .countdown-label {
        font-size: 0.5rem;
    }
    
    .countdown-divider {
        font-size: 1.1rem;
        padding-bottom: 8px;
    }
    
    .email-card {
        padding: 6px 6px 6px 16px;
    }
    
    .email-text {
        font-size: 0.8rem;
    }
    
    .toast {
        bottom: 20px;
        right: 20px;
        left: 20px;
        text-align: center;
        justify-content: center;
    }
}
