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

:root {
  --color-primary: #1a1a1a;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-800: #1f2937;
  --color-gray-900: #111827;
}

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

body {
  font-family: 'Jura', system-ui, sans-serif;
  line-height: 1.5;
  color: var(--color-gray-900);
  background-color: white;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 1rem 0;
  z-index: 50;
  border-bottom: 1px solid var(--color-gray-200);
}

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

.logo-img {
  height: 48px;
}

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

.nav-list a {
  color: var(--color-gray-800);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-list a:hover {
  color: var(--color-gray-900);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-gray-800);
}

/* Hero Section */
.hero {
  padding: 8rem 0 4rem;
  background-color: white;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--color-gray-900);
  font-weight: 700;
}

.hero-text p {
  font-size: 1.125rem;
  color: var(--color-gray-700);
  margin-bottom: 2rem;
}

.hero-image {
  flex: 1;
}

.rounded-image {
  width: 100%;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  text-align: center;
  width: 100%;
  border: 1px solid transparent;
  font-family: 'Jura', system-ui, sans-serif;
}

.button.primary {
  background-color: var(--color-gray-900);
  color: white;
}

.button.primary:hover {
  background-color: var(--color-gray-800);
}

.button.outline {
  border: 1px solid var(--color-gray-900);
  color: var(--color-gray-900);
  background-color: white;
}

.button.outline:hover {
  background-color: var(--color-gray-100);
}

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

/* Features Section */
.features {
  padding: 4rem 0;
  background-color: var(--color-gray-50);
}

.features h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: var(--color-gray-900);
  font-weight: 700;
}

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

.feature-card {
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
}

.feature-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  color: var(--color-gray-800);
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--color-gray-900);
  font-weight: 600;
}

.feature-card p {
  color: var(--color-gray-700);
}

/* Downloads Section */
.downloads {
  padding: 4rem 0;
  background-color: white;
}

.downloads h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-gray-900);
  font-weight: 700;
}

.section-description {
  text-align: center;
  color: var(--color-gray-700);
  font-size: 1.125rem;
  max-width: 48rem;
  margin: 0 auto 3rem;
}

.downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

.download-card {
  background-color: white;
  border: 1px solid var(--color-gray-200);
  border-radius: 1rem;
  padding: 2rem;
  transition: box-shadow 0.3s;
}

.download-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.download-icon {
  background-color: var(--color-gray-100);
  padding: 1rem;
  border-radius: 0.75rem;
  width: fit-content;
  margin-bottom: 1.5rem;
}

.download-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-gray-900);
  font-weight: 600;
}

.download-content p {
  color: var(--color-gray-700);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
}

.filename {
  display: block;
  font-size: 1rem;
  color: var(--color-gray-500);
  margin-bottom: 1rem;
}

/* Cortinas Section */
.cortinas {
  padding: 4rem 0;
  background-color: white;
}

.cortinas h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--color-gray-900);
  font-weight: 700;
}

.cortina-product {
  max-width: 1000px;
  margin: 0 auto;
  background: linear-gradient(to bottom right, #8b4b8b, #6a376a);
  border-radius: 1rem;
  overflow: hidden;
  color: white;
  margin-bottom: 2rem;
}

.cortina-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
}

.cortina-image {
  flex: 1;
  max-width: 400px;
}

.product-image {
  width: 100%;
  height: auto;
  display: block;
}

.cortina-info {
  flex: 1;
  padding: 1rem;
}

.cortina-info h3 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  font-weight: 700;
}

.dimensions {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cortina-info h4 {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
  font-weight: 600;
}

.description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  opacity: 0.9;
}

.colors h5 {
  font-size: 1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.color-options {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.color-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.color-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.color-circle.white {
  background-color: white;
}

.color-circle.black {
  background-color: black;
}

.color-circle.gray {
  background-color: #808080;
}

.color-circle.wood {
  background-color: #8B4513;
}

.color-circle.bronze {
  background-color: #CD7F32;
}

.color-name {
  font-size: 0.9rem;
}

.additional-info {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mb-8 {
  margin-bottom: 2rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

/* Footer */
.footer {
  background-color: white;
  border-top: 1px solid var(--color-gray-200);
  padding: 2rem 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

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

.footer-logo-img {
  height: 64px;
  margin-bottom: 1rem;
}

.footer-logo p,
.footer-contact p {
  color: var(--color-gray-600);
}

.footer-contact h4 {
  color: var(--color-gray-800);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-gray-200);
}

.footer-bottom p {
  color: var(--color-gray-500);
  font-size: 0.875rem;
}

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

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

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

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

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

  .hero-buttons {
    justify-content: center;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .downloads h2 {
    font-size: 2rem;
  }

  .download-card {
    padding: 1.5rem;
  }

  .cortina-content {
    flex-direction: column;
    padding: 1.5rem;
  }

  .cortina-image {
    max-width: 100%;
  }

  .cortina-info h3 {
    font-size: 2rem;
  }

  .dimensions {
    font-size: 1.25rem;
  }

  .cortina-info h4 {
    font-size: 1.5rem;
  }

  .color-options {
    gap: 1rem;
  }
}