/* LSGP Website - Main Stylesheet */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-red: #c41e3a;
  --dark-gray: #4a4a4a;
  --light-gray: #f5f5f5;
  --text-dark: #333333;
  --text-light: #666666;
  --white: #ffffff;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

/* Header & Navigation */
header {
  background-color: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-dark);
}

.logo img {
  height: 50px;
  width: auto;
  margin-right: 0.5rem;
}

.logo-text {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--primary-red);
}

/* Navigation Menu */
nav ul {
  display: flex;
  list-style: none;
  gap: 1.2rem;
  flex-wrap: nowrap;
}

nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
  white-space: nowrap;
}

nav a:hover {
  color: var(--primary-red);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-gray) 100%);
  color: var(--white);
  padding: 4rem 2rem;
  text-align: center;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-button {
  display: inline-block;
  background-color: var(--white);
  color: var(--primary-red);
  padding: 0.75rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Services Section */
.services {
  padding: 4rem 2rem;
  background-color: var(--light-gray);
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-red);
  font-weight: 700;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

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

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--primary-red);
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.service-card a {
  color: var(--primary-red);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.service-card a:hover {
  color: var(--dark-gray);
}

/* About Section */
.about {
  padding: 4rem 2rem;
  background-color: var(--white);
}

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

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-red);
}

.about-content p {
  margin-bottom: 1rem;
  color: var(--text-light);
  line-height: 1.8;
}

.about-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Contact Section */
.contact {
  padding: 4rem 2rem;
  background-color: var(--dark-gray);
  color: var(--white);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.contact-item h3 {
  margin-bottom: 1rem;
  color: var(--primary-red);
}

.contact-item p {
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.contact-item a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--primary-red);
}

/* Footer */
footer {
  background-color: #2a2a2a;
  color: var(--white);
  text-align: center;
  padding: 2rem;
}

footer p {
  opacity: 0.8;
}

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

  nav ul {
    flex-direction: column;
    gap: 1rem;
    display: none;
    width: 100%;
  }

  nav ul.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

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

  .hero p {
    font-size: 1rem;
  }

  .about-container {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.5rem;
  }

  nav a {
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-gray);
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 1rem;
  }

  .hero {
    padding: 2rem 1rem;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .services {
    padding: 2rem 1rem;
  }

  .about {
    padding: 2rem 1rem;
  }

  .contact {
    padding: 2rem 1rem;
  }

  .cta-button {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
}


/* Language Selector */
.language-selector {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.language-selector button {
  padding: 0.5rem 1rem;
  border: 2px solid var(--primary-red);
  background-color: var(--white);
  color: var(--primary-red);
  cursor: pointer;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.language-selector button:hover {
  background-color: var(--primary-red);
  color: var(--white);
}

.language-selector button.active {
  background-color: var(--primary-red);
  color: var(--white);
}

@media (max-width: 768px) {
  .language-selector {
    gap: 0.3rem;
  }
  
  .language-selector button {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
}
