@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;700;900&display=swap');

/* --- Root Variables: The Core of the Brand Identity --- */
:root {
    --black: #000000;
    --deep-black: #0a0a0b;
    --gold: #D4AF37;
    --rich-gold: #FFD700;
    --ivory: #FAF9F6;
    --pearl: #F8F6F0;
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(212, 175, 55, 0.25);
    --text-light: #FAF9F6;
    --text-dark: #000000;
    --text-muted: #666666;
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #D4AF37 50%, #FFD700 100%);
    --gradient-premium: linear-gradient(45deg, #FFD700, #FFA500, #FFD700, #F4E4A6, #FFD700);
    --font-tech: 'Orbitron', monospace;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    --shadow-luxury: 0 20px 60px rgba(212, 175, 55, 0.4);
}

/* --- Global Styles & Resets --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--ivory);
    color: var(--text-dark);
    font-family: var(--font-sans);
    overflow-x: hidden;
    cursor: none; /* Hide default cursor */
}

/* --- Reusable Components (Cursor, Background) --- */
.cursor {
    position: fixed;
    width: 25px;
    height: 25px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    left: 0;
    top: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s;
    opacity: 0;
}

body.cursor-hover .cursor {
    width: 60px;
    height: 60px;
    background-color: rgba(212, 175, 55, 0.3);
    border-color: transparent;
}

.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    animation: luxuryShift 25s ease-in-out infinite;
}

@keyframes luxuryShift {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* --- Consistent Header Styling --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    padding: 1.5rem 0;
    background: rgba(250, 249, 246, 0.85);
    backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.header-scrolled {
    padding: 1rem 0;
    background: rgba(250, 249, 246, 0.95);
    box-shadow: 0 15px 60px rgba(212, 175, 55, 0.15);
    border-bottom: 2px solid var(--gold);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.logo:hover img {
    transform: scale(1.1) rotate(5deg);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cart-icon {
    position: relative;
    font-size: 1.8rem;
    color: var(--gold);
    transition: all 0.3s ease;
    cursor: pointer;
}

.cart-icon:hover {
    transform: scale(1.1);
    color: var(--rich-gold);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gradient-gold);
    color: var(--black);
    border-radius: 50%;
    min-width: 20px;
    height: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1002;
    width: 45px;
    height: 45px;
    background: transparent;
    border: 2px solid var(--gold);
    border-radius: 50%;
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gold);
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* --- NEW: Main Content & Notice Styles --- */
.main-content {
    min-height: calc(100vh - 80px); /* Fill screen minus footer height */
    padding: 120px 2rem 80px; /* Top for header, sides, bottom for footer */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.page-header {
    margin-bottom: 4rem;
}

.page-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 900;
    background: var(--gradient-premium);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.page-subtitle {
    color: var(--text-muted);
    font-size: clamp(1rem, 4vw, 1.3rem);
    font-style: italic;
    margin-top: 1rem;
}

.notice-section {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid var(--glass-border);
    border-radius: 25px;
    padding: clamp(2rem, 8vw, 4rem);
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.1);
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.notice-section:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-luxury);
    border-color: var(--gold);
}

.notice-icon {
    margin-bottom: 2rem;
}

.notice-icon i {
    font-size: clamp(4rem, 12vw, 6rem);
    color: var(--gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.notice-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.notice-text {
    font-size: clamp(1rem, 4vw, 1.2rem);
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Consistent Footer Styling --- */
footer {
    padding: 6rem 0 3rem;
    background: var(--deep-black);
    border-top: 2px solid var(--gold);
    text-align: center;
    color: var(--ivory);
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-family: var(--font-tech);
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.footer-section p, .footer-section a {
    color: var(--ivory);
    opacity: 0.8;
    line-height: 1.6;
    text-decoration: none;
    transition: all 0.4s ease;
}

.footer-section a:hover {
    color: var(--gold);
    opacity: 1;
    text-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.footer-section a {
    display: block;
    margin-bottom: 0.8rem;
}

.footer-description, .footer-address {
    font-style: italic;
    color: var(--text-muted) !important;
    margin-top: 1rem;
}

.footer-address .location {
    color: var(--gold);
    font-style: normal;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.social-icons a {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-size: 1.5rem;
}

.social-icons a:hover {
    background: var(--gradient-gold);
    color: var(--black);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.footer-copyright {
    color: var(--text-muted);
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    font-size: 0.9rem;
}

.footer-copyright a {
    color: var(--gold);
    text-decoration: none;
}

/* --- Back to Top Button --- */
.back-to-top {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 50%;
    color: var(--black);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1000;
    font-weight: 900;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-luxury);
}

/* --- Scroll Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .main-content {
        padding: 100px 1rem 60px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .back-to-top {
        bottom: 2rem;
        right: 2rem;
        width: 50px;
        height: 50px;
    }
}