/* Base & Reset */
:root {
  --primary: #1a1a1a;
  --accent: #c5a059; /* Dorado elegante */
  --light: #f9f9f9;
  --text: #333;
  --white: #ffffff;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--light);
  color: var(--text);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Typography */
h1, h2, h3, .logo {
  font-family: 'Playfair Display', serif;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Header */
header {
  padding: 2rem;
  text-align: center;
}

.logo {
  font-size: 2.5rem;
  letter-spacing: 2px;
  color: var(--primary);
  text-transform: uppercase;
}

/* Main Layout */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Hero Section */
.hero-section {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-image {
  width: 300px;
  height: 400px;
  background-color: #ddd;
  background-image: url('inna_odeska.png');
  background-size: cover;
  background-position: top center; /* Focus on face */
  border-radius: 5px;
  box-shadow: 20px 20px 0px var(--accent);
}

.hero-text {
  max-width: 500px;
  text-align: left;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--primary);
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #666;
}

.status-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: white;
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Buttons */
.cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 4px; /* Sharper corners for elegance */
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}
.btn-whatsapp:hover {
    background-color: #1ebc57;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
}

.btn-linkedin {
    background-color: #0077b5;
    color: white;
}
.btn-linkedin:hover {
    background-color: #006097;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 119, 181, 0.2);
}

/* Services */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  width: 100%;
  margin-top: 2rem;
}

.service-card {
  background: white;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid #eee;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.service-card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.service-card h3 {
  margin-bottom: 1rem;
  color: var(--primary);
  font-size: 1.5rem;
}

/* Footer */
footer {
  padding: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: #888;
  border-top: 1px solid #eee;
  margin-top: auto;
}

/* Responsiveness */
@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  .hero-text {
    text-align: center;
  }
  
  .hero-image {
    width: 250px;
    height: 330px;
    box-shadow: 15px 15px 0px var(--accent);
  }

/* ... previous styles ... */

  .cta-group {
      justify-content: center;
  }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0; /* Final state handled by forwards */
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

/* Newsletter Form */
.newsletter-section {
    margin-top: 2rem;
    width: 100%;
    max-width: 400px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    outline: none;
    transition: border-color 0.3s;
}

.newsletter-input:focus {
    border-color: var(--accent);
}

.btn-submit {
    background-color: var(--primary);
    color: white;
    padding: 0 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #333;
}

.contact-email {
    margin-top: 2rem;
    font-size: 0.95rem;
    color: #666;
}

.contact-email a {
    color: var(--accent);
    font-weight: 600;
}

