/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Oxygen',
    'Ubuntu', Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  background-color: #F7FAFC;
  display: flex;
  flex-direction: column;
}

/* Navbar - StatybosPaslaugos tema (teal/mėlyna) */
.navbar {
  background-color: #ffffff;
  padding: 1rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  color: #0D9488;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.navbar-brand:hover {
  color: #0F766E;
}

/* Main content */
.main-content {
  flex: 1;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Content frame - tas pats stilius kaip motodalys, kitos spalvos */
.content-frame {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(13, 148, 136, 0.15), 0 2px 10px rgba(0,0,0,0.08);
  padding: 48px;
  border: 2px solid rgba(13, 148, 136, 0.2);
  position: relative;
  overflow: hidden;
}

.content-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #0D9488 0%, #0F766E 100%);
}

.domain-sale-title {
  font-size: 1.75rem;
  color: #1a1a1a;
  margin-bottom: 24px;
  font-weight: 600;
  text-align: center;
}

.domain-sale-price {
  font-size: 2rem;
  color: #0D9488;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.domain-sale-contacts {
  text-align: center;
  font-size: 1.1rem;
  color: #4A5568;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0D9488;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 18px;
  background: rgba(13, 148, 136, 0.08);
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}

.contact-link:hover {
  color: #0F766E;
  background: rgba(13, 148, 136, 0.15);
}

.icon-email {
  flex-shrink: 0;
  opacity: 0.9;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #0D9488 0%, #0F766E 100%);
  color: white;
  padding: 20px;
  margin-top: auto;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-text {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .main-content {
    padding: 24px 16px;
  }

  .content-frame {
    padding: 32px 24px;
  }

  .domain-sale-title {
    font-size: 1.4rem;
  }

  .domain-sale-price {
    font-size: 1.6rem;
  }

  .navbar-brand {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .content-frame {
    padding: 24px 16px;
  }

  .domain-sale-title {
    font-size: 1.25rem;
  }

  .domain-sale-price {
    font-size: 1.4rem;
  }

  .navbar-brand {
    font-size: 1.1rem;
  }
}
