/* ===== GOOGLE FONTS ===== */
@import url("https://fonts.googleapis.com/css?family=Lato:300,400|Poppins&display=swap");

/* ===== CSS VARIABLES ===== */
:root {
  --primaryColor: #3fd0d4;
  --mainWhite: #fff;
  --offWhite: #f7f7f7;
  --mainBlack: #222;
  --mainGrey: #ececec;
  --darkGrey: #afafaf;
  --mainTransition: all 0.3s linear;
  --clr-secondary: hsla(182, 63%, 54%);
  --radius: 0.5rem;
  --mainSpacing: 0.25rem;
  --lightShadow: 2px 5px 3px 0px rgba(0, 0, 0, 0.25);
  --darkShadow: 4px 10px 5px 0px rgba(0, 0, 0, 0.5);
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== BODY ===== */
body {
  font-family: "Arial", sans-serif;
  color: var(--mainBlack);
  background: var(--offWhite);
  line-height: 1.4;
  font-size: 1rem;
}

/* ===== GLOBAL STYLES ===== */
img:not(.nav-logo) {
  width: 100%;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Verdana", sans-serif;
  margin-bottom: 1.25rem;
}

h1 { font-size: 3.3rem; }
h2 { font-size: 2.3rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.2rem; }

p {
  margin-bottom: 1.25rem;
  line-height: 2;
  font-weight: 300;
}

a {
  text-decoration: none;
}

/* ===== BUTTONS ===== */
.btn-white,
.btn-primary {
  text-transform: uppercase;
  letter-spacing: var(--mainSpacing);
  color: var(--mainWhite);
  border: 2px solid var(--mainWhite);
  padding: 0.9rem 1.6rem;
  display: inline-block;
  transition: var(--mainTransition);
  cursor: pointer;
}

.btn-white:hover {
  background: var(--mainWhite);
  color: var(--primaryColor);
}

.btn-primary {
  background: var(--primaryColor);
  color: var(--mainWhite);
  border: 2px solid var(--primaryColor);
}

.btn-primary:hover {
  background: transparent;
  color: var(--primaryColor);
}

/* ===== SECTION ===== */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  text-transform: uppercase;
  font-size: 2.6rem;
  letter-spacing: 0.5rem;
  margin-bottom: 2rem;
}

.section-center {
  width: 85vw;
  margin: 4rem auto 2rem auto;
  max-width: 1170px;
}

/* ===== NAVBAR ===== */
.navbar {
  width: 100%;
  background: var(--mainGrey);
  box-shadow: var(--lightShadow);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

.nav-container {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 2rem;
}

.nav-logo {
  width: auto;
  height: 55px;
}

/* Mobile nav links hidden by default */
.nav-links {
  display: none;
  flex-direction: column;
  max-height: 70vh;
  overflow-y: auto;
  transition: var(--mainTransition);
  background: var(--mainGrey);
  position: absolute;
  top: 100%;
  right: 0;
  width: 80%;
  border-left: 2px solid var(--primaryColor);
  padding: 1rem;
}

/* Show nav when toggled */
.nav-links.show {
  display: flex;
}

/* Individual nav links */
.nav-link {
  padding: 1rem 0;
  color: var(--mainBlack);
  font-weight: bold;
  letter-spacing: var(--mainSpacing);
  transition: var(--mainTransition);
}

.nav-link:hover {
  color: var(--primaryColor);
}

/* Hamburger / toggle button */
.nav-toggle {
  background: transparent;
  border: none;
  font-size: 1.8rem;
  color: var(--primaryColor);
  cursor: pointer;
  transition: var(--mainTransition);
  z-index: 1000;
}

.nav-toggle:hover {
  transform: scale(1.2);
}

/* Desktop styles */
@media screen and (min-width: 992px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex !important;
    flex-direction: row;
    max-height: none;
    position: static;
    width: auto;
    background: transparent;
    border: none;
    padding: 0;
  }

  .nav-link {
    padding: 0 1rem;
  }
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(47,50,51,0.7), rgba(0,0,0,0.7)),
              url("images/FCD22D84-AD9E-4C40-A970-075E7BC57E93-1.jpg") center/cover no-repeat;
background: url("images/FCD22D84-AD9E-4C40-A970-075E7BC57E93-1.jpg") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--mainWhite);
}

.hero-title {
  font-size: 3rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

/* ===== ABOUT ===== */
.about {
  background: var(--mainWhite);
}

.about-content {
  max-width: 1170px;
  margin: 0 auto;
  padding: 2rem;
}

/* ===== SERVICES ===== */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.service-card {
  flex: 0 0 300px;
  text-align: center;
  padding: 2rem 1rem;
  box-shadow: var(--lightShadow);
  transition: var(--mainTransition);
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primaryColor);
  margin-bottom: 1rem;
}

.service-title {
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* ===== EVENTS ===== */
.events-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.event-card {
  flex: 0 0 300px;
  box-shadow: var(--lightShadow);
  transition: var(--mainTransition);
}

.event-card:hover {
  transform: scale(1.05);
}

.event-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.event-info {
  padding: 1rem;
}

.event-title{
    font-size: 1.5rem;
}
/* ===== OUR ARTISTE ===== */
.artiste-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1170px;
  margin: 0 auto;
  padding: 2rem;
}


.artiste-container{
    height :max-content;
}

.artiste-card {
  display: flex;
  flex-direction: column; /* stacked on mobile */
  align-items: center;
  gap: 1rem;
}

.artiste-info {
  text-align: center;
}

.artiste-info h3 {
  margin-bottom: 0.5rem;
}

.artiste-text {
  margin-bottom: 1rem;
}

.artiste-social a {
  font-size: 1.5rem;
  color: var(--primaryColor);
  margin: 0 0.5rem;
  transition: var(--mainTransition);
}

.artiste-social a:hover {
  color: var(--mainBlack);
}

.artiste-image img {
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
  display: block;
  object-fit: cover;
}

/* GRID FOR DESKTOP */
@media screen and (min-width: 768px) {
  .artiste-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .artiste-text {
    flex: 1;
    padding-right: 1rem;
  }

  .artiste-image-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .artiste-image-social img {
    max-width: 250px;
  }
}

@media screen and (min-width: 992px) {
  .artiste-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--mainBlack);
  color: var(--mainWhite);
  text-align: center;
  padding: 2rem;
}

.footer-links,
.footer-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.footer-link {
  color: var(--mainWhite);
  margin: 0 0.5rem;
  letter-spacing: var(--mainSpacing);
  transition: var(--mainTransition);
}

.footer-link:hover {
  color: var(--primaryColor);
}

.footer-icon {
  font-size: 2rem;
  margin: 0 0.5rem;
  color: var(--mainWhite);
  transition: var(--mainTransition);
}

.footer-icon:hover {
  color: var(--primaryColor);
}

/* ===== SCROLL TO TOP ===== */
.scroll-to-top {
  font-size: 1.25rem;
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  background: var(--clr-secondary);
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--mainWhite);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: var(--mainTransition);
  z-index: 999;
}

.scroll-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

/* ===== MEDIA QUERIES ===== */
@media screen and (max-width: 767px) {
  .hero {
    min-height: 75vh;
    padding: 2rem;
  }
}
