/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

/* Body */
body {
  background: #f5f7fa;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Hero Section */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #1a1a2e, #162447); 
  color: white;
}

.hero .logo {
  width: 400px;
  height: auto;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta-btn {
  background: #ff6b6b;
  color: white;
  padding: 12px 28px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: #ff4c4c;
}

/* Signup Section */
.signup {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}

.signup h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.signup form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.signup input[type="email"] {
  padding: 12px;
  width: 250px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.signup button {
  padding: 12px 20px;
  background: #4e54c8;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.signup button:hover {
  background: #3b40a0;
}

/* About & Contact Section */
.about-contact {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.about-contact h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #1a1a2e;
}

.about-contact p {
  font-size: 1.1rem;
  color: #333;
  max-width: 600px;
  margin: 0 auto 30px;
}

.about-contact .contact form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 400px;
  margin: 0 auto;
}

.about-contact .contact input,
.about-contact .contact textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
  font-family: inherit;
}

.about-contact .contact button {
  padding: 12px;
  background: #4e54c8;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.about-contact .contact button:hover {
  background: #3b40a0;
}

/* Responsive layout for larger screens */
@media (min-width: 768px) {
  .about-contact {
    flex-direction: row;
    justify-content: space-around;
    text-align: left;
  }

  .about-contact .about,
  .about-contact .contact {
    flex: 1;
    max-width: 500px;
  }
}

.contact {
  padding: 0 20px 40px 20px;
  text-align: center;
  background: none;
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #333;
}

.contact p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #555;
}

.social-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: bold;
  width: 220px;
  transition: transform 0.2s, opacity 0.2s;
}

.social-btn:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.social-icon {
  margin-right: 10px;
  font-size: 20px;
}

/* Brand colors */
.social-btn.instagram { background: #E1306C; }
.social-btn.facebook  { background: #3b5998; }
.social-btn.threads   { background: #000000; }

/* Services Section */
.services {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #1a1a2e;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr; /* default mobile stack */
  gap: 30px;
}

.service-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #1a1a2e;
}

.service-card p {
  font-size: 1rem;
  color: #555;
}

.service-icon {
  font-size: 3rem;
  color: #4e54c8; /* blue accent matching your buttons */
  margin-bottom: 15px;
}

/* Two-column layout for medium+ screens */
@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #f5f7fa;
  margin-top: auto;
  font-size: 0.9rem;
  color: #666;
}
