/* FABREKO Company Website Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --teal-primary: #14B8A6;
  --teal-dark: #0D9488;
  --teal-light: #F0FDFA;
  --black: #000000;
  --white: #FFFFFF;
  --gray-dark: #4B5563;
  --gray-light: #F3F4F6;
}

body {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--gray-dark);
  background-color: var(--white);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 1rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 2rem;
  font-weight: 800;
  color: var(--black);
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: var(--gray-dark);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--teal-primary);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  margin-top: 80px;
  min-height: 90vh;
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--white) 100%);
  display: flex;
  align-items: center;
  padding: 4rem 2rem;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-content .highlight {
  color: var(--teal-primary);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--gray-dark);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: 2px solid transparent;
  display: inline-block;
}

.btn-primary {
  background-color: var(--teal-primary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--teal-primary);
  border-color: var(--teal-primary);
}

.btn-outline:hover {
  background-color: var(--teal-light);
}

.hero-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Section */
.section {
  padding: 5rem 2rem;
}

.section-alt {
  background-color: var(--teal-light);
}

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

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1rem;
}

.section-title .underline {
  width: 100px;
  height: 4px;
  background-color: var(--teal-primary);
  margin: 0 auto 1rem;
}

.section-title p {
  font-size: 1.2rem;
  color: var(--gray-dark);
  max-width: 800px;
  margin: 0 auto;
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

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

/* Cards */
.card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  border: 2px solid transparent;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: var(--teal-primary);
}

.card-icon {
  width: 60px;
  height: 60px;
  color: var(--teal-primary);
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 1rem;
}

.card p {
  color: var(--gray-dark);
  line-height: 1.8;
}

.card ul {
  list-style: none;
  padding: 0;
}

.card ul li {
  padding: 0.5rem 0;
  color: var(--gray-dark);
}

/* Images */
.content-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Team Section */
.team-member {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.team-icon {
  width: 50px;
  height: 50px;
  color: var(--teal-primary);
  flex-shrink: 0;
}

.team-info h3 {
  font-size: 1.5rem;
  color: var(--black);
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--teal-primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Company Structure */
.org-chart {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background-color: var(--white);
  border-radius: 12px;
}

.org-level {
  text-align: center;
  margin-bottom: 2rem;
}

.org-box {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  margin: 0.5rem;
}

.org-box.director {
  background-color: var(--teal-primary);
  color: var(--white);
  font-size: 1.2rem;
}

.org-box.manager {
  background-color: var(--white);
  border: 2px solid var(--teal-primary);
  color: var(--black);
}

.org-box.team {
  background-color: var(--white);
  border: 2px solid var(--gray-dark);
  color: var(--black);
  font-weight: 600;
}

/* Contact Section */
.contact-info {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 30px;
  height: 30px;
  color: var(--teal-primary);
  flex-shrink: 0;
}

.contact-details h4 {
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.25rem;
}

.contact-details p {
  color: var(--gray-dark);
}

.company-info-box {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 2rem;
}

.company-info-box h4 {
  color: var(--black);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.company-info-box p {
  margin: 0.5rem 0;
  color: var(--gray-dark);
}

/* Projects Page Styles */
.project-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
  padding: 2rem;
  background-color: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.project-content {
  padding: 1rem;
}

.project-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--teal-primary);
  color: var(--white);
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.project-showcase h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.project-type {
  color: var(--teal-primary);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.project-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray-dark);
  margin-bottom: 1.5rem;
}

.project-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.detail-item {
  font-size: 1rem;
  color: var(--gray-dark);
}

.detail-item strong {
  color: var(--black);
  margin-right: 0.5rem;
}

.project-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.project-card {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  border: 2px solid transparent;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  border-color: var(--teal-primary);
}

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

.project-card-content {
  padding: 2rem;
}

.project-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.project-card p {
  color: var(--gray-dark);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.project-meta {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--gray-dark);
}

/* Footer */
.footer {
  background-color: var(--black);
  color: var(--white);
  padding: 3rem 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.footer h4 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer p,
.footer ul {
  color: #9CA3AF;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 0.5rem;
}

.footer a {
  color: #9CA3AF;
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #374151;
  color: #9CA3AF;
}

/* Responsive Design */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    display: flex;
  }

  .hero-container {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .project-showcase {
    grid-template-columns: 1fr;
  }

  .project-image img {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .project-showcase h3 {
    font-size: 1.5rem;
  }
}