@font-face {
  font-family: 'Raleway';
  src: url('assets/fonts/Raleway-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Raleway';
  src: url('assets/fonts/Raleway-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Raleway', sans-serif;
  color: #262626;
  overflow-x: hidden;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

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

.business-name {
  color: white;
  font-family: 'Raleway', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.call-button {
  background: transparent;
  color: white;
  border: 1px solid white;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: inherit;
}

.call-button:hover {
  background: white;
  color: #333;
}

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

.lang a {
  color: white;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #262626;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.6) 100%
  ),
  url('./assets/images/hero-background.avif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  transform: translateZ(0);
  will-change: transform;
}

.hero-content {
  text-align: center;
  z-index: 1;
}

.hero-title {
  color: white;
  font-family: 'Raleway', sans-serif;
  font-size: 3.5rem;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.2;
}

/* Contact Section */
.contact-section {
  background: #262626;
  color: #9a8a78;
  padding: 4rem 0;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Contact Info */
.contact-info {
  /* Contact info styles are defined in individual contact-item classes */
}

.contact-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.contact-icon {
  width: 24px;
  height: 24px;
  margin-right: 1rem;
  flex-shrink: 0;
}

.contact-link {
  text-decoration: none;
  color: #9a8a78;
}

.contact-link:hover {
  color: #9a8a78;
  text-decoration: underline;
}


/* Navigation & CTA */
.nav-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2rem;
}

.call-cta-button {
  background: #9a8a78;
  color: #262626;
  border: 1px solid #9a8a78;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  font-family: inherit;
}

.call-cta-button:hover {
  background: #9a8a78;
  border-color: #9a8a78;
}


/* Responsive Design */
@media (max-width: 768px) {
  .header-content {
    padding: 0 1rem;
  }
  
  .business-name {
    font-size: 1.2rem;
  }
  
  .header-right {
    gap: 1rem;
  }
  
  .call-button {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  
  .header-buttons {
    gap: 0.5rem;
  }
  
  .lang a {
    padding: 0.4rem 0.6rem;
    font-size: 0.85rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
    padding: 0 1rem;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .contact-title {
    font-size: 2rem;
  }
  
  .nav-cta {
    align-items: center;
    text-align: center;
  }
  
  .navigation {
    flex-direction: row;
    justify-content: center;
  }
  
  /* Mobile-specific hero background fixes */
  .hero-background {
    background-attachment: scroll; /* Disable fixed attachment on mobile */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .hero {
    background: #262626 url('./assets/images/hero-background.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .contact-title {
    font-size: 1.8rem;
  }
  
  .contact-item {
    font-size: 1rem;
  }
}

/* Parallax effect */
@media (min-width: 769px) {
  .hero-background {
    transform: translateZ(0);
    will-change: transform;
  }
  
  .hero {
    transform: translateZ(0);
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
a:focus {
  outline: 2px solid #9a8a78;
  outline-offset: 2px;
}
