/* SMUG COIN - Luxury Retro Aesthetic */
/* Art Deco meets Classic Publishing */

/* Custom Fonts */
.display-font {
    font-family: 'Playfair Display', serif;
}

.body-font {
    font-family: 'Crimson Text', serif;
}

.accent-font {
    font-family: 'Libre Baskerville', serif;
}

/* Luxury Color Palette */
:root {
    --gold-primary: #D4AF37;
    --gold-secondary: #B8860B;
    --gold-accent: #FFD700;
    --white: #FFFFFF;
    --black: #000000;
    --gray-light: #F8F8F8;
    --gray-medium: #666666;
    --gray-dark: #333333;
}

/* Base Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Crimson Text', serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
}

/* Contract Address Banner */
.contract-banner {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--gold-primary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.copy-btn-small {
    border: 1px solid var(--gold-primary);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.copy-btn-small:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, var(--gold-primary) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}

/* Decorative Background Elements */
.decorative-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.art-deco-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, transparent 40%, rgba(212, 175, 55, 0.03) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(212, 175, 55, 0.03) 50%, transparent 60%);
    background-size: 100px 100px;
    animation: pattern-move 20s linear infinite;
}

@keyframes pattern-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.luxury-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.luxury-particles::before,
.luxury-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, var(--gold-primary) 0%, transparent 70%);
    border-radius: 50%;
    animation: luxury-float 8s ease-in-out infinite;
}

.luxury-particles::before {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.luxury-particles::after {
    top: 60%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes luxury-float {
    0%, 100% { 
        transform: translateY(0px) scale(1); 
        opacity: 0.3; 
    }
    50% { 
        transform: translateY(-20px) scale(1.2); 
        opacity: 0.6; 
    }
}

/* Luxury Grid Background */
.luxury-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 30s linear infinite;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Golden Particles */
.golden-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.golden-particles::before,
.golden-particles::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, var(--gold-accent) 0%, transparent 70%);
    border-radius: 50%;
    animation: golden-sparkle 6s ease-in-out infinite;
}

.golden-particles::before {
    top: 30%;
    left: 30%;
    animation-delay: 0s;
}

.golden-particles::after {
    top: 70%;
    right: 30%;
    animation-delay: 3s;
}

@keyframes golden-sparkle {
    0%, 100% { 
        transform: translateY(0px) scale(1); 
        opacity: 0.4; 
    }
    50% { 
        transform: translateY(-30px) scale(1.5); 
        opacity: 0.8; 
    }
}

/* Logo and Title Styles */
.logo-container {
    position: relative;
    display: inline-block;
}

.logo-image {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
}

.elegant-title {
    position: relative;
    background: linear-gradient(45deg, var(--black), var(--gray-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(212, 175, 55, 0.1);
}

.luxury-glow {
    position: relative;
}

.luxury-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: luxury-pulse 3s ease-in-out infinite alternate;
}

@keyframes luxury-pulse {
    0% { 
        transform: translate(-50%, -50%) scale(1); 
        opacity: 0.3; 
    }
    100% { 
        transform: translate(-50%, -50%) scale(1.1); 
        opacity: 0.6; 
    }
}

/* Golden Divider */
.golden-divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    margin: 0 auto;
    position: relative;
}

.golden-divider::before,
.golden-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--gold-primary);
    border-radius: 50%;
}

.golden-divider::before {
    left: -4px;
}

.golden-divider::after {
    right: -4px;
}

