/* Fire N Ice Arena - Main Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Open+Sans:wght@400;500;600;700&display=swap');

:root {
  --fire-orange: #FF6B35;
  --fire-red: #DC2626;
  --fire-dark: #991B1B;
  --ice-blue: #0EA5E9;
  --ice-light: #7DD3FC;
  --ice-cyan: #06B6D4;
  --dark-bg: #0F172A;
  --darker-bg: #020617;
  --card-bg: #1E293B;
  --text-light: #F8FAFC;
  --text-muted: #94A3B8;
  --border-color: #334155;
}

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

body {
  font-family: 'Open Sans', sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

a {
  color: var(--ice-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--ice-light);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-top {
  background: linear-gradient(90deg, var(--fire-orange), var(--fire-red), var(--ice-blue), var(--ice-cyan));
  padding: 8px 0;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.1em;
}

.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 120px;
  width: auto;
  max-width: 400px;
}

/* Navigation */
.nav {
  display: flex;
  gap: 5px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 12px 18px;
  color: var(--text-light);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  background: var(--card-bg);
  color: var(--ice-blue);
}

.nav-item:hover .dropdown {
  display: block;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  min-width: 220px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  z-index: 100;
}

.dropdown a {
  display: block;
  padding: 12px 20px;
  color: var(--text-light);
  font-size: 14px;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.dropdown a:last-child {
  border-bottom: none;
}

.dropdown a:hover {
  background: var(--dark-bg);
  color: var(--ice-blue);
  padding-left: 25px;
}

/* Hero Section */
.hero {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(220,38,38,0.6) 0%, rgba(14,165,233,0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
  font-size: 22px;
  margin-bottom: 30px;
  color: var(--text-light);
}

.hero-home {
  height: 600px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-fire {
  background: linear-gradient(135deg, var(--fire-orange), var(--fire-red));
  color: white;
}

.btn-fire:hover {
  background: linear-gradient(135deg, var(--fire-red), var(--fire-dark));
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255,107,53,0.4);
}

.btn-ice {
  background: linear-gradient(135deg, var(--ice-blue), var(--ice-cyan));
  color: white;
}

.btn-ice:hover {
  background: linear-gradient(135deg, var(--ice-cyan), var(--ice-blue));
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(14,165,233,0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--ice-blue);
  color: var(--ice-blue);
}

.btn-outline:hover {
  background: var(--ice-blue);
  color: white;
}

/* Section Styles */
.section {
  padding: 80px 0;
}

.section-dark {
  background: var(--darker-bg);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.section-title .fire-text {
  color: var(--fire-orange);
}

.section-title .ice-text {
  color: var(--ice-blue);
}

.section-title p {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  border-color: var(--ice-blue);
}

.card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.card-content {
  padding: 25px;
}

.card-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--text-light);
}

.card-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-item {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: var(--fire-orange);
  transform: translateY(-3px);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.feature-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.feature-item p {
  color: var(--text-muted);
  font-size: 14px;
}

/* Page Content */
.page-content {
  padding: 60px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

.content-main h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--fire-orange);
}

.content-main h3 {
  font-size: 24px;
  margin: 30px 0 15px;
  color: var(--ice-blue);
}

.content-main p {
  margin-bottom: 15px;
  color: var(--text-muted);
}

.content-main ul {
  list-style: none;
  margin-bottom: 20px;
}

.content-main ul li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  color: var(--text-muted);
}

.content-main ul li::before {
  content: "🔥";
  position: absolute;
  left: 0;
}

/* Pricing Tables */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
}

.pricing-table th {
  background: linear-gradient(135deg, var(--fire-orange), var(--fire-red));
  padding: 15px 20px;
  text-align: left;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-table td {
  padding: 15px 20px;
  border-bottom: 1px solid var(--border-color);
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table tr:hover td {
  background: var(--dark-bg);
}

.price {
  color: var(--ice-blue);
  font-weight: 700;
  font-size: 18px;
}

/* Forms */
.form-container {
  background: var(--card-bg);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.form-container h3 {
  font-size: 24px;
  margin-bottom: 25px;
  color: var(--fire-orange);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--dark-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-light);
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--ice-blue);
}

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

.form-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--fire-orange), var(--fire-red));
  color: white;
  border: none;
  border-radius: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit:hover {
  background: linear-gradient(135deg, var(--fire-red), var(--fire-dark));
  transform: translateY(-2px);
}

/* Sidebar */
.sidebar {
  position: sticky;
  top: 120px;
}

.sidebar-box {
  background: var(--card-bg);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  margin-bottom: 25px;
}

.sidebar-box h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--fire-orange);
}

.sidebar-box p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 10px;
}

.sidebar-box a {
  display: block;
  margin-top: 15px;
}

.contact-info {
  list-style: none;
}

.contact-info li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-muted);
}

.contact-info li:last-child {
  border-bottom: none;
}

.contact-info strong {
  color: var(--text-light);
}

/* Footer */
.footer {
  background: var(--darker-bg);
  border-top: 1px solid var(--border-color);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--fire-orange);
}

.footer-col ul {
  list-style: none;
}

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

.footer-col ul li a {
  color: var(--text-muted);
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--ice-blue);
}

.footer-col p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
  
  .sidebar {
    position: static;
  }
  
  .nav {
    display: none;
  }
  
  .header-main {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
  }
  
  .hero p {
    font-size: 18px;
  }
  
  .section-title h2 {
    font-size: 32px;
  }
  
  .card-grid {
    grid-template-columns: 1fr;
  }
  
  .logo img {
    height: 60px;
  }
  
  .logo-text {
    font-size: 20px;
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .mobile-nav-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .header-main {
    position: relative;
  }
}

/* Badge */
.badge {
  display: inline-block;
  padding: 6px 12px;
  background: linear-gradient(135deg, var(--fire-orange), var(--fire-red));
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Image Gallery */
.image-feature {
  width: 100%;
  border-radius: 12px;
  margin: 20px 0;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

/* Highlight Box */
.highlight-box {
  background: linear-gradient(135deg, rgba(255,107,53,0.1), rgba(14,165,233,0.1));
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 25px;
  margin: 25px 0;
}

.highlight-box h4 {
  color: var(--fire-orange);
  margin-bottom: 10px;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.stat-item {
  text-align: center;
  padding: 30px;
  background: var(--card-bg);
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--fire-orange), var(--ice-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: var(--text-muted);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 10px;
}
