@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&family=Inter:wght@300;400;500;600&family=Outfit:wght@300;400;600;700&display=swap'); :root { --color-heading: #d3cab3; --color-button: #d28839; --color-paragraph: #c49c5c; --color-gold: #d28839; --color-gold-light: #f5e6d3; --color-dark: #0a0a0a; --color-dark-accent: #110908; --color-text-light: #f5f5f5; --font-heading: 'Playfair Display', serif; --font-accent: 'Outfit', sans-serif; --font-body: 'Inter', sans-serif; } * { box-sizing: border-box; padding: 0; margin: 0; } html, body { height: 100%; width: 100%; background-color: var(--color-dark); color: var(--color-text-light); font-family: var(--font-body); -webkit-font-smoothing: antialiased; overflow-x: hidden; } h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-heading); letter-spacing: -0.02em; } .grand-text { font-family: var(--font-heading); background: linear-gradient(135deg, #d3cab3 0%, #fff 25%, #d28839 50%, #fff 75%, #d3cab3 100%); background-size: 200% auto; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; display: inline-block; position: relative; animation: colorShift 12s linear infinite; filter: drop-shadow(0 0 10px rgba(210, 136, 57, 0.2)); } @keyframes colorShift { 0% { background-position: 0% center; } 100% { background-position: 200% center; } } .shine-effect { position: relative; overflow: hidden; } .shine-effect::after { content: ''; position: absolute; top: 0; left: -200%; width: 100%; height: 100%; background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%); transform: skewX(-25deg); animation: shine 4s ease-in-out infinite; } @keyframes shine { 0% { left: -200%; } 35% { left: 200%; } 100% { left: 200%; } } .glass-card { background: rgba(15, 15, 15, 0.45); backdrop-filter: blur(25px) saturate(180%); border: 1px solid rgba(210, 136, 57, 0.15); border-radius: 32px; transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1); overflow: hidden; position: relative; box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3); } .glass-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent); z-index: 5; opacity: 0.8; } .glass-card:hover { transform: translateY(-20px) scale(1.02); border-color: rgba(210, 136, 57, 0.6); box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(210, 136, 57, 0.3); background: rgba(20, 10, 10, 0.6); } .card-frame { position: absolute; inset: 16px; border: 1px solid rgba(210, 136, 57, 0.2); pointer-events: none; z-index: 10; opacity: 0; transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1); border-radius: 20px; } .glass-card:hover .card-frame { opacity: 1; inset: 12px; } .transition-image { transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1); } .glass-card:hover .transition-image { transform: scale(1.1); } .overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.9) 100%); z-index: 1; transition: opacity 0.5s ease; } .main-container { min-height: 100vh; position: relative; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; padding: 40px 24px; overflow: hidden; background-color: var(--color-dark); } @media (min-width: 768px) { .main-container { padding: 40px 48px; } } .content-wrapper { position: relative; z-index: 10; width: 100%; max-width: 1280px; margin: 0 auto; } .hero-section { text-align: center; margin-bottom: 30px; } .locations-grid { display: grid; grid-template-columns: 1fr; gap: 48px; margin-top: 10px; } @media (min-width: 860px) { .locations-grid { grid-template-columns: 1fr 1fr; } } .card-image-container { position: relative; height: 320px; overflow: hidden; } .card-content { padding: 48px; border-top: 1px solid rgba(210, 136, 57, 0.1); background: linear-gradient(180deg, rgba(65, 13, 10, 0.8) 0%, rgba(15, 0, 0, 0.95) 100%); position: relative; } .card-content::after { content: ''; position: absolute; bottom: 0; right: 0; width: 150px; height: 150px; background: radial-gradient(circle at bottom right, rgba(210, 136, 57, 0.1), transparent 70%); pointer-events: none; } .signature-badge { display: flex; align-items: center; gap: 8px; background: rgba(210, 136, 57, 0.15); border: 1px solid rgba(210, 136, 57, 0.3); padding: 6px 12px; border-radius: 99px; margin-bottom: 20px; width: fit-content; } .signature-text { font-family: var(--font-accent); font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; font-weight: 600; color: var(--color-gold); } .explore-btn { display: inline-flex; align-items: center; gap: 16px; color: #fff; font-family: var(--font-accent); font-size: 14px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500; transition: all 0.3s ease; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.1); } .glass-card:hover .explore-btn { color: var(--color-gold); border-bottom-color: var(--color-gold); gap: 24px; } .footer-copyright { margin-top: 40px; text-align: center; padding: 40px 0 0; border-top: 1px solid rgba(210, 136, 57, 0.1); color: rgba(255, 255, 255, 0.4); font-size: 0.85rem; letter-spacing: 0.1em; font-family: var(--font-accent); } .footer-copyright a { color: var(--color-gold); text-decoration: none; font-weight: 600; transition: all 0.3s ease; position: relative; } .footer-copyright a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 100%; height: 1px; background-color: var(--color-gold); transform: scaleX(0); transform-origin: right; transition: transform 0.4s ease; } .footer-copyright a:hover::after { transform: scaleX(1); transform-origin: left; } .noise-bg { position: fixed; inset: 0; opacity: 0.04; background-image: url('https://grainy-gradients.vercel.app/noise.svg'); pointer-events: none; z-index: 1; } .hero-gradient { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 20% 30%, rgba(210, 136, 57, 0.08) 0%, transparent 40%), radial-gradient(circle at 80% 70%, rgba(65, 13, 10, 0.15) 0%, transparent 40%); pointer-events: none; z-index: 0; } .decorative-blob { position: fixed; border-radius: 50%; filter: blur(120px); pointer-events: none; z-index: 0; opacity: 0.4; animation: pulse 12s infinite alternate ease-in-out; } @keyframes pulse { 0% { transform: scale(1) translate(0, 0); } 100% { transform: scale(1.2) translate(30px, 20px); } } .blob-1 { top: -10%; left: -10%; width: 40vw; height: 40vw; background: radial-gradient(circle, rgba(210, 136, 57, 0.2), transparent); } .blob-2 { bottom: -15%; right: -10%; width: 50vw; height: 50vw; background: radial-gradient(circle, rgba(65, 13, 10, 0.3), transparent); }