/* Import modern fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Cormorant+Garamond:wght@400;600;700&display=swap');

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #fff;
  overflow-x: hidden;
}

/* Hero section */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  color: #fff;
  background-color: #1a1a1a;
}

/* Background animation */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(26, 26, 26, 0.7) 100%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/static/images/abstract-lines.svg') no-repeat center center/cover;
  opacity: 0.2;
  z-index: 0;
}

.hero * {
  position: relative;
  z-index: 2;
}

/* Company name styling */
.display-1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: 3px;
  position: relative;
  display: inline-block;
}

#display-span {
  font-weight: 400;
  background: linear-gradient(90deg, #c8c8c8, #f5f5f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

/* Subtle line decoration */
.display-1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

/* Tagline styling */
.hero-tagline {
  font-size: 1.2rem;
  font-weight: 300;
  margin: 2rem 0 3.5rem;
  letter-spacing: 4px;
  max-width: 600px;
  text-transform: uppercase;
  opacity: 0.9;
}

/* Call to action button */
.cta-button {
  display: inline-block;
  background-color: transparent;
  color: #fff;
  padding: 16px 48px;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.cta-button:hover {
  border-color: rgba(255, 255, 255, 0.6);
  letter-spacing: 3px;
}

.cta-button:hover::before {
  left: 0;
}

/* Floating elements for visual interest */
.hero::before, .hero::after {
  animation: float 20s ease-in-out infinite alternate;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(-10px) rotate(1deg);
  }
}

/* Footer styling */
.footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 60px 0 40px;
  position: relative;
  overflow: hidden;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.footer-logo span {
  background: linear-gradient(90deg, #c8c8c8, #f5f5f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-contact {
  margin-bottom: 30px;
}

.footer-contact p {
  margin-bottom: 10px;
  font-weight: 300;
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-nav h4, .footer-social h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: 1px;
}

.footer-nav ul, .footer-social ul {
  list-style: none;
}

.footer-nav li, .footer-social li {
  margin-bottom: 12px;
}

.footer-nav a, .footer-social a {
  color: #fff;
  text-decoration: none;
  font-weight: 300;
  font-size: 0.9rem;
  opacity: 0.7;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-nav a:hover, .footer-social a:hover {
  opacity: 1;
  transform: translateX(5px);
}

.footer-social a {
  display: flex;
  align-items: center;
}

.footer-social a i {
  margin-right: 10px;
  font-size: 1.2rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  opacity: 0.6;
}

/* Social media icons */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  margin-right: 15px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.8rem;
  }
  
  .hero-tagline {
    font-size: 1rem;
    letter-spacing: 3px;
  }
  
  .footer-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .display-1 {
    font-size: 2.8rem;
  }
  
  .hero-tagline {
    font-size: 0.9rem;
    letter-spacing: 2px;
  }
  
  .cta-button {
    padding: 14px 36px;
    font-size: 0.9rem;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
}