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

:root {
  /* Premium Dark Nature Palette */
  --bg-base: #0B0F12;      /* Deep Forest Black */
  --bg-surface: #141A1E;   /* Dark Slate */
  --bg-glass: rgba(20, 26, 30, 0.65);
  --bg-glass-light: rgba(255, 255, 255, 0.05);
  
  --primary: #2ECC71;      /* Emerald Glow */
  --primary-hover: #27AE60;
  --accent: #F39C12;       /* Neon Amber */
  --accent-glow: rgba(243, 156, 18, 0.4);
  
  --text-main: #F8FAFC;
  --text-muted: #94A3B8;
  
  --border-glass: rgba(255, 255, 255, 0.1);
  --border-glow: rgba(46, 204, 113, 0.3);

  --font-title: 'Outfit', 'Prompt', sans-serif;
  --font-body: 'Prompt', sans-serif;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-base);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Glassmorphism Utilities */
.glass-panel {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.glass-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 15, 18, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  transition: all 0.3s ease;
}

.glass-nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.nav-brand {
  font-family: var(--font-title);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-brand span {
  color: var(--primary);
}

.nav-menu {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-menu a {
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.3s ease;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.nav-menu a:hover, .nav-menu a.active {
  color: var(--text-main);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--border-glow);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--border-glow);
}

.btn-accent {
  background: linear-gradient(135deg, #F39C12, #E67E22);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--accent-glow);
}

/* Mobile Nav Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-surface);
    flex-direction: column;
    padding: 100px 30px;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
  }
  .nav-menu.open {
    right: 0;
  }
  .mobile-toggle {
    display: block;
    z-index: 1001;
  }
}

/* Animations */
.fade-in { opacity: 0; animation: fadeIn 0.8s ease forwards; }
.slide-up { opacity: 0; transform: translateY(30px); animation: slideUp 0.8s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

@keyframes fadeIn { to { opacity: 1; } }
@keyframes slideUp { to { opacity: 1; transform: translateY(0); } }

/* Hero Section V2 */
.hero-v2 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px; /* Offset for nav */
}

.hero-v2::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(11,15,18,0.2) 0%, var(--bg-base) 100%);
  z-index: 1;
}

.hero-v2-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-v2-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-v2-content h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: -1px;
  margin-bottom: 20px;
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-v2-content p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 600px;
}

/* Weather Glass Widget */
.weather-glass {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 30px;
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

.weather-stat {
  display: flex;
  align-items: center;
  gap: 15px;
}
.weather-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--bg-glass-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.weather-info span {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.weather-info strong {
  font-size: 1.1rem;
  color: var(--text-main);
}

/* Section Basics */
.section {
  padding: 100px 0;
}
.section-header {
  margin-bottom: 50px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.section-title p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Borderless Image Cards */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.card-v2 {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-surface);
  cursor: pointer;
}

.card-v2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card-v2::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(11,15,18,0.95) 0%, rgba(11,15,18,0.2) 50%, transparent 100%);
}

.card-v2-body {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  z-index: 2;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.card-v2:hover img {
  transform: scale(1.08);
}
.card-v2:hover .card-v2-body {
  transform: translateY(0);
}

.card-v2-badge {
  display: inline-block;
  padding: 6px 12px;
  background: var(--bg-glass);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-glass);
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
}

.card-v2 h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.card-v2 p {
  color: var(--text-muted);
  font-size: 0.95rem;
  opacity: 0;
  transition: opacity 0.4s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-v2:hover p {
  opacity: 1;
}

.card-v2-footer {
  margin-top: 15px;
  display: flex;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card-v2:hover .card-v2-footer {
  opacity: 1;
}

/* Lookbook Product Cards (Shop) */
.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 40px 20px;
}

.lookbook-item {
  background: transparent;
}
.lookbook-img {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  margin-bottom: 20px;
}
.lookbook-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.lookbook-item:hover .lookbook-img img {
  transform: scale(1.05);
}
.lookbook-badge {
  position: absolute;
  top: 15px; left: 15px;
  background: var(--accent);
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: bold;
}
.lookbook-info h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}
.lookbook-info .price {
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
}
.lookbook-btn {
  display: block;
  text-align: center;
  padding: 10px;
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  color: var(--text-main);
  border-radius: 8px;
  transition: all 0.3s ease;
}
.lookbook-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #000;
}

/* Footer V2 */
.footer-v2 {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-glass);
  padding: 60px 0 30px;
  margin-top: 50px;
}
.footer-v2-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-v2 h4 {
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: #fff;
}
.footer-v2 p, .footer-v2 a {
  color: var(--text-muted);
}
.footer-v2 a:hover {
  color: var(--primary);
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: #334155; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #475569; }