/* Luxury Cards */
.luxury-card {
    background: var(--white);
    border: 2px solid var(--gold-primary);
    border-radius: 0;
    box-shadow: 
        0 8px 32px rgba(212, 175, 55, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.luxury-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.luxury-card:hover::before {
    left: 100%;
}

.luxury-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(212, 175, 55, 0.2),
        0 0 20px rgba(212, 175, 55, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: var(--gold-accent);
}

/* Luxury Buttons */
.luxury-button {
    position: relative;
    overflow: hidden;
    border: 2px solid var(--gold-primary);
    cursor: pointer;
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.luxury-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.luxury-button:hover::before {
    left: 100%;
}

.luxury-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.luxury-button-small {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gold-primary);
    cursor: pointer;
    font-family: 'Playfair Display', serif;
    transition: all 0.3s ease;
}

.luxury-button-small:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Social Buttons */
.luxury-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: 2px solid var(--gold-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: var(--black);
    background: var(--white);
}

.luxury-social-btn.twitter {
    border-color: #1da1f2;
    color: #1da1f2;
}

.luxury-social-btn.telegram {
    border-color: #0088cc;
    color: #0088cc;
}

.luxury-social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background: var(--gold-primary);
    color: var(--white);
}

.luxury-social-btn i {
    margin-right: 8px;
    font-size: 1.2em;
}

/* Luxury Images */
.luxury-image {
    border: 3px solid var(--gold-primary);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.luxury-image:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.3);
}

/* Roadmap Cards */
.roadmap-card {
    background: var(--white);
    border: 2px solid var(--gold-primary);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.roadmap-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.roadmap-card:hover::before {
    left: 100%;
}

.roadmap-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(212, 175, 55, 0.2),
        0 0 20px rgba(212, 175, 55, 0.1);
    border-color: var(--gold-accent);
}

.phase-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.3);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

/* Scroll-triggered Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Luxury Sections */
.luxury-section {
    position: relative;
    overflow: hidden;
}

.luxury-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, 
                transparent 0deg, 
                rgba(212, 175, 55, 0.02) 60deg, 
                transparent 120deg, 
                rgba(212, 175, 55, 0.02) 180deg, 
                transparent 240deg, 
                rgba(212, 175, 55, 0.02) 300deg, 
                transparent 360deg);
    animation: luxury-rotate 40s linear infinite;
}

@keyframes luxury-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Art Deco Decorative Elements */
.art-deco-border {
    position: relative;
}

.art-deco-border::before,
.art-deco-border::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.art-deco-border::before {
    top: 0;
}

.art-deco-border::after {
    bottom: 0;
}

/* Gold Shimmer Effect */
.gold-shimmer {
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    background-size: 200% 100%;
    animation: gold-shimmer 3s ease-in-out infinite;
}

@keyframes gold-shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Elegant Animations */
@keyframes elegant-fade-in {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: elegant-fade-in 1s ease-out;
}

/* Luxury Hover Effects */
.luxury-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.luxury-hover::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.luxury-hover:hover::before {
    width: 300px;
    height: 300px;
}

.luxury-hover:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 30px rgba(212, 175, 55, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .luxury-card {
        padding: 1.5rem;
    }
    
    .phase-number {
        font-size: 2rem;
    }
    
    .luxury-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .luxury-social-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .luxury-social-btn i {
        margin-right: 6px;
    }
}

@media (max-width: 480px) {
    .luxury-card {
        padding: 1rem;
    }
    
    .roadmap-card {
        padding: 1.5rem;
    }
    
    .phase-number {
        font-size: 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--gray-light);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--gold-primary), var(--gold-secondary));
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--gold-accent), var(--gold-primary));
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    border-top-color: var(--gold-primary);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--white);
    border: 2px solid var(--gold-primary);
    border-radius: 0;
    padding: 16px 20px;
    color: var(--black);
    font-weight: 600;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.2);
}

.notification.show {
    transform: translateX(0);
}

/* Luxury Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

p {
    font-family: 'Crimson Text', serif;
    line-height: 1.7;
}

blockquote {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    position: relative;
    padding-left: 2rem;
}

blockquote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 3rem;
    color: var(--gold-primary);
    font-family: 'Playfair Display', serif;
}

/* Luxury Focus States */
button:focus,
.luxury-button:focus,
.luxury-button-small:focus {
    outline: 2px solid var(--gold-primary);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .decorative-bg,
    .luxury-particles,
    .golden-particles {
        display: none;
    }
    
    .luxury-card {
        border: 1px solid var(--black);
        box-shadow: none;
    }
    
    .luxury-button {
        border: 1px solid var(--black);
        background: var(--white);
        color: var(--black);
    }
}
