/* =====================
   GLOBAL STYLING
===================== */
* {
  box-sizing: border-box;
  margin: 0;
  font-family: Arial, sans-serif;
}

body {
  color: white;
}

/* =====================
   NAVIGATION CAROUSEL
===================== */
.carousel-nav {
  display: flex;
  justify-content: center;
  margin: 20px 0;
  position: relative; 
  z-index: 10;
}


.carousel-nav button {
  background: red;
  color: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  border: none;
  cursor: pointer;
  margin: 0 15px;
  font-size: 20px;
  transition: background 0.3s;
}

.carousel-nav button:hover {
  background: #33ff00;
}

/* =====================
   PAGE SECTIONS
===================== */
.page {
  display: none;
  text-align: center;
  padding: 40px;
}

.page.active {
  display: block;
}

/* =====================
   LOGOS & IMAGES
===================== */
.site-logo {
  max-width: 100%;
  margin: 20px auto;
  border-radius: 10px;
  display: block;
}

.site-logo3 {
  max-width: 800px;
  margin: 20px auto;
  display: block;
}

/* =====================
   TEXT BOXES
===================== */
.text-box {
  background: rgba(0,0,0,0.7);
  padding: 15px;
  border-radius: 10px;
  margin: 20px auto;
  max-width: 800px;
  text-align: left;
}

.text-box2 {
  background: rgba(255,0,0,0.7);
  padding: 15px;
  border-radius: 10px;
  margin: 20px auto;
  max-width: 800px;
  text-align: left;
}

.text-box3 {
  background: rgba(26,0,0,0.75);
  padding: 15px;
  border-radius: 10px;
  margin: 20px auto;
  max-width: 600px;
  text-align: center;
}

.text-box4 {
  background: rgba(255,255,255,0.575);
  padding: 30px;
  border-radius: 10px;
  margin: 20px auto;
  max-width: 500px;
  text-align: center;
  color: black;
}

/* =====================
   SLIDESHOW
===================== */
.slideshow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
}

.slide-btn {
  background: red;
  color: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  border: none;
  cursor: pointer;
  font-size: 20px;
  margin: 0 10px;
  transition: background 0.3s;
}

.slide-btn:hover {
  background: #33ff00;
}

.slide-container {
  text-align: center;
}

.slide-container img {
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  cursor: pointer;
}

.slide-info {
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 10px;
  margin: 15px auto 0;
  border-radius: 10px;
  max-width: 600px;
}

/* =====================
   PORTFOLIO VIDEOS
===================== */
.portfolio-video {
  width: 100%;
  max-width: 800px;
  height: 450px;
  display: block;
  margin: 20px auto;
  border-radius: 10px;
}

/* =====================
   CONTACT FORM
===================== */
.contact-form {
  max-width: 600px;
  margin: 20px auto;
  padding: 20px;
  background: rgba(0,0,0,0.7);
  border-radius: 10px;
  color: white;
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
}

.contact-form button {
    background: #ff0000;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: #cc0000;
}

/* =====================
   MODAL
===================== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  font-weight: bold;
  color: white;
  cursor: pointer;
}

/* =====================
   MEDIA QUERIES
===================== */
@media (max-width: 600px) {
  .slide-container img {
    max-width: 100%;
  }

  .portfolio-video {
    height: auto;
  }

  .text-box, .text-box2, .text-box3, .text-box4 {
    max-width: 95%;
    padding: 15px;
  }

  .carousel-nav button {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
}

-------------INSTAGRAM POST OPTIONS--------------

.instagram-feed {
  max-width: 1000px;
  margin: auto;
}

.instagram-media {
  width: 100% !important;
  max-width: 1000px !important;
}

/* Section centers content on the page */
.instagram-link-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

/* The container box */
.instagram-link-container {
  padding: 20px 40px;
  border: 2px solid #e1306c; /* Instagram pink */
  border-radius: 12px;
  background-color: #fff;
  text-align: center;
}

/* Link styling */
.instagram-link-container a {
  font-size: 1.2rem;
  font-weight: 600;
  color: #e1306c;
  text-decoration: none;
}

/* Hover effect */
.instagram-link-container a:hover {
  text-decoration: underline;
}

/* ===================== */
/* Global Footer Styling */
/* ===================== */

.site-footer {
  background-color: #111;
  color: #fff;
  padding: 40px 20px;
  margin-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.footer-section {
  flex: 1 1 200px;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 10px;
}

.footer-section p {
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section a {
  color: #e1306c; /* Instagram pink */
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}
