/* Variables */
:root {
  --max-width: 1000px;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 60px;
}

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

html {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

body {
  background: #fff;
  color: #000;
}

a {
  color: #000;
  text-decoration: underline;
  cursor: pointer;
  display: block;
  transition: 0.3s;
  width: fit-content;
}

a:hover {
}

img {
  display: block;
  max-width: 100%;
}

/* Typography */
.text-large {
  font-size: 32px;
  font-weight: normal;
  line-height: 1.3; 
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
.extreme {
  font-size: 6rem;
  margin-top: 50px;
  margin-bottom: 200px;
}

.text-small {
  font-size: 12px;
  line-height: 1.5;
}

.caption {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

mark {
  background: #C2FE0B;
  color: #000;
  padding: 2px 4px;
  /*border: 1px solid #000;*/
}

/* Buttons */
button,
.button {
  background: #C2FE0B;
  color: #000;
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #000;
  padding: 16px 32px;
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

button:hover,
.button:hover {
  background: #000;
  color: #fff;
}

/* Inputs */
input,
textarea,
select {
  width: 100%;
  padding: 8px;
  border: 1px solid #000;
  font-family: inherit;
  font-size: 14px;
  background: #fff;
}

input:focus,
textarea:focus {
  outline: none;
  background: #f5f5f5;
}

.spaced {
  margin-bottom: 50px;
}

/* Layout */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

/* Header */
.header {
  width: 100%;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.branding {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
}

/* Hero Section */
.hero {
  padding: var(--space-xl) 0px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-header {
  margin-bottom: var(--space-xl);
}

.hero-image {
  width: 100%;
  height: 1000px;
  background-size: cover;
  background-position: center;
  border: 1px solid #000;
}

/* Content Sections */
.section {
  padding: var(--space-xl) 20px;
  /*border-top: 1px solid #000;*/
}

.section-dark {
  background: #000;
  padding: 100px 0px;
  color: #fff;
}

.section-dark .caption,
.section-dark h1,
.section-dark h2,
.section-dark p {
  color: #fff;
}

/* Grid System */
.grid {
  display: grid;
  background: #000;
  border: 1px solid #000;
  gap: 1px;
}

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

.grid-auto {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.grid-item {
  background: #fff;
  padding: 20px;
}

h3 {
  text-transform: uppercase;
}
/* Accordion */
.industry-item {
  background: #fff;
  padding: 20px;
  min-height: 200px;
  overflow: hidden;
}

.accordion-trigger {
  padding: 10px;
  background: #fff;
  transition: 0.3s;
}

.accordion-content {
  display: none;
  padding: 10px 0;
}

.accordion-content-active {
  display: block;
}

/* Case Studies */
.case-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.case-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border: 1px solid #000;
}

/* Footer */
.footer {
  padding: var(--space-xl) 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #000;
  margin-bottom: 20px;
}

.footer-content {
  display: flex;
  gap: var(--space-xl);
  padding: 20px 0;
  border-bottom: 1px solid #000;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.socials {
  display: flex;
  gap: var(--space-lg);
}

.social-icon {
  width: 16px;
  height: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.social-icon:hover {
  opacity: 0.5;
}

/* Responsive */
@media (max-width: 991px) {
  .text-large {
    font-size: 24px;
  }

  .hero {
    padding: var(--space-lg) 20px;
  }

  .hero-image {
    height: 400px;
  }

  .section {
    padding: var(--space-lg) 20px;
  }

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

@media (max-width: 767px) {
  .navbar {
    padding: 20px;
  }

  .hero-image {
    height: 300px;
  }

  .footer-content {
    flex-direction: column;
    gap: var(--space-md);
  }
}
