/* General Styling */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f5f5dc;
  color: #5c4033;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

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

/* Header Styling */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.logo-link {
  text-decoration: none;
  color: inherit;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo img {
  height: 120px;
  width: auto;
}

.logo h1 {
  color: #d4a373;
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  margin: 0;
  font-weight: 700;
}

/* Navigation Styling */
nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

nav a {
  color: #5c4033;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.3s ease;
  white-space: nowrap;
}

nav a:hover {
  color: #d4a373;
}

/* Apply CTA styling to dashboard button */
nav a.cta-button {
  padding: 0.75rem 1.5rem;
  background-color: #d4a373;
  color: #ffffff;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

nav a.cta-button:hover {
  background-color: #b22222;
  color: #ffffff;
}

/* Main Content Styling */
.main-title {
  color: #d4a373;
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.intro-text {
  text-align: center;
  font-size: 1.4rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

/* Instructions Container */
.instructions-container {
  display: flex;
  gap: 2rem;
  margin-bottom: 4rem;
}

.instruction-column {
  flex: 1;
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.instruction-column h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.client-column h2 {
  color: #d4a373;
}

.braider-column h2 {
  color: #5c4033;
}

/* Instruction Steps */
.instruction-step {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.instruction-step:hover {
  transform: translateY(-5px);
}

.instruction-step i {
  font-size: 2rem;
  color: #d4a373;
  margin-bottom: 1rem;
  display: block;
}

.instruction-step h3 {
  color: #5c4033;
  font-size: 1.3rem;
  margin: 0.5rem 0;
}

.instruction-step p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* CTA Section */
.cta-section {
  text-align: center;
  margin: 4rem 0;
}

.cta-section h2 {
  color: #d4a373;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.fees-info {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: #5c4033;
}

.fees-info a {
  color: #d4a373;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

.fees-info a:hover {
  color: #b22222;
  text-decoration: underline;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.main-cta {
  background-color: #d4a373;
  color: #ffffff;
  padding: 1.5rem 3rem;
  font-size: 1.3rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 163, 115, 0.3);
}

.main-cta:hover {
  opacity: 0.9;
  transform: scale(1.05);
  background-color: #c39366;
  box-shadow: 0 6px 20px rgba(212, 163, 115, 0.4);
}

.braider-showcase-link {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e8e1db;
  text-align: center;
}

.braider-showcase-link p {
  color: #5c4033;
  font-size: 1.1rem;
  margin: 0;
}

.braider-showcase-link a {
  color: #d4a373;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.braider-showcase-link a:hover {
  color: #b22222;
  text-decoration: underline;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 0;
  color: #5c4033;
}

/* Responsive Design */
@media (max-width: 768px) {
  .instructions-container {
    flex-direction: column;
  }

  .instruction-column {
    margin-bottom: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .main-title {
    font-size: 2.5rem;
  }

  .intro-text {
    font-size: 1.1rem;
  }
} 