/* Door 44 Design - Custom Styles */

:root {
  --primary: #2b5876;
  --primary-light: #4e768d;
  --primary-dark: #1e3a4f;
  --secondary: #4e4376;
  --accent: #e43a15;
  --text-dark: #2c3e50;
  --text-light: #7f8c8d;
  --bg-light: #f5f7fa;
  --white: #ffffff;
}

/* Global Styles */
body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin: 1.5rem 0 1rem;
}

h1 {
  font-size: 2.8rem;
  color: var(--primary-dark);
}

h2 {
  font-size: 2.2rem;
  color: var(--primary);
}

h3 {
  font-size: 1.6rem;
  color: var(--secondary);
}

p {
  margin-bottom: 1.2rem;
}

a {
  color: var(--primary);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent);
}

/* Navigation */
nav {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav .brand-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: -0.5px;
}

nav ul a {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease;
}

nav ul a:hover {
  background-color: rgba(255,255,255,0.1);
}

/* Hero Sections */
.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
  margin-bottom: 3rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero .hero-content {
  position: relative;
  text-align: center;
  color: var(--white);
  width: 90%;
  max-width: 900px;
  z-index: 2;
}

.hero .hero-content h1 {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero .hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #c23515 100%);
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 0 3rem;
  box-shadow: 0 4px 15px rgba(228, 58, 21, 0.3);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #c23515 0%, var(--accent) 100%);
  box-shadow: 0 6px 20px rgba(228, 58, 21, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 0 3rem;
  transition: all 0.3s ease;
}

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

/* Cards */
.card {
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

.card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

.card .card-image img {
  border-radius: 12px 12px 0 0;
}

.card .card-content {
  padding: 1.5rem;
}

.card .card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

/* Content Sections */
.content-section {
  padding: 4rem 0;
}

.content-section.bg-light {
  background-color: var(--bg-light);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
  border-radius: 2px;
}

/* Feature Boxes */
.feature-box {
  text-align: center;
  padding: 2rem;
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-8px);
}

.feature-box i {
  font-size: 3.5rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: block;
}

.feature-box h3 {
  margin-bottom: 1rem;
}

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

/* Lists */
ul:not(.browser-default) {
  padding-left: 0;
  list-style: none;
}

ul:not(.browser-default) li {
  padding-left: 2rem;
  position: relative;
  margin-bottom: 0.8rem;
}

ul:not(.browser-default) li:before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Footer */
.page-footer {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary) 100%);
  padding-top: 3rem;
}

.page-footer h5 {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.page-footer a {
  color: rgba(255,255,255,0.8);
}

.page-footer a:hover {
  color: var(--white);
}

.footer-copyright {
  background-color: rgba(0,0,0,0.2);
}

/* Responsive */
@media only screen and (max-width: 992px) {
  .hero {
    height: 400px;
  }

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

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }
}

@media only screen and (max-width: 600px) {
  .hero {
    height: 300px;
  }

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

  nav .brand-logo {
    font-size: 1.4rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Contact Info */
.contact-info {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.contact-info h3 {
  margin-top: 0;
}

.contact-info p {
  margin: 0.5rem 0;
  font-size: 1.1rem;
}

.contact-info strong {
  color: var(--primary);
  display: inline-block;
  min-width: 80px;
}
