/* ============================================
   TIARA - Luxury Coming Soon Page
   Color Palette: Black + Gold
============================================ */

:root {
    /* Colors - White + Gold */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f7f4;
    --bg-accent: #faf9f6;
    --gold: #c9a227;
    --gold-light: #d4af37;
    --gold-dark: #a68b1f;
    --text-primary: #1a1a1a;
    --text-muted: rgba(26, 26, 26, 0.6);
    --text-subtle: rgba(26, 26, 26, 0.4);

    /* Gold gradient */
    --gold-gradient: linear-gradient(135deg, #c9a227 0%, #e8d48a 50%, #c9a227 100%);

    /* Typography */
    --font-display: 'Tenor Sans', 'Didact Gothic', sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   Reset & Base
============================================ */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   Particles Canvas
============================================ */

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

/* ============================================
   Main Container
============================================ */

.container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-md);
}

.content {
    text-align: center;
    max-width: 800px;
}

/* ============================================
   Typography - Logo
============================================ */

.logo {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 300;
    letter-spacing: 0.5em;
    margin-bottom: var(--spacing-lg);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: var(--gold-gradient);
    opacity: 0.5;
}

/* ============================================
   Typography - Coming Soon
============================================ */

.coming-soon {
    font-family: var(--font-body);
    font-size: clamp(0.875rem, 2vw, 1rem);
    font-weight: 300;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--spacing-md);
}

/* ============================================
   Launch Hint
============================================ */

.launch-hint {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--text-subtle);
    margin-bottom: var(--spacing-md);
}

/* ============================================
   Typography - Tagline
============================================ */

.tagline {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

/* ============================================
   Decorative Divider
============================================ */

.divider {
    width: 100px;
    height: 1px;
    background: var(--gold-gradient);
    margin: 0 auto var(--spacing-md);
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--gold);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

/* ============================================
   Typography - Subtitle
============================================ */

.subtitle {
    font-family: var(--font-body);
    font-size: clamp(0.875rem, 2vw, 1.125rem);
    font-weight: 300;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: var(--spacing-lg);
}

/* ============================================
   CTA Button
============================================ */

.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--gold);
    padding: 1rem 2rem;
    border: 1px solid var(--gold);
    background: transparent;
    transition: background 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    background: var(--gold);
    color: var(--bg-primary);
}

.btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    border-color: var(--text-subtle);
    color: var(--text-muted);
}

.btn-secondary:hover {
    border-color: var(--gold);
    background: transparent;
    color: var(--gold);
}

/* ============================================
   Social Links
============================================ */

.social {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: var(--gold);
    transition: all var(--transition-medium);
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
}

.social-link svg {
    width: 24px;
    height: 24px;
    transition: transform var(--transition-fast);
}

.social-link:hover {
    color: var(--gold-light);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.social-link:hover svg {
    transform: scale(1.1);
}

.social-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 1px;
    background: var(--gold);
    transition: transform var(--transition-fast);
}

.social-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* ============================================
   Animations - Fade In
============================================ */

.animate-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.animate-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Shimmer Effect for Logo
============================================ */

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

.logo.visible {
    background-size: 200% auto;
    animation: shimmer 4s linear infinite;
}

/* ============================================
   Glow Pulse for Gold Elements
============================================ */

@keyframes goldPulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.divider::before {
    animation: goldPulse 2s ease-in-out infinite;
}

/* ============================================
   Responsive Design
============================================ */

@media (max-width: 768px) {
    :root {
        --spacing-lg: 2rem;
        --spacing-xl: 3rem;
    }

    .logo {
        letter-spacing: 0.3em;
    }

    .social {
        gap: var(--spacing-sm);
    }

    .btn {
        padding: 0.875rem 2rem;
    }
}

@media (max-width: 480px) {
    .logo::after {
        width: 80%;
    }

    .coming-soon {
        letter-spacing: 0.2em;
    }

    .tagline {
        letter-spacing: 0.05em;
    }

    .social {
        bottom: var(--spacing-sm);
    }
}

/* ============================================
   Contacts Page Specific Styles
============================================ */

.page-contacts {
    min-height: 100vh;
    padding: var(--spacing-xl) var(--spacing-md);
}

.page-contacts .content {
    max-width: 900px;
    margin: 0 auto;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: var(--spacing-lg);
    transition: opacity var(--transition-fast);
}

.back-link:hover {
    opacity: 0.7;
}

.back-link svg {
    width: 16px;
    height: 16px;
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.section-divider {
    width: 150px;
    height: 1px;
    background: var(--gold-gradient);
    margin: var(--spacing-xl) auto;
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--gold);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.contact-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: var(--spacing-md);
    text-align: center;
    transition: all var(--transition-medium);
}

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

.contact-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
}

.contact-card p,
.contact-card a {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: none;
    line-height: 1.8;
}

.contact-card a:hover {
    color: var(--gold);
}

.contact-icon {
    width: 40px;
    height: 40px;
    color: var(--gold);
    margin-bottom: var(--spacing-sm);
    opacity: 0.7;
}

/* ============================================
   Stores Page
============================================ */

.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.store-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(201, 162, 39, 0.15);
    padding: var(--spacing-lg);
    text-align: center;
    transition: all 0.3s ease;
}

.store-card:hover {
    border-color: var(--gold);
}

.store-card h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: var(--spacing-sm);
}

.store-address {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Map container */
.map-section {
    margin-top: var(--spacing-xl);
}

.map-section h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-align: center;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
}

.map-container {
    width: 100%;
    height: 400px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    filter: grayscale(100%) contrast(1.1);
    transition: filter var(--transition-medium);
}

.map-container:hover {
    filter: grayscale(50%) contrast(1.05);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================
   Selection Styling
============================================ */

::selection {
    background: var(--gold);
    color: var(--bg-primary);
}

::-moz-selection {
    background: var(--gold);
    color: var(--bg-primary);
}

/* ============================================
   Scrollbar Styling
============================================ */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}
