@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --bg-primary: #FFFFFF;
  --bg-secondary: #F8F9FA;
  --color-bronze-dark: #8C5D3A;
  --color-bronze-medium: #A47A5C;
  --color-bronze-light: #C59B76;
  --color-text-dark: #1D1D1F;
  --color-text-muted: #515154;
  --color-glass-bg: rgba(255, 255, 255, 0.45);
  --color-glass-border: rgba(255, 255, 255, 0.75);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1200px;
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
  color: var(--color-text-dark);
  font-family: var(--font-body);
  overflow-x: hidden;
  height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow-x: hidden;
  background-color: var(--bg-primary);
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(140, 93, 58, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(197, 155, 118, 0.04) 0%, transparent 40%);
  padding: 1.5rem 1rem;
}

/* Background Canvas */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Ambient Bronze Glow */
.ambient-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(140, 93, 58, 0.07) 0%, rgba(255,255,255,0) 70%);
  z-index: 1;
  pointer-events: none;
  animation: pulse-glow 8s infinite alternate ease-in-out;
}

@keyframes pulse-glow {
  0% {
    transform: translate(-50%, -50%) scale(0.93);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.07);
    opacity: 1.2;
  }
}

/* Main Container */
.main-wrapper {
  width: 100%;
  max-width: var(--max-width);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  flex-grow: 1;
  padding: 1.5rem 0;
}

/* Center Card Container */
.card-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 800px;
  gap: 2rem;
}

/* Picture-frame Image Card */
.coming-soon-card {
  background: var(--color-glass-bg);
  border: 1px solid var(--color-glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 28px;
  width: 100%;
  overflow: hidden;
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.05), 
    0 10px 25px rgba(0, 0, 0, 0.02),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  animation: card-reveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  position: relative;
}

/* Corner architectural trims */
.coming-soon-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  height: 25px;
  border-top: 1px solid rgba(140, 93, 58, 0.25);
  border-left: 1px solid rgba(140, 93, 58, 0.25);
  border-top-left-radius: 28px;
  pointer-events: none;
  z-index: 5;
}

.coming-soon-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 25px;
  height: 25px;
  border-bottom: 1px solid rgba(140, 93, 58, 0.25);
  border-right: 1px solid rgba(140, 93, 58, 0.25);
  border-bottom-right-radius: 28px;
  pointer-events: none;
  z-index: 5;
}

@keyframes card-reveal {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.97);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.coming-soon-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.coming-soon-card:hover img {
  transform: scale(1.025);
}

/* Social links container */
.social-links {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: rgba(0, 0, 0, 0.01);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 50%;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-icon:hover {
  color: var(--color-bronze-dark);
  border-color: var(--color-bronze-light);
  background: rgba(140, 93, 58, 0.06);
  transform: translateY(-4px);
  box-shadow: 0 10px 15px rgba(140, 93, 58, 0.1);
}

/* Footer Layout */
footer {
  width: 100%;
  max-width: var(--max-width);
  text-align: center;
  z-index: 2;
  padding: 1.5rem 1rem 0.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-dark);
  margin-bottom: 0.4rem;
  display: inline-block;
}

.footer-logo span {
  color: var(--color-bronze-dark);
}

.tagline {
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-bronze-dark);
  margin-bottom: 0.6rem;
}

.copyright {
  font-size: 0.7rem;
  color: rgba(0, 0, 0, 0.4);
  letter-spacing: 0.05em;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.08);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-bronze-medium);
}

/* Responsive Breakpoints */
@media (max-width: 600px) {
  body {
    padding: 1.5rem 1rem 1rem;
  }

  .coming-soon-card {
    border-radius: 20px;
  }

  .coming-soon-card::before {
    border-top-left-radius: 20px;
    width: 15px;
    height: 15px;
  }

  .coming-soon-card::after {
    border-bottom-right-radius: 20px;
    width: 15px;
    height: 15px;
  }
  
  .card-container {
    gap: 1.5rem;
  }
}
