/*
Theme Name: IAIO Redesign
Theme URI: https://influencersawards.mu
Description: Influencers Awards Indian Ocean — luxury dark awards theme
Version: 1.0.0
Author: Datamation
Author URI: https://datamation.mu
Text Domain: iaio-redesign
*/

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

:root {
  --bg:        #ffffff;
  --bg2:       #f5f7fa;
  --gold:      #9D8B33;
  --gold-lt:   #C4B050;
  --text:      #111827;
  --text2:     #374151;
  --white:     #FFFFFF;
  --gray:      #6B7280;
  --gray2:     #9CA3AF;
  --card-bg:   rgba(0,0,0,0.03);
  --border:    rgba(157,139,51,0.2);
  --radius:    12px;
  --transition: 0.35s ease;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }

.label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

h1,h2,h3,h4 { font-family: 'Inter', sans-serif; font-weight: 800; line-height: 1.15; color: var(--text); }
h1 { font-size: clamp(2.5rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 700; }

.gold { color: var(--gold); }
.text-center { text-align: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(157,139,51,0.35); background: var(--gold-lt); }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover { background: var(--gold); color: #fff; transform: translateY(-2px); }

/* Fade-in on scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* Divider */
.gold-line {
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 16px auto 0;
}
.gold-line-left { margin-left: 0; }
