/* ========================================
   GLOBAL STYLES
========================================= */

/* Body */
body {
  margin: 0;
  padding: 0;
  background: #f5f7fa; /* Light neutral background */
  font-family: "Lato", sans-serif;
  color: #333;
}

/* Headings font & color */
h1,
h2,
h3,
h4,
h5 {
  font-family: "Montserrat", sans-serif;
  color: #1c2a39;
}

/* Links */
a {
  text-decoration: none;
  color: inherit; /* Inherit color unless specified */
}

/* Hover effect for basic links */
a:hover {
  text-decoration: underline;
}

/* ========================================
     NAVBAR
  ========================================= */
.navbar {
  background-color: #1c2a39; /* Dark navy */
}

.navbar-toggler {
  border-color: #fff;
}

.navbar-dark .navbar-nav .nav-link {
  color: #ffffff;
  transition: color 0.2s ease;
}
.navbar-dark .navbar-nav .nav-link:hover {
  color: #ff8f47; /* Accent color */
}
.navbar-dark .navbar-nav .nav-link.active {
  color: #ff8f47;
}

/* ========================================
     ABOUT INTRO
  ========================================= */
.about-intro {
  background-color: #ffffff; /* White background for contrast */
}
.about-intro h1 {
  font-size: 2rem;
  color: #1c2a39;
}
.about-intro .lead {
  font-size: 1.1rem;
  color: #666;
}
.desc-img {
  max-width: 350px;
  height: auto;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .container,
  .about-intro {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* ========================================
     ALBUM SECTION
     (Presenting, Sports, Traveling Cards)
  ========================================= */
.album .custom-card {
  background-color: #fff;
  border-left: 6px solid #ff8f47; /* Just a subtle design accent */
}
.album img {
  border-radius: 10px;
  max-height: 400px;
  object-fit: cover;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}

/* ========================================
     READING SECTION
  ========================================= */
.reading h2 {
  font-size: 1.8rem;
  color: #1c2a39;
}
.reading .lead {
  color: #666;
  font-size: 1rem;
}
.gradient-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafd 100%);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.gradient-card:hover {
  transform: scale(1.02);
}
.gradient-card img {
  max-height: 220px;
  object-fit: fill;
}

@media (max-width: 768px) {
  .gradient-card img {
    width: 70%;
    display: block;
    margin: 0 auto; /* This centers horizontally */
  }
}

/* ========================================
     FOOTER
  ========================================= */
.footer {
  background-color: #1c2a39;
}
.footer-link {
  color: #ff8f47;
  font-weight: 500;
}
.footer-link:hover {
  text-decoration: underline;
}
.text-muted {
  color: #ccc !important;
}

/* ==========================
     MEDIA QUERIES
  ========================== */
@media (max-width: 768px) {
  .about-intro h1 {
    font-size: 1.6rem;
  }
  .about-intro .lead {
    font-size: 1rem;
  }
  .album img {
    max-height: 250px;
  }
  .gradient-card img {
    max-height: 160px;
  }
  .reading h2 {
    font-size: 1.4rem;
  }
}
