/* Import a modern friendly font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

/* General styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #fff8e1;
    color: #333;
    transition: background-color 0.5s ease;
}

/* Language toggle */
.language-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

button {
    padding: 10px 20px;
    background-color: #ffb300;
    border: none;
    border-radius: 25px;
    color: white;
    font-size: 1em;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: background-color 0.3s, transform 0.2s;
}

button:hover {
    background-color: #ffa000;
    transform: scale(1.05);
}

/* Hero Section */
.hero-logo {
    width: 100%;
    max-width: 120px; /* Controls max size on all screens */
    height: auto;
    margin-bottom: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  @media (max-width: 600px) {
    .hero {
      padding: 40px 15px 30px;
    }
  
    .hero h1 {
      font-size: 1.8em;
    }
  
    .hero p {
      font-size: 1em;
    }
  }
  
.hero {
    background: linear-gradient(135deg, #f6bf1be4 0%, #ffd54f 100%);
    padding: 60px 20px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.hero h1 {
    margin-bottom: 15px;
    font-size: 3em;
    color: #5d4037;
}

.hero p {
    font-size: 1.3em;
    color: #6d4c41;
}

/* Info Section */
.info {
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.info h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #8d6e63;
}

/* Contact Section */
.contact {
    margin: 50px 0;
}

.contact-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ffa000;
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 25px;
    transition: background-color 0.3s, transform 0.2s;
}

.contact-button:hover {
    background-color: #fb8c00;
    transform: scale(1.05);
}

/* Hide/Show languages */
.text-en,
.text-es {
    display: none;
}

body.lang-en .text-en {
    display: block;
}

body.lang-es .text-es {
    display: block;
}

/* Footer (optional) */
footer {
    margin-top: 30px;
    padding: 20px;
    font-size: 0.9em;
    color: #aaa;
}

/* Contract section - Warm, inviting, consistent style */
.contract-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    font-family: 'Poppins', sans-serif;
    line-height: 1.8;
    background: #fff3e0; /* light warm peach background */
    border-radius: 20px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    color: #4e342e;
    transition: background-color 0.5s;
}

.contract-section {
    margin-bottom: 2rem;
    text-align: left;
}

.contract-section h2 {
    margin-top: 1.5rem;
    font-size: 1.5rem;
    color: #bf360c; /* strong, warm headline color */
    background-color: #ffe0b2; /* light orange */
    padding: 0.75rem 1rem;
    border-left: 6px solid #ff9800;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.contract-section ul {
    list-style: none;
    padding-left: 1rem;
    margin-top: 1rem;
}

.contract-section ul li {
    padding: 0.5rem 0;
    font-size: 1.05rem;
    color: #5d4037;
}

.contract-section ul li::before {
    content: '🌟';
    margin-right: 0.75rem;
    color: #f57c00; /* consistent warm highlight */
    font-size: 1.1rem;
}
