/* SITE HEADER */


/* ====================================
   HEADER
==================================== */

.site-header {
  background: #FFF;
  border-bottom: 1px solid #EEE;
  padding: 0 30px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 80px;

    position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(10px);
}

/* Logo */
#block-synnfulgirls-branding img {
  height: 50px;
  width: auto;
  display: block;
}

/* Main Navigation */
.site-header nav {
  margin-left: auto;
}

/* Menu List */
.site-header nav > ul {
  display: flex;
  align-items: center;
  gap: 40px;

  margin: 0;
  padding: 0;
  list-style: none;
}

/* Menu Links */
.site-header nav > ul a {
  color: #777;
  text-decoration: none;
  font-family: 'Inter', 'Montserrat', Helvetica, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;

  position: relative;
  transition: all 0.25s ease;
}

.site-header nav > ul a.is-active {
  color:#e91e8c;
}
/* Underline Animation */
.site-header nav > ul a::after {
  content: "";
  position: absolute;

  left: 0;
  bottom: -6px;

  width: 0;
  height: 2px;

  background: #fff;

  transition: width 0.25s ease;
}

.site-header nav > ul a:hover::after,
.site-header nav > ul a.is-active::after {
  width: 100%;
}

.site-header nav > ul a:hover {
  opacity: 0.85;
}

/* Hide menu title but keep accessibility */
#block-synnfulgirls-mainnavigation h2 {
  position: absolute;
  left: -9999px;
}

/* ====================================
   MOBILE
==================================== */

@media (max-width: 768px) {

  .site-header {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  #block-synnfulgirls-mainnavigation ul {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

}

/* Group both menus together on the right 
.site-header nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Remove Drupal menu titles visually (keep accessible) 
.site-header nav h2 {
  position: absolute;
  left: -9999px;
}

/* Menu links 
.site-header nav a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: #111;
}

.site-header nav a:hover {
  opacity: 0.7;
}
/* END HEADER */

/* PAGE TITLE */
#block-synnfulgirls-page-title {
  max-width: 1280px;
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
}

.site-footer {
  margin-top: 80px;
  padding: 40px 0;
  background: #000;
  color: #fff;
}

.article-card,
.gallery-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}


/* =====================================================
   FOOTER
===================================================== */

.site-footer {
  background: #fff;
  border-top: 1px solid #eee;
  margin-top: 80px;
  padding: 60px 40px;
  font-family: "Inter", "Montserrat", Helvetica, sans-serif;
}

/* =====================================================
   MAIN LAYOUT
===================================================== */

.site-footer .site-container > div {
  display: grid;
  grid-template-columns: 320px 1fr 1fr;
  grid-template-rows: auto auto;
  column-gap: 80px;
  row-gap: 18px;
  align-items: start;
}

/* =====================================================
   LEFT COLUMN
===================================================== */

/* Logo */

#block-synnfulgirls-sitebranding {
  grid-column: 1;
  grid-row: 1;
}

#block-synnfulgirls-sitebranding a {
  display: inline-block;
}

#block-synnfulgirls-sitebranding img {
  width: 220px;
  max-width: 100%;
  height: auto;
  display: block;
}

/* Description */

#block-synnfulgirls-description {
  grid-column: 1;
  grid-row: 2;

  max-width: 260px;

  color: #666;
  font-size: .95rem;
  line-height: 1.7;
}

/* =====================================================
   MENU COLUMNS
===================================================== */

#block-synnfulgirls-footer {
  grid-column: 2;
  grid-row: 1 / span 2;
}

#block-synnfulgirls-legalcontact {
  grid-column: 3;
  grid-row: 1 / span 2;
}

/* Hide Drupal menu titles */

.site-footer nav h2 {
  position: absolute;
  left: -9999px;
}

/* Lists */

.site-footer nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer nav li {
  margin-bottom: 12px;
}

/* Links */

.site-footer nav a {
  color: #555;
  text-decoration: none;
  font-size: .95rem;
  font-weight: 500;
  transition: color .2s ease;
}

.site-footer nav a:hover,
.site-footer nav a.is-active {
  color: #000;
  font-weight: 600;
}

/* =====================================================
   GENERATED HEADINGS
===================================================== */

#block-synnfulgirls-footer::before,
#block-synnfulgirls-legalcontact::before {

  display: block;

  margin-bottom: 22px;

  color: #111;

  font-size: .95rem;
  font-weight: 700;

  letter-spacing: .08em;
  text-transform: uppercase;
}

#block-synnfulgirls-footer::before {
  content: "Browse";
}

#block-synnfulgirls-legalcontact::before {
  content: "Legal";
}

/* =====================================================
   COPYRIGHT
===================================================== */

.site-footer::after {
  content: "© 2026 SynnfulGirls.com";

  display: block;

  margin-top: 60px;
  padding-top: 25px;

  border-top: 1px solid #eee;

  color: #888;

  font-size: .85rem;
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

  .site-footer {
    padding: 50px 30px;
  }

  .site-footer .site-container > div {
    grid-template-columns: 260px 1fr 1fr;
    column-gap: 50px;
  }

  #block-synnfulgirls-sitebranding img {
    width: 190px;
  }

}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width:768px){

  .site-footer{
    padding:45px 25px;
  }

  .site-footer .site-container > div{

    display:flex;
    flex-direction:column;

    gap:35px;

  }

  #block-synnfulgirls-sitebranding img{
    width:180px;
  }

  #block-synnfulgirls-description{

    max-width:none;

    font-size:.95rem;

    line-height:1.6;

  }

  #block-synnfulgirls-footer,
  #block-synnfulgirls-legalcontact{

    width:100%;

  }

  .site-footer::after{

    margin-top:40px;

  }

}