:root {
    --hero-images: 
    url('images/hero-1.jpg'), 
    url('images/hero-2.jpg'), 
    url('images/hero-3.jpg'), 
    url('images/hero-4.jpg'),
    url('images/hero-5.jpg');
}  



/* BODY */

body {
    font-family: Arial, sans-serif;
    background: #111;
    color: #fff;
    margin: 0;
    padding: 0;
}



/* HEADINGS */

h1 {
    font-size: 3rem;
    font-weight: bold;
    color: white;
}

h2 {
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

h3 {
    font-size: 1.6rem;
    font-weight: bold;
    text-transform: uppercase;
}

.sub-heading {
    padding-top: 4rem;
}


/* NAVBAR BASE */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    color: white;
    z-index: 1000;
}
  
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
  
.logo img {
    height: 50px;
    width: auto;
    padding: 8px 0 6px 0;
    margin-left: 10px;
}
  
/* NAV LINKS */
.nav-links {
    list-style: none;
    display: flex;
    gap: 3rem;
    margin: 0;
    padding: 2px;
}
  
.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 0.8rem;
    font-weight: 400;
    transition: color 0.3s ease;
}
  
.nav-links a:hover {
    color: #FC0404;
}
  
/* HAMBURGER BUTTON */
.hamburger {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}
  
/* To avoid hiding the top of your content behind the nav */
    /* body { */
        /* padding-top: 80px;  Adjust based on navbar height */
/* } */



/* HERO SECTION */

header {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
}
  
.hero-content {
    position: relative;
    z-index: 2;
}
  
header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  transition: background-image 1s ease-in-out;
}

  
header::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5); /* dark overlay */
    z-index: 1;
}

.header-form {
    max-width: 330px;
    margin: auto;
}

header h1 {
  font-size: 4rem;
  margin: 0.5rem 0;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

header button {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: bold;
  background-color: #FC0404;
  color: white;
  border: none;
  transition: background 0.3s;
}

header button:hover {
  background-color: darkred;
}
  
button {
    background-color: #FC0404;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    color: white;
    cursor: pointer;
}


/* SERVICES SECTION */

#services {
    padding: 4rem 2rem;
    text-align: center;
    background: #111;
    color: white;
}
  
.services-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}
  
.service-card {
    background: #222;
    padding: 2rem;
    border-radius: 4px;
    width: 300px;
    flex: 1 1 300px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.service-card img {
    width: 60px;
}

.service-card-p {
    font-size: 1.1rem;
    margin-top: -12px;
    line-height: 1.6rem;
}


/* ABOUT SECTION */

#about {
    padding: 4rem 2rem;
    text-align: center;
    background: #111;
    color: white;
}

.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin: auto;
    background-image: url('images/profile-pic-1-100px.png');
    border: 2px solid white;
}

.about-card-p {
    font-size: 1.1rem;
    line-height: 1.6rem;
}

.about-me-container {
    max-width: 900px;
    margin: auto;
    background: #222;
    padding: 2rem;
    border-radius: 4px;
}

.red-highlight {
    color: #FC0404;
}

.about-more-btn {
    background-color: #FC0404;
    color: white;
    padding: 0.6rem 1.3rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.about-more-btn:hover {
    background-color: darkred;
}


/* ABOUT/CERTIFICATES */

.certificates-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 2rem 0;
}

.certificate img {
    max-width: 320px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 2px;
}


/* LOCATION (MOVED TO END OF PAGE) */

.location-container {
    margin-top: 3rem;
}

.location {
    margin: auto;
    padding: 0.8rem;
    border-radius: 4px;
    max-width: 280px;
    border: 2px solid #FC0404;
    transition: color 0.3s ease;
}

.location:hover {
    border: 2px solid darkred;
}

.location p {
    margin-top: 6px;
    font-size: 1rem;
}

.location-container a {
    text-decoration: none;
    color: white;
}


/* TRANSFORMATIONS SECTION */

#transformations {
    padding: 4rem 2rem;
    background: #111;
    text-align: center;
    color: white;
    display: none; /* DELETE TO SHOW */
}
  
