@charset "utf-8";

/* ===============================
   GLOBAL STYLES
================================= */
body { 
  background-color: #000; 
  font-family: "chivo", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #fff;
}

h1, h2, h3, strong, figcaption {
  font-family: "kallisto", sans-serif;
  font-weight: 800;
  font-style: normal;
  text-align: center;
  color: #238c8c;
}

h1 { font-size: 2.5rem; margin-top: 30px; }
h2 { font-size: x-large; text-decoration: underline; }

p { font-size: 1.1rem; line-height: 1.6; }
p a, #blog-posts p a { color: #F2528D !important; }
p a:hover, #blog-posts p a:hover { color: #72F2CE !important; }

/* ===============================
   HEADER & NAVIGATION
================================= */
header {
  background-color: #000;
  background-size: cover;
  min-height: 200px;
}

.navbar {
  background-color: #000;
  font-family: "chivo", sans-serif;
  font-weight: 600;
  font-size: large;
  text-align: center;
}

a.nav-link { color: #A2F2DC; }
.nav-link:hover, .nav-link:focus { color: #F2528D !important; }

/* ===============================
   TOP BAR
================================= */
.top-bar {
  background-color: #238c8c;
  color: #fff;
  font-family: "chivo", sans-serif;
  font-size: 1rem;
}

.top-bar a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.top-bar a:hover {
  color: #E76594 !important;
  transform: scale(1.1);
}

.custom-topbar { padding: 0.6rem 0; font-size: 1rem; }
.custom-topbar .top-social i { font-size: 1.4rem; }

/* ===============================
   FOOTER
================================= */
footer {
  background-color: #202121;
  font-family: "kallisto", sans-serif;
  font-weight: 800;
  font-size: small;
  text-align: center;
  padding-top: 20px;
}
footer p {
    font-size: 0.7rem; /* makes all footer text smaller, including "All Rights Reserved" */
}
/* ===============================
   LAYOUT HELPERS
================================= */
.container-fluid { margin-top: 30px; padding-bottom: 20px; }
.container-fluid section { padding: 50px 0 30px; }

.row { display: flex; align-items: center; }
.col-md-4 { padding-right: 20px; }
.col-md-8 { padding-left: 20px; }

/* ===============================
   GALLERIES
================================= */
.gallery {
  text-align: center;
  margin-top: 30px;
  padding: 20px;
  border-radius: 10px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.gallery img,
.website-img,
.graphic-gallery img,
.photo-edit-gallery img {
  width: 275px;
  height: 373px;
  object-fit: cover;
  border-radius: 10px;
  border: 5px solid #333;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  margin: 10px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.gallery img { width: 350px; height: 475px; }

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 4px 4px 15px rgba(0,0,0,0.3);
}

/* Landscape images (responsive fix) */
.graphic-gallery img.landscape,
.photo-edit-gallery img.landscape {
  width: 100%;
  max-width: 373px;
  height: auto;
  object-fit: contain;  /* prevents cropping */
  background-color: #000;
}

/* ===============================
   LIGHTBOX
================================= */
.lightbox {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 1000;
}

.lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  max-width: 90%;
  max-height: 90%;
  overflow: auto;
}

#lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  margin-bottom: 10px;
}

#lightbox-text {
  max-width: 90%;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

/* ===============================
   BLOG
================================= */
.container-fluid #blog-posts h2 { margin-bottom: 20px; }
.container-fluid #blog-posts h3 { font-size: large; padding: 30px 0; }

/* ===============================
   SOCIAL ICONS
================================= */
.social-icon { display: inline-block; margin-right: 20px; }
.social-icon svg { fill: #A2F2DC; transition: fill 0.3s, transform 0.3s; }
.social-icon:hover svg { fill: #E76594; transform: scale(1.1); }

.social-icon,
.social-icons a i,
.top-social a i {
  transition: all 0.3s ease;
  color: #ffffff;
}

.social-icon:hover,
.social-icons a:hover i,
.top-social a:hover i {
  color: #E76594 !important;
  transform: scale(1.25);
  box-shadow: 2px 2px 6px rgba(0,0,0,0.2);
}

/* ===============================
   DROPDOWNS
================================= */
.dropdown-submenu { position: relative; }
.dropdown-submenu .dropdown-menu { display: none; margin: 0 0.1rem; }
.dropdown-submenu:hover > .dropdown-menu { display: block; top: 0; left: 100%; }
.dropdown-submenu > .dropdown-menu { top: 0; left: 100%; margin: 0 0.1rem; }
.d-flex.flex-column.flex-md-row.align-items-start.align-items-md-center.gap-2.gap-md-4.fs-6.text-white div .text-white.text-decoration-none {
    font-weight: bold;
}
.d-flex.justify-content-center.align-items-center.mb-2.gap-2 span a {
    color: #F2528D;
}



/* ===============================
   RESPONSIVE
================================= */
@media (max-width: 576px) {
  .graphic-gallery img.landscape,
  .photo-edit-gallery img.landscape {
    max-width: 100%;
  }
}

/* ===============================
   NEW LIGHTBOX
================================= */
.glightbox-clean .gdesc-inner,
.glightbox-clean .gslide-title {
  color: #fff !important;
}

.glightbox-clean .gslide-description {
  background: rgba(0,0,0,0.6);
  padding: 10px;
  border-radius: 6px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
