/* Import Bootstrap CSS */
@import 'https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css';

:root {
  --primary-color: #FF3B3B;
  --dark-bg: #111111;
  --text-color: #FFFFFF;
  --accent-green: #3BFF72;
  --accent-orange: #FFA23B;
  --card-bg: #1A1A1A;
  --border-color: rgba(255, 255, 255, 0.1);
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-color);
}

/* Navbar Styles */
.navbar {
  padding: 2rem 0;
  background-color: transparent;
}

.btn-primary {
  background-color: var(--primary-color);
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #ff2525;
}

/* Hero Section */
.hero {
  padding: 6rem 0;
}

.experience-tag {
  color: var(--primary-color);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  display: block;
}

h1 {
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.designer-text {
  font-size: 4rem;
  letter-spacing: -0.02em;
}

.text-primary {
  color: var(--primary-color) !important;
}

.lead {
  font-size: 1.25rem;
  opacity: 0.7;
  line-height: 1.6;
  font-weight: 400;
}

.hero-image {
  position: relative;
}

.curved-arrow {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 180px;
  height: 180px;
  border-right: 4px solid var(--accent-orange);
  border-top: 4px solid var(--accent-green);
  border-radius: 0 100% 0 0;
  z-index: 1;
}

/* Testimonial Section */
.testimonial {
  padding: 8rem 0;
}

.testimonial-card {
  background: var(--card-bg);
  border-radius: 1.5rem;
  padding: 4rem;
  position: relative;
  overflow: hidden;
}

.section-tag {
  color: var(--primary-color);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  display: block;
}

.testimonial-image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}

.testimonial-image img {
  border-radius: 1rem;
}

.accent-mark {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.testimonial-text {
  margin: 2rem 0;
  line-height: 1.8;
  opacity: 0.8;
  font-size: 1.1rem;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.testimonial-author {
  font-weight: 600;
  font-size: 1.1rem;
}

.position {
  opacity: 0.6;
  margin-left: 0.5rem;
}

.navigation-arrows {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
}

.navigation-arrows button {
  background: none;
  border: 1px solid var(--border-color);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.navigation-arrows button:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

/* Quote Section */
.quote {
  padding: 1rem 0 6rem;
}

.quote-card {
  background: var(--primary-color);
  color: #fff;
  padding: 4rem 4rem 2rem 4rem;
  border-radius: 1.5rem;
  position: relative;
}
.navbar-brand img {
  width: 100px;
}
blockquote {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  line-height: 1.4;
  letter-spacing: -0.02em;
}
.quote-card blockquote strong {
  color: #000;
}
cite {
  color: var(--primary-color);
  font-style: normal;
  font-weight: 600;
  font-size: 1.1rem;
}

.quote-number {
  position: absolute;
  right: 4rem;
  bottom: 4rem;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
}
.footer a {
  color: var(--primary-color)!important;
  text-decoration: none;
}
/* Footer */
.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border-color);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: white;
  text-decoration: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-link:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.copyright {
  opacity: 0.7;
}

.schedule {
  opacity: 0.7;
}

/* Legal Pages Styles */
.bg-dark {
  background-color: var(--dark-bg) !important;
}

.legal-content {
  color: var(--text-color);
}

.legal-content h2 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-top: 2rem;
}

.legal-content p, 
.legal-content ul {
  opacity: 0.8;
  line-height: 1.8;
}

.legal-content ul {
  padding-left: 1.5rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
  h1 {
    font-size: 4rem;
  }
  
  .designer-text {
    font-size: 3.5rem;
  }
}

@media (max-width: 992px) {
  h1 {
    font-size: 3.5rem;
  }
  
  .designer-text {
    font-size: 3rem;
  }
  
  .testimonial-card {
    padding: 3rem;
  }
  
  .quote-card {
    padding: 3rem;
  }
  
  blockquote {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 4rem 0;
  }
  
  h1 {
    font-size: 3rem;
  }
  
  .designer-text {
    font-size: 2.5rem;
  }
  
  .testimonial, .quote {
    padding: 4rem 0;
  }
  
  .testimonial-card,
  .quote-card {
    padding: 2rem;
  }
  
  blockquote {
    font-size: 1.5rem;
  }
  
  .quote-number {
    right: 2rem;
    bottom: 2rem;
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2.5rem;
  }
  .hero-image img, .testimonial-image img {
    width: 300px;
    max-width: 90%;
    margin: auto;
    display: block;
  }
  .designer-text {
    font-size: 2rem;
  }
  .quote-card blockquote {
    font-size: 1rem
  }
  .footer .container > div {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}