/* Main styles for PANIZO website */

:root {
  --primary: #0051a8;
  --primary-light: #e6f0ff;
  --secondary: #ff6b35;
  --text: #333333;
  --light-bg: #f9fafb;
  --dark-bg: #1e293b;
  --border: #e5e7eb;
}

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

body {
  font-family: 'Poppins', Arial, sans-serif;
  background-color: var(--light-bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}

/* Layout */
.container {
  max-width: 1140px;
  margin: auto;
  padding: 0 1.5rem;
}

/* Header */
header {
  background: linear-gradient(135deg, var(--primary), #003366);
  color: white;
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/images/header-bg.jpg');
  background-size: cover;
  opacity: 0.15;
  z-index: 0;
}

.header-content {
  position: relative;
  z-index: 1;
}

/* Typography */
h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

h2 {
  color: var(--primary);
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--secondary);
}

.tagline {
  font-size: 1.5rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  font-weight: 300;
}

/* Sections */
section {
  padding: 5rem 0;
}

section:nth-child(even) {
  background-color: white;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subheader {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

/* Grid layout */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* Responsive grid adjustments */
@media (max-width: 992px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    max-width: 800px;
  }
}

@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 90%;
    gap: 1.5rem;
  }
}

/* CTA section */
.cta {
  text-align: center;
  background: linear-gradient(135deg, var(--primary), #003366);
  color: white;
  padding: 5rem 0;
  position: relative;
}

.cta h2::after {
  background-color: white;
}

.cta h2, .cta p {
  color: white;
}

/* Footer */
footer {
  background-color: var(--dark-bg);
  color: white;
  padding: 3rem 0;
  text-align: center;
}

.footer-links {
  margin: 2rem 0;
}

.footer-link {
  color: #ccc;
  text-decoration: none;
  margin: 0 1rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: white;
}

.copyright {
  font-size: 0.9rem;
  color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
} 