/* ========================== */
/* RESET & GLOBAL STYLES      */
/* ========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  padding-top: 80px; /* Sticky nav offset */
  font-family: 'Montserrat', sans-serif;
  background-color: #ffffff;
  color: #333333;
  line-height: 1.6;
}

/* ========================== */
/* STICKY NAV BAR             */
/* ========================== */
.navbar {
  position: fixed; 
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: #1B1464; /* Dark Blue */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 2em;
  border-bottom: 1px solid #222;
}

.navbar .logo img {
  max-height: 50px;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 1.5em;
}

.navbar a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.navbar a:hover,
.navbar a.active {
  color: #FD0084; /* Pink accent */
}

/* ========================== */
/* HERO & PARALLAX            */
/* ========================== */

/* Generic hero section (non-angled) */
.hero-section {
  text-align: center;
  padding: 3rem 1rem;
  background-color: #fafafa;
}

.hero-section h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #FD0084; 
}

.hero-section p {
  max-width: 800px;
  margin: 0 auto 1.5rem auto;
  color: #fff;
  line-height: 1.6;
}

/* HOME hero with parallax background */
.home-hero.parallax-hero {
  background: linear-gradient(
      rgba(253, 0, 132, 0.4),
      rgba(27, 20, 100, 0.5)
    ), 
    url("img/parallax-hero-bg.jpg") center/cover no-repeat;
  background-attachment: fixed;
  color: #fff;
}

