/* 
   Modern Styles for aiporngenerator.irish
   Dark Teal and Gold color scheme - different from previous sites
*/

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

/* Variables */
:root {
  /* Colors - unique dark teal and gold theme */
  --primary: #0D9488;
  --secondary: #F59E0B;
  --gradient: linear-gradient(to right, var(--primary), var(--secondary));
  --dark: #0F172A;
  --darker: #020617;
  --gray-dark: #1E293B;
  --gray-medium: #64748B;
  --gray-light: #CBD5E1;
  --white: #FFFFFF;
  --bg-dark: #0F172A;
  --bg-card: #1E293B;
  
  /* Typography */
  --font-main: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  
  /* Other */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 2rem;
  --header-height: 5rem;
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  --transition: all 0.3s ease;
}

/* Base Styles */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--white);
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-md);
}

h2 {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  position: relative;
  letter-spacing: -0.015em;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
}

h4 {
  font-size: 1.25rem;
  color: var(--secondary);
}

p {
  margin-bottom: var(--space-md);
  color: var(--gray-light);
}

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

a:hover {
  color: var(--primary);
}

ul {
  list-style: none;
}

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

button, .button {
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  transition: var(--transition);
}

/* Header Styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
  padding: 0 var(--space-md);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: var(--transition);
  background-color: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(10px);
}

header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.logo svg {
  width: 40px;
  height: 40px;
}

.logo-text {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--white);
}

.logo-text span {
  color: var(--secondary);
}

nav {
  display: flex;
  align-items: center;
}

nav ul {
  display: flex;
  gap: var(--space-md);
}

nav a {
  color: var(--gray-light);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

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

nav a:hover {
  color: var(--white);
}

nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  color: var(--white);
  font-size: 1.5rem;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--space-xl) var(--space-md);
  position: relative;
  overflow: hidden;
  background-color: var(--darker);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at bottom right, rgba(13, 148, 136, 0.2), transparent 60%),
              radial-gradient(circle at top left, rgba(245, 158, 11, 0.1), transparent 60%);
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.highlight {
  color: var(--secondary);
}

.hero-text {
  font-size: 1.25rem;
  margin-bottom: var(--space-lg);
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  background: var(--secondary);
  color: var(--dark);
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  background: var(--primary);
  color: var(--white);
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.3), transparent 70%);
  border-radius: 50%;
  filter: blur(30px);
  z-index: 0;
}

/* Features Section */
.features {
  padding: var(--space-xl) var(--space-md);
  background-color: var(--bg-dark);
}

.section-header {
  max-width: 800px;
  margin: 0 auto var(--space-lg);
  text-align: center;
}

.section-title {
  margin-bottom: var(--space-sm);
  display: inline-block;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--gradient);
  margin: var(--space-xs) auto 0;
  border-radius: var(--radius-sm);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: var(--space-sm);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.feature-card p {
  color: var(--gray-light);
  opacity: 0.8;
  flex-grow: 1;
}

/* How It Works Section */
.how-it-works {
  padding: var(--space-xl) var(--space-md);
  background-color: var(--darker);
  position: relative;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(13, 148, 136, 0.1), transparent 60%),
              radial-gradient(circle at bottom left, rgba(245, 158, 11, 0.05), transparent 60%);
  z-index: 0;
}

.steps-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.step {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  position: relative;
}

.step:last-child {
  margin-bottom: 0;
}

.step-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.step-content {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
}

.step-content h3 {
  margin-bottom: var(--space-xs);
  color: var(--secondary);
}

/* Showcase Section */
.showcase {
  padding: var(--space-xl) var(--space-md);
  background-color: var(--bg-dark);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
}

.showcase-item {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.showcase-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.showcase-content {
  padding: var(--space-md);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.showcase-icon {
  width: 50px;
  height: 50px;
  margin-bottom: var(--space-sm);
}

.showcase-item h3 {
  margin-bottom: var(--space-xs);
  color: var(--secondary);
}

.showcase-item p {
  color: var(--gray-light);
  opacity: 0.8;
  margin-bottom: var(--space-sm);
  flex-grow: 1;
}

/* CTA Section */
.cta-section {
  padding: var(--space-xl) var(--space-md);
  background-color: var(--darker);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(13, 148, 136, 0.2), transparent 70%);
  z-index: 0;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  margin-bottom: var(--space-md);
}

.cta-section p {
  margin-bottom: var(--space-lg);
  font-size: 1.25rem;
}

/* Footer */
footer {
  background-color: var(--darker);
  padding: var(--space-lg) var(--space-md) var(--space-md);
  color: var(--gray-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  max-width: 1200px;
  margin: 0 auto var(--space-lg);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.footer-logo svg {
  width: 50px;
  height: 50px;
}

.footer-brand h3 {
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.footer-brand p {
  opacity: 0.8;
  margin-bottom: var(--space-sm);
}

.footer-heading {
  color: var(--secondary);
  margin-bottom: var(--space-sm);
  font-size: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer-links a {
  color: var(--gray-light);
  opacity: 0.8;
  transition: var(--transition);
}

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

.copyright {
  text-align: center;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0.7;
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Legal Pages */
.legal-content {
  max-width: 900px;
  margin: var(--header-height) auto 0;
  padding: var(--space-lg) var(--space-md);
}

.legal-content h1 {
  font-size: 2.5rem;
  margin-bottom: var(--space-lg);
  text-align: center;
}

.legal-content h2 {
  font-size: 1.75rem;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.legal-content h3 {
  font-size: 1.25rem;
  color: var(--secondary);
}

.legal-content section {
  margin-bottom: var(--space-lg);
}

.legal-content ul, .legal-content ol {
  margin-left: var(--space-md);
  margin-bottom: var(--space-md);
}

.legal-content ul li {
  list-style-type: disc;
  margin-bottom: var(--space-xs);
}

.legal-content a {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  :root {
    --space-xl: 5rem;
  }
  
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.25rem;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content {
    margin: 0 auto;
  }
  
  .hero-image {
    margin-top: var(--space-md);
  }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 4rem;
    --space-lg: 3rem;
    --header-height: 4.5rem;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .menu-toggle {
    display: block;
  }
  
  nav ul {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    flex-direction: column;
    background-color: var(--darker);
    box-shadow: var(--shadow-md);
    height: calc(100vh - var(--header-height));
    width: 250px;
    padding: var(--space-md);
    transition: var(--transition);
    z-index: 100;
  }
  
  nav ul.show {
    right: 0;
  }
  
  .step {
    flex-direction: column;
  }
  
  .step-number {
    margin: 0 auto var(--space-sm);
  }
}

@media (max-width: 480px) {
  :root {
    --space-xl: 3rem;
    --space-lg: 2rem;
    --space-md: 1.5rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .cta-button {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
  
  .feature-card {
    padding: var(--space-sm);
  }
}
