/* =========================================================
   CUSTOM LANDING PAGE STYLE (Altiman Landing Style)
   File: custom_landing.css
   Updated: Oct 6, 2025
   ========================================================= */

/* ===================== */
/* GLOBAL VARIABLES      */
/* ===================== */
:root {
  --alt-bg-main: #f9fafb;
  --alt-bg-accent: #ffffff;
  --alt-primary: #0077ff;
  --alt-secondary: #1c1e21;
  --alt-text-light: #f8f9fa;
  --alt-text-dark: #2c2c2c;
  --alt-banner-height: 80vh;
}


:root {
  --alt-primary: #e63946; /* Red accent */
  --alt-bg-main: #f1faee; /* Soft mint background */
  --alt-secondary: #1d3557; /* Deep navy footer */
}


/* Utility */
.alt-landing-container {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  background-color: var(--alt-bg-main);
  font-family: 'Poppins', sans-serif;
}

/* ===================== */
/* BANNER SECTION        */
/* ===================== */
.alt-landing-banner {
  position: relative;
  width: 100%;
  height: var(--alt-banner-height);
  overflow: hidden;
}

.alt-landing-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.8s ease-in-out;
}

.alt-landing-banner .alt-banner-controls {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
}

.alt-landing-banner button {
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  padding: 8px 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.alt-landing-banner button:hover {
  background: var(--alt-primary);
}

/* ===================== */
/* SECTION ONE           */
/* ===================== */
.alt-section-one {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 5%;
  background: var(--alt-bg-accent);
}

.alt-section-one.reverse {
  flex-direction: row-reverse;
}

.alt-section-one__text {
  width: 50%;
  color: var(--alt-text-dark);
}

.alt-section-one__text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--alt-primary);
}

.alt-section-one__text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.alt-section-one__text .alt-btn {
  background: var(--alt-primary);
  color: var(--alt-text-light);
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.alt-section-one__text .alt-btn:hover {
  background: #005ecc;
}

.alt-section-one__image {
  width: 45%;
  text-align: center;
}

.alt-section-one__image img {
  width: 100%;
  max-width: 480px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* ===================== */
/* PROMOTIONS / CARDS    */
/* ===================== */
.alt-promo-section {
  background: var(--alt-bg-main);
  padding: 80px 5%;
  text-align: center;
}

.alt-promo-section h2 {
  font-size: 2rem;
  color: var(--alt-primary);
  margin-bottom: 40px;
}

.alt-promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.alt-promo-card {
  background: var(--alt-bg-accent);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.alt-promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* ===================== */
/* FOOTER LANDING        */
/* ===================== */
.alt-landing-footer {
  background: var(--alt-secondary);
  color: var(--alt-text-light);
  padding: 40px 0;
  text-align: center;
  font-size: 0.95rem;
}

.alt-landing-footer a {
  color: var(--alt-primary);
  text-decoration: none;
}

/* ===================== */
/* RESPONSIVE DESIGN     */
/* ===================== */
@media (max-width: 992px) {
  .alt-section-one {
    flex-direction: column;
    text-align: center;
  }
  .alt-section-one__text,
  .alt-section-one__image {
    width: 100%;
  }
}


.lp-section__image {
    width: 100%;
    max-height: 400px;
    height: auto;
    object-fit: cover;
    border-radius: var(--lp-radius-lg);
    box-shadow: var(--lp-shadow-lg);
    transition: transform var(--lp-transition-base);
}
