/* Bryole 2026 Professional Corporate Theme - style.css */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Roboto:wght@400;500;700;900&display=swap');

:root {
  --bg-white: #FFFFFF;
  --bg-light: #F8FAFC;
  --bg-dark: #0A192F;
  --text-main: #1E293B;
  --text-muted: #64748B;
  --action-blue: #2563EB;
  --action-hover: #1D4ED8;
  --border-color: #E2E8F0;
  --font-heading: 'Roboto', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s ease-in-out;
}

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

html {
  scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--bg-dark);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: 3.5rem; margin-bottom: 1.5rem; letter-spacing: -1px; }
h2 { font-size: 2.5rem; margin-bottom: 1rem; letter-spacing: -0.5px; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 1.5rem; }

/* Utilities */
.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); color: #fff; }
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark p { color: #fff; }
.bg-dark p { opacity: 0.8; }

.text-center { text-align: center; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--action-blue);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--action-hover);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

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

.btn-outline:hover {
  background-color: var(--action-blue);
  color: #fff;
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border-color);
  padding: 20px 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--bg-dark);
  text-decoration: none;
  letter-spacing: -1px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--action-blue);
}

/* Hero Content */
.hero {
  padding-top: 180px;
  padding-bottom: 100px;
  background-color: var(--bg-dark);
  color: white;
}

.hero-inner {
  max-width: 800px;
}

.hero-inner h1 {
  color: white;
  font-size: 4rem;
}

/* Partner Logos (The Brands asked for) */
.partners-section {
  padding: 40px 0;
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-white);
}

.partner-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.partner-logo {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2rem;
  color: #A0AABF;
  text-transform: uppercase;
  letter-spacing: -1px;
  transition: var(--transition);
}

.partner-logo:hover {
  color: var(--bg-dark);
}

/* Grids */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* Service Cards */
.card {
  background: var(--bg-white);
  padding: 2.5rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

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

.card-icon {
  font-size: 2rem;
  color: var(--action-blue);
  margin-bottom: 1.5rem;
  font-weight: 900;
}

/* Stats */
.stat-item h2 {
  font-size: 4rem;
  color: var(--action-blue);
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-weight: 600;
  color: var(--bg-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Footer */
footer {
  background: #061121;
  padding: 80px 0 40px;
  color: #94A3B8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

footer h4 {
  color: white;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: #94A3B8; text-decoration: none; transition: var(--transition); }
.footer-links a:hover { color: var(--action-blue); }

.copy {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
  h1 { font-size: 2.5rem; }
  .hero-inner h1 { font-size: 2.8rem; }
  .nav-links { display: none; }
}
