/* Vispārīgie stili */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Hero sekcija */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                url('/resources/assets/images/nature-backgroundx.webp') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.content {
    max-width: 800px;
}

h1, h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

body {
  font-family: 'Poppins', sans-serif;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h2 {
    font-size: 4rem;
    margin-bottom: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 4px;
}

p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* Pogu konteiners un stili */
.button-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
  padding: 15px 40px;
  font-size: 1.1rem;
  background-color: #4a6c3f;
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
    background-color: #3a5532;
}

.secondary-button {
  padding: 15px 40px;
  font-size: 1.1rem;
  background-color: transparent;
  color: white;
  border: 2px solid white;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.secondary-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Footeris */
footer {
    background-color: #F4F1EB;
    padding: 50px 20px;
    color: #3a5532;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #3a5532;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #2d4226;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    font-size: 24px;
    color: #3a5532;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #2d4226;
}

/* Responsīvie stili */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 3rem;
    }
    
    p {
        font-size: 1rem;
    }

    .footer-content {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .button-container {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-button,
    .secondary-button {
        width: 100%;
    }
}
/* Valodu saites */
.language-switcher {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.language-switcher .lang-link {
    text-decoration: none;
    color: white;
    padding: 5px 8px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.language-switcher .lang-link:hover,
.language-switcher .lang-link.active {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}
