/* Create Docs.com - Main Stylesheet */
/* Modern, professional dark theme with sleek design */

:root {
  /* Color Palette based on cre8docs.com.png */
  --primary: #3498db;      /* Blue */
  --secondary: #e74c3c;    /* Red accent */
  --dark: #121212;         /* Near black for background */
  --darker: #0a0a0a;       /* Even darker for sections */
  --light: #f5f5f5;        /* Light color for text */
  --gray: #7f8c8d;         /* Gray for secondary text */
  --success: #2ecc71;      /* Green for success elements */
  --gradient-start: #2c3e50;  /* Gradient dark blue */
  --gradient-end: #1a1a1a;    /* Gradient near black */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%; /* 10px = 1rem */
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', 'Helvetica Neue', sans-serif;
  background-color: var(--dark);
  color: var(--light);
  font-size: 1.6rem;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Helvetica Neue', sans-serif;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.2;
}

h1 {
  font-size: 4.8rem;
  margin-bottom: 3rem;
}

h2 {
  font-size: 3.6rem;
  position: relative;
  padding-bottom: 1rem;
}

h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 8rem;
  height: 3px;
  background: var(--primary);
}

h3 {
  font-size: 2.4rem;
}

p {
  margin-bottom: 2rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #5dade2;
}

.text-highlight {
  color: var(--primary);
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

/* Container */
.container {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.6rem;
  margin: 1rem 0;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  box-shadow: 0 4px 6px rgba(52, 152, 219, 0.3);
}

.btn-primary:hover {
  background-color: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 7px 14px rgba(52, 152, 219, 0.4);
}

.btn-secondary {
  background-color: var(--secondary);
  color: white;
  box-shadow: 0 4px 6px rgba(231, 76, 60, 0.3);
}

.btn-secondary:hover {
  background-color: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 7px 14px rgba(231, 76, 60, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: var(--light);
  border: 2px solid var(--light);
}

.btn-outline:hover {
  background-color: var(--light);
  color: var(--dark);
  transform: translateY(-2px);
}

/* Header & Navigation */
.header {
  background: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));
  padding: 2rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 5rem;
  margin-right: 1rem;
}

.logo-text {
  font-size: 2.4rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 3rem;
}

.nav-links a {
  color: var(--light);
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.language-selector {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}

.language-selector a {
  margin-left: 1rem;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.language-selector a:hover,
.language-selector a.active {
  opacity: 1;
}

.mobile-menu-btn {
  display: none;
  font-size: 2.4rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  margin-top: 7rem;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(0, 0, 0, 0.8));
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
  filter: brightness(0.3);
}

.hero-content {
  max-width: 70rem;
  z-index: 1;
}

.hero-tagline {
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary);
  margin-bottom: 1rem;
}

.hero-cta {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* Features Section */
.features {
  padding: 10rem 0;
  background-color: var(--darker);
}

.features-intro {
  text-align: center;
  margin-bottom: 6rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 4rem;
}

.feature-card {
  background: linear-gradient(to bottom right, #1a2a3a, #0a0a0a);
  border-radius: 8px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 3px solid var(--primary);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 8rem;
  height: 8rem;
  margin-bottom: 2rem;
}

.feature-title {
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
}

/* How It Works Section */
.how-it-works {
  padding: 10rem 0;
  background-color: var(--dark);
}

.steps-container {
  display: flex;
  flex-direction: column;
  margin-top: 5rem;
}

.step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 5rem;
  position: relative;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 7rem;
  left: 4rem;
  width: 2px;
  height: calc(100% - 2rem);
  background-color: var(--primary);
}

.step-number {
  background-color: var(--primary);
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  font-weight: 700;
  margin-right: 3rem;
  flex-shrink: 0;
  z-index: 1;
}

.step-content {
  flex: 1;
}

/* Testimonials Section */
.testimonials {
  padding: 10rem 0;
  background-color: var(--darker);
}

.testimonial-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 4rem;
  margin-top: 5rem;
}

.testimonial {
  background: linear-gradient(to bottom right, #1e3c72, #1a1a1a);
  border-radius: 8px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 8rem;
  color: rgba(52, 152, 219, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author-img {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  margin-right: 1.5rem;
}

.testimonial-author-name {
  font-weight: 700;
  font-size: 1.8rem;
}

.testimonial-author-title {
  color: var(--gray);
  font-size: 1.4rem;
}

/* CTA Section */
.cta {
  padding: 8rem 0;
  background: linear-gradient(135deg, #2980b9, #8e44ad);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/images/GAVEL.png') center/cover;
  opacity: 0.1;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta h2 {
  margin-bottom: 2rem;
}

.cta h2:after {
  left: 50%;
  transform: translateX(-50%);
}

/* Footer */
.footer {
  background-color: var(--darker);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-col h3 {
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 5rem;
  height: 2px;
  background-color: var(--primary);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--gray);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: var(--gray);
  font-size: 1.4rem;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--light);
  transition: all 0.3s;
}

.social-links a:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  html {
    font-size: 60%;
  }
  
  .hero-content {
    max-width: 60rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 55%;
  }
  
  .nav-links {
    position: fixed;
    top: 7rem;
    left: 0;
    right: 0;
    background: var(--gradient-start);
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    z-index: 99;
  }
  
  .nav-links.active {
    transform: translateY(0);
  }
  
  .nav-links li {
    margin: 1.5rem 0;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero {
    text-align: center;
    height: auto;
    min-height: 80vh;
    padding: 15rem 0 10rem;
  }
  
  .hero-content {
    margin: 0 auto;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .step:not(:last-child)::after {
    left: 50%;
    top: 8rem;
    height: 5rem;
    width: 2px;
    transform: translateX(-50%);
  }
  
  .step-number {
    margin-right: 0;
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 50%;
  }
  
  h1 {
    font-size: 3.6rem;
  }
  
  h2 {
    font-size: 2.8rem;
  }
  
  .hero {
    padding: 12rem 0 8rem;
  }
  
  .feature-card,
  .testimonial {
    padding: 2rem;
  }
} 
