/* ================================================
   Vanilla AI Suite – Common Style
   Author: SDK Technologies
   ================================================ */

body {
  background: linear-gradient(135deg, #f0f9f4, #ffffff);
  font-family: "Segoe UI", Arial, sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
}

/* --- Containers --- */
.container {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  margin-top: 60px;
  text-align: center;
  max-width: 900px;
}

/* --- Branding --- */
.logo {
  width: 90px;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}
.logo:hover {
  transform: rotate(-5deg) scale(1.05);
}

h1 {
  font-weight: 700;
  color: #2e7d32;
  margin-bottom: 10px;
}

.subtitle {
  color: #555;
  font-size: 1rem;
  margin-bottom: 25px;
}

/* --- Buttons --- */
.btn-main, .btn-upload {
  background-color: #43a047;
  color: white !important;
  border-radius: 30px;
  padding: 10px 25px;
  font-weight: 500;
  border: none;
  transition: all 0.3s ease;
}
.btn-main:hover, .btn-upload:hover {
  background-color: #2e7d32;
  box-shadow: 0 3px 8px rgba(67, 160, 71, 0.3);
}

/* --- Card and Results --- */
.result {
  background: #f9fff8;
  border-radius: 12px;
  margin-top: 30px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.1);
}

.card {
  border: none;
  border-radius: 15px;
  background: linear-gradient(180deg, #f1f8e9, #ffffff);
  transition: all 0.4s ease;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(46, 125, 50, 0.2);
}

/* --- Media Elements --- */
video, img.preview {
  border-radius: 10px;
  max-width: 100%;
  margin-top: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* --- Footer --- */
footer {
  margin-top: 40px;
  font-size: 0.9rem;
  color: #777;
}

/* --- Responsive --- */
@media (max-width: 767px) {
  .container {
    padding: 25px 20px;
  }
  h1 {
    font-size: 1.6rem;
  }
  .logo {
    width: 75px;
  }
}