.home-hero .hero-content h1 {
  color: #fff;
  text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.home-hero .hero-content p {
  color: #f7f7f7;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

/* Angled hero for immersive/brand pages */
.angled-hero {
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
  background: linear-gradient(
      rgba(253, 0, 132, 0.3),
      rgba(27, 20, 100, 0.3)
    ), 
    url("img/parallax-hero-bg.jpg") center/cover no-repeat;
  background-attachment: fixed;
  color: #fff;
}

.hero-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

/* Buttons used in hero/contact forms */
.hero-content button,
.contact-form button {
  background-color: #FD0084;
  color: #ffffff;
  border: none;
  padding: 0.75em 1.5em;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.4s; 
}

.hero-content button:hover,
.contact-form button:hover {
  background: linear-gradient(
    135deg, 
    #FD0084 0%, 
    #1B1464 100%
  );
}

/* ========================== */
/* SERVICES SECTION (HOME)    */
/* ========================== */
.services-section {
  padding: 2em 1em;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #FD0084;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5em;
  margin-top: 2em;
}

.service-card {
  background-color: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 1.5em;
  cursor: pointer;
  transition: box-shadow 0.3s, transform 0.2s;
}

.service-card:hover {
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.service-card h3 {
  margin-bottom: 0.5em;
  color: #FD0084;
}

.service-card p {
  color: #555555;
}

/* ========================== */
/* ABOUT SECTION (HOME)       */
/* ========================== */
.about-section {
  padding: 2em 1em;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #FD0084;
}

.about-section p {
  color: #555555;
  line-height: 1.7;
}

/* ========================== */
/* CONTACT SECTION            */
/* ========================== */
.contact-section {
  padding: 2em 1em;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #FD0084;
}

.contact-section p {
  color: #555555;
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1em;
  text-align: left;
}

.contact-form label {
  font-weight: 600;
  color: #333333;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75em;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 1rem;
  background-color: #fff;
  color: #333333;
  transition: box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #FD0084;
  box-shadow: 0 0 5px rgba(253, 0, 132, 0.3);
}

/* ========================== */
/* FOOTER                     */
/* ========================== */
.footer {
  background-color: #f5f5f5; 
  margin-top: 2em;
  border-top: 1px solid #ddd;
  padding: 2em 1em 1em;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2em;
  margin-bottom: 1em;
}

.footer-contact,
.footer-social {
  flex: 1 1 300px;
}

.footer-contact h4,
.footer-social h4 {
  color: #FD0084;
  margin-bottom: 0.5rem;
}

.footer-contact p {
  margin-bottom: 0.3rem;
  color: #555555;
}

.footer-social {
  text-align: left;
}

.social-links {
  display: flex;
  gap: 0.5em;
  align-items: center;
}

.social-links a img {
  height: 30px;
  width: 30px;
  object-fit: contain;
  transition: opacity 0.2s;
}

.social-links a img:hover {
  opacity: 0.8;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #ddd;
  padding-top: 1em;
}

.footer-bottom p {
  color: #777;
  margin: 0;
}

/* ========================== */
/* RESPONSIVE ADJUSTMENTS     */
/* ========================== */
@media (max-width: 600px) {
  body {
    padding-top: 70px; 
  }

  .hero-section h1 {
    font-size: 2rem;
  }
  .hero-section p {
    font-size: 1rem;
  }
  .footer-top {
    flex-direction: column;
  }
}

/* ========================== */
/* ANGLED CHAPTERS FOR 
   IMMERSIVE/BRAND PAGES 
========================== */
.angled-hero {
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
  background: linear-gradient(
      rgba(253, 0, 132, 0.3),
      rgba(27, 20, 100, 0.3)
    ), 
    url("img/parallax-hero-bg.jpg") center/cover no-repeat;
  background-attachment: fixed;
  color: #fff;
}

.angled-chapter {
  position: relative;
  clip-path: polygon(0 5%, 100% 0%, 100% 95%, 0 100%);
  padding: 4rem 1rem;
  transition: background 0.5s;
}

.alt-background {
  background-color: #f2f2f2;
}

.chapter-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  justify-content: center;
}

.chapter-text {
  flex: 1 1 400px;
  text-align: left;
}

.chapter-text h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #FD0084;
}

.chapter-text p {
  color: #555555;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.chapter-image {
  flex: 1 1 400px;
  position: relative;
}

.chapter-image img {
  width: 100%;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.chapter-image img:hover {
  transform: scale(1.02);
}

/* For negative margin overlap between text & image, if needed */
.left-bleed {
  margin-left: -60px;
}

/* brand gallery inside a chapter */
.brand-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75em;
}

.brand-gallery img {
  width: 140px;
  border-radius: 4px;
}

/* Disable angled edges at certain breakpoints if you want to remove potential clip-path issues */
@media (max-width: 768px) {
  .angled-hero {
    clip-path: none;
  }
  .angled-chapter {
    clip-path: none;
  }
}

@media (max-width: 600px) {
  .chapter-inner {
    flex-direction: column;
  }
  .left-bleed {
    margin-left: 0;
  }
}

/* ========================== */
/* CAROUSEL STYLES (OPTIONAL) */
/* For Photo Booth or 
   any other page using a slider
========================== */
.carousel-container {
  position: relative;
  width: 100%;
  max-width: 600px; 
  height:auto
  margin: 2em auto;
  overflow: hidden; 
  border: 1px solid #eee;
  border-radius: 6px;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
  position: relative;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  display: block;
  height: auto;    /* Keep aspect ratio */
  border-radius: 4px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.3em 0.6em;
  border-radius: 50%;
  outline: none;
  z-index: 10;
}

.carousel-btn:hover {
  background-color: rgba(0,0,0,0.7);
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

/* ========================== */
/* TITLE CARDS FOR BULLET     */
/* => .card-grid, .title-card 
   Used on brand pages 
========================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5em;
  margin-top: 1.5em;
}

.title-card {
  background-color: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 1.5em;
  transition: box-shadow 0.3s, transform 0.2s;
}

.title-card:hover {
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.title-card h3 {
  margin-bottom: 0.5em;
  color: #FD0084;
}

.title-card p {
  color: #555555;
}

/* ========================== */
/* PARALLAX CARDS (OPTIONAL)  */
/* If you want a parallax 
   behind title cards 
========================== */
.parallax-cards {
  background: linear-gradient(
      rgba(253, 0, 132, 0.3),
      rgba(27, 20, 100, 0.3)
    ),
    url("img/FBMosaic.gif") center/cover no-repeat;
  background-attachment: fixed;
}