/* ============================================
   ANO VEXA — Crafting Your Outdoor Oasis
   Canva-Inspired Design v2.0
   ============================================ */

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

:root {
  --gold: #C8A950;
  --gold-light: #D4B76A;
  --gold-dark: #B8933E;
  --cream: #F8F5EE;
  --cream-dark: #EDE8DB;
  --white: #FFFFFF;
  --text: #1A1A1A;
  --text-light: #555555;
  --text-muted: #888888;
  --border: #E0DBD0;
  --shadow: 0 2px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.10);
  --radius: 6px;
  --radius-lg: 12px;
  --transition: 0.35s ease;
  --max-width: 1240px;
  --font-heading: 'Georgia', 'Times New Roman', serif;
  --font-body: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.25;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.4rem); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 38px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-align: center;
  font-family: var(--font-body);
  letter-spacing: 0.5px;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(200,169,80,0.35);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-dark {
  background: var(--text);
  color: var(--white);
}
.btn-dark:hover {
  background: #333;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}

.btn-white {
  background: var(--white);
  color: var(--text);
}
.btn-white:hover {
  background: var(--cream-dark);
  transform: translateY(-1px);
}

/* --- Header / Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(248,245,238,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,0.05);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 2px;
}

.logo .gold-dot {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text);
  position: relative;
  padding: 4px 0;
  letter-spacing: 0.5px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

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

.nav-links .btn {
  padding: 10px 26px;
  font-size: 0.85rem;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: all var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============ SECTIONS ============ */

/* --- Hero --- */
.hero {
  min-height: 100vh;
  background: var(--cream);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-top: 40px;
}

.hero-text {
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  line-height: 1.15;
  margin-bottom: 28px;
  color: var(--text);
}

.hero-text h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-text p {
  font-size: 1.08rem;
  color: var(--text-light);
  margin-bottom: 36px;
  max-width: 460px;
  line-height: 1.8;
}

.hero-image {
  position: relative;
  z-index: 1;
  height: 600px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #d5cfc0 0%, #bfb8a5 50%, #a09880 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image .placeholder-content {
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 1.2rem;
  font-family: var(--font-heading);
  font-style: italic;
}

/* --- Who We Are --- */
.who-we-are {
  padding: 100px 0;
  background: var(--white);
}

.who-we-are .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.wwa-image {
  height: 440px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #e8e3d5 0%, #d5cfc0 50%, #c4bda8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wwa-image .placeholder-content {
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  font-family: var(--font-heading);
  font-style: italic;
}

.wwa-text h2 {
  margin-bottom: 20px;
  color: var(--text);
}

.wwa-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1.02rem;
  line-height: 1.8;
}

/* --- Products Section --- */
.products-section {
  padding: 100px 0;
  background: var(--cream);
}

.products-section.alt-bg {
  background: var(--white);
}

.products-header {
  text-align: center;
  margin-bottom: 56px;
}

.products-header h2 {
  margin-bottom: 8px;
  color: var(--text);
}

.products-header p {
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto;
  font-size: 0.98rem;
}

.product-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-cat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid var(--border);
}

.products-section.alt-bg .product-cat-card {
  background: var(--cream);
}

.product-cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-cat-image {
  height: 280px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-cat-image img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.product-cat-image .placeholder-content {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  font-family: var(--font-heading);
}

.cat-img-1 { background: linear-gradient(135deg, #b8ad95, #a0957d); }
.cat-img-2 { background: linear-gradient(135deg, #c4b9a5, #b0a58d); }
.cat-img-3 { background: linear-gradient(135deg, #d0c8b5, #bfb59d); }
.cat-img-4 { background: linear-gradient(135deg, #e0cfa0, #d4c090); }
.cat-img-5 { background: linear-gradient(135deg, #ddc898, #cfb880); }
.cat-img-6 { background: linear-gradient(135deg, #e8d8b0, #dcc898); }

.product-cat-body {
  padding: 24px;
}

.product-cat-body h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--text);
}

.product-cat-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.shop-now {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition);
  letter-spacing: 0.5px;
}

.shop-now:hover {
  gap: 12px;
  color: var(--gold-dark);
}

.shop-now .arrow {
  transition: transform var(--transition);
}

.shop-now:hover .arrow {
  transform: translateX(3px);
}

/* --- Why Choose Us --- */
.why-us {
  padding: 100px 0;
  background: var(--gold);
  color: var(--white);
}

.why-us .section-label {
  color: rgba(255,255,255,0.8);
}

.why-us-header {
  text-align: center;
  margin-bottom: 56px;
}

.why-us-header h2 {
  color: var(--white);
}

.why-us-header p {
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 12px auto 0;
  font-size: 0.98rem;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-us-card {
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
  border: 1px solid rgba(255,255,255,0.15);
}

.why-us-card:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-4px);
}

.why-us-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.why-us-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--white);
}

.why-us-card p {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.7;
}

/* --- CTA Banner --- */
.cta-banner {
  padding: 80px 0;
  background: var(--cream);
  text-align: center;
}

.cta-banner h2 {
  margin-bottom: 12px;
  color: var(--text);
}

.cta-banner p {
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto 32px;
  font-size: 1rem;
}

/* --- Contact Section --- */
.contact-section {
  padding: 100px 0;
  background: var(--white);
}

.contact-header {
  text-align: center;
  margin-bottom: 56px;
}

.contact-header h2 {
  color: var(--text);
  margin-bottom: 8px;
}

.contact-header p {
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto;
  font-size: 0.98rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  padding: 40px;
  background: var(--cream);
  border-radius: var(--radius-lg);
}

.contact-info h3 {
  margin-bottom: 28px;
  color: var(--text);
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-icon {
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-item h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--text);
}

.contact-info-item p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.contact-form {
  padding: 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.contact-form h3 {
  margin-bottom: 28px;
  color: var(--text);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: var(--text);
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text);
  transition: all var(--transition);
  background: var(--cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,80,0.1);
  background: var(--white);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  margin-top: 8px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 20px;
  background: #f0f7ef;
  border-radius: var(--radius);
  color: #3a6b35;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 16px;
}

.form-error {
  color: #a33;
  background: #fef0f0;
  padding: 12px 16px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  font-size: 0.88rem;
  font-weight: 500;
}

/* --- Footer --- */
.footer {
  background: var(--text);
  color: var(--white);
  padding: 72px 0 32px;
}

.footer-content {
  text-align: center;
  margin-bottom: 40px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.95rem;
  opacity: 0.6;
  font-style: italic;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
  text-align: left;
}

.footer-grid h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--gold);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  opacity: 0.65;
  transition: all var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  text-align: center;
  font-size: 0.83rem;
  opacity: 0.4;
}

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(200,169,80,0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-image {
    height: 360px;
    order: -1;
  }
  .hero-text {
    text-align: center;
  }
  .hero-text p {
    max-width: 100%;
  }
  .product-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .who-we-are .container {
    grid-template-columns: 1fr;
  }
  .wwa-image {
    height: 320px;
    order: -1;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: rgba(248,245,238,0.98);
    flex-direction: column;
    padding: 28px 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    transition: transform var(--transition);
    z-index: 999;
    backdrop-filter: blur(12px);
  }
  .nav-links.open {
    transform: translateY(0);
  }
  .hero {
    min-height: auto;
    padding: 120px 0 48px;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
  .hero-image {
    height: 280px;
  }
  .section, .products-section, .who-we-are, .why-us, .contact-section {
    padding: 60px 0;
  }
  .product-category-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .why-us-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .contact-info,
  .contact-form {
    padding: 28px 20px;
  }
}