.slider-container {
    max-width: 960px;
    margin: 2rem auto;
    overflow: hidden;
}
  
.slider-track {
    display: flex;
    transition: transform 0.3s ease-in-out;
}
  
.slide {
    flex: 0 0 calc(100% / 3);
    padding: 0 10px;
    box-sizing: border-box;
}
  
.slide img {
    width: 100%;
    border-radius: 4px;
    display: block;
}
  
.slider-buttons {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}
  
.slider-btn {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 0.4rem 1rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
}
  
.slider-btn:hover {
    background: rgba(255, 255, 255, 0.2);
} 


/* GALLERY */

#gallery {
    padding: 4rem 2rem;
    text-align: center;
    background: #111;
    color: white;
}

.insta-gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 2rem 0;
}
  
.insta-gallery blockquote {
    border-radius: 12px;
    overflow: hidden;
    max-width: 320px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.gallery-p {
    font-size: 1.1rem;
}

.insta-text-container {
    display: flex;
}

.insta-text {
    margin: auto;
    display: flex;
}

.insta-text img {
    padding: 12px;
}

.insta-profile-container {
    display: flex;
    justify-content: center;
}

.insta-profile {
    margin: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: color 0.3s ease;
}

.insta-profile img {
    border: 2px solid #FC0404;
    border-radius: 4px;
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.insta-profile:hover img {
    border: 2px solid darkred;
}


/* CONTACT SECTION */

#contact {
    padding: 4rem 2rem;
    background: #111;
    color: white;
    text-align: center;
}
  
form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto 0;
}
  
input, textarea {
    padding: 1rem;
    border: none;
    font-size: 1rem;
    border-radius: 2px;
    font-family: Arial, sans-serif;
}
  
button[type="submit"] {
    background-color: #FC0404;
    color: white;
    font-weight: bold;
    padding: 1rem;
    border: none;
    border-radius: 2px;
}
  
button[type="submit"]:hover {
    background-color: darkred;
}


/* LOCATION */

#location {
    text-align: center;
}


/* FOOTER */

footer {
    background-color: #000;
    color: #fff;
    padding: 3rem 1rem 1rem 1rem;
    margin-top: 5rem;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

.logo-footer img {
    height: 110px;
    width: auto;
    margin-bottom: 0.8rem;
}
  
.socials {
    display: flex;
    gap: 1.5rem;
}
  
.social-icon {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease, filter 0.3s ease;
}
  
.social-icon:hover {
    transform: scale(1.2);
}

.copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 4rem;
}

.credits {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.765);
    margin-top: 1rem;
}

.credits a {
    color: white;
    transition: color 0.3s ease;
}

.credits a:hover {
    color: #FC0404;
}


/* MOBILE STYLES */
@media (max-width: 768px) {
    .hamburger {
      display: block;
    }
  
    .nav-links {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: rgba(0, 0, 0, 0.9);
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
      padding: 1rem 0;
      display: none; /* Hide by default */
    }
  
    .nav-links.show {
      display: flex;
    }

    header h1 {
        font-size: 2.8rem;
    }

    h1 {
        font-size: 2.3rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .sub-heading {
        padding: 2rem 1rem;
    }

    header button {
        font-size: 0.8rem;
    }

    .header-form {
        max-width: 270px;
    }

    input::placeholder {
        font-size: 0.8rem;
    }

    textarea::placeholder {
        font-size: 0.8rem;
    }

    button {
        font-size: 0.8rem;
    }

    #services {
        padding: 2rem 1rem;
    }

    .service-card-p {
        font-size: 0.9rem;
        margin-top: -12px;
        line-height: 1.4rem;
    }
    
    .location p {
        margin-top: 5px;
        font-size: 0.9rem;
    }

    #about {
        padding: 2rem 1rem;
    }

    .about-card-p {
        font-size: 0.9rem;
        line-height: 1.4rem;
    }

    #transformations {
        padding-top: 2rem;
    }

    .slide {
        flex: 0 0 100%;
    }

    #contact {
        padding: 2rem 1rem;
    }

    #gallery {
        padding: 2rem 1rem;
    }

    .gallery-p {
        font-size: 0.9rem;
    }
}