﻿/* HERO */
.about-hero img {
  width: 100%;
  height: 80%;
  object-fit: cover;
}

/* LAYOUT */
.about-container {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  align-items: flex-start;
}

/* LEFT */
.about-main {
  flex: 2;
}

.about-main h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--primary);
}

.about-main h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent);
  margin-top: 8px;
}

.about-text {
  text-align: justify;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* RIGHT */
.about-aside {
  flex: 1;
  position: sticky;
  top: 100px;
}

.about-main, .about-aside {
  animation: fadeIn 0.8s ease;
}

/* VIDEO */
.about-video video {
  width: 100%;
  border-radius: 12px;
  margin-top: 70px; /* aligns with heading */
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* CONTACT */
.about-contact {
  margin-top: 20px;
}

.about-contact h3 {
  color: var(--primary);
}

.about-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.about-contact a {
  text-decoration: none;
  color: inherit;
}

.about-contact a:hover {
  text-decoration: underline;
}

/* ICON BASE */
.about-contact i {
  min-width: 20px;
  margin-top: 3px;
}

/* COLORS (premium look) */
.address i {
  color: var(--accent);
}

.email i {
  color: #0ea5e9;
}

.phone i {
  color: #16a34a;
}

/* COLORFUL CONTACT LINES */
.address {
  color: #444;
  border-left: 4px solid var(--accent);
  padding-left: 10px;
}

.email {
  color: #0ea5e9;
  font-weight: 600;
}

.phone {
  color: #16a34a;
  font-weight: 600;
}

/* ANTHEM */
.about-anthem {
  margin-top: 30px;
  background: #f9fafc;
  padding: 20px;
  border-radius: 12px;
  border-left: 5px solid var(--primary);
}

.about-anthem h3 {
  margin-bottom: 10px;
  color: var(--primary);
}

/* BUTTONS */
.about-buttons {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  text-align: center;
  padding: 14px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
}

.btn-secondary {
  border: 2px solid var(--primary);
  color: var(--primary);
  text-align: center;
  padding: 14px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
}



/* RESPONSIVE */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }

  .about-aside {
    position: static;
  }

  .about-video video {
    margin-top: 20px;
  }
}