﻿/* ==========================================================================
   Aggieland Website Design - styles.css
   Palette is :root only so the theme can be reskinned in ~10 lines.
   Reusable generic classes only (no page-specific CSS).
   ========================================================================== */

:root {
  /* Aggie heritage palette */
  --maroon:       #500000;
  --maroon-deep:  #380000;
  --black:  	  #000000;
  --coral:        #FF4D4D;
  --gray-light:   #DEDCDC;
  --cream:        #F6F6F6;
  --ink:          #211B17;
  --white:        #ffffff;
   --gray:        #55565A;
  --line:         #e4ddd0;

  /* roles */
  --bg-light:  var(--cream);
  --bg-white:  var(--white);
  --bg-dark:   var(--maroon);
  --bg-darker: var(--maroon-deep);
  --bg-black: var(--black);
  --text:      var(--ink);
  --text-dark-section: #EAEAEA;
  --accent:    var(--coral);
  --link:      #FF4D4D;

  --maxw: 1200px;
  --radius: 10px;
  --shadow: 0 6px 24px rgba(33,27,23,.10);

  --font-head: 'Poppins', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Source Sans 3', 'Segoe UI', Arial, sans-serif;
}

/* ---------- base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.55;            /* required body line-height */
  font-size: 18px;
}
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; color: var(--ink); font-weight: 700; text-align:center}
h1 { font-size: 2.4rem; margin: 0 0 .5em; }
h2 { font-size: 1.8rem; margin: 0 0 .6em; }
h3 { font-size: 1.25rem; margin: 0 0 .5em; }
p { margin: 0 0 1.1em; }
a { color: var(--link); }
strong { font-weight: 700; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* ---------- section rhythm (never two same-colored touching) ---------- */
.section {padding: 64px 0; clear:both;}
.section-white { background: var(--bg-white); color: var(--text); }
/*.section-light { background: var(--bg-light); color: var(--text); }*/
.section-light {background-image:url('images/paper2.jpg'); background-position:center; background-size:cover; color: var(--text);}
.section-dark  { background: var(--bg-dark);  color: var(--text-dark-section); }
.section-darker{ background: var(--bg-darker);color: var(--text-dark-section); }
.section-black{ background: var(--bg-black);color: var(--text-dark-section); }
.section-dark h1, .section-dark h2, .section-dark h3,
.section-darker h1, .section-darker h2, .section-darker h3,
.section-black h1, .section-black h2, .section-blackh3 { color: var(--white); }
.section-dark a, .section-darker a { color: var(--gray-light); }
.section-image { background: linear-gradient(rgba(0,0,0,.50), rgba(56,0,0,.50)), var(--ink); color: var(--text-dark-section); background-position:center; background-size:cover; }
.section-image h1, .section-image h2 { color: var(--white); }
.subpage-hero {color: var(--text-dark-section);}
.subpage-hero h1, .subpage-hero h2 { color: var(--white); text-shadow: 2px 2px 8px rgba(0,0,0,.75);}
.lead { font-size: 1.15rem; }
.eyebrow { font-family: var(--font-head); color: var(--coral); font-weight: 800; letter-spacing: .04em; text-transform: none; font-size: 1.75rem; margin-bottom: .2em; display:block; text-align:center }

/* ---------- buttons ---------- */
.cta-button {
  display: inline-block; background: var(--coral); color: var(--white);
  font-family: var(--font-head); font-weight: 600; text-decoration: none;
  padding: 14px 28px; border-radius: 6px; transition: background .15s, transform .15s;
  border: 2px solid var(--white);
  margin:10px;
}
.cta-button:hover { background: var(--gray); color:#fff; transform: translateY(-1px); }
.cta-button.secondary { background: transparent; }
/*.cta-button.secondary:hover { background: var(--gray); color:#fff; transform: translateY(-1px); }*/

.section-light .cta-button.secondary, .section-white .cta-button.secondary { color: var(--coral); border-color: var(--maroon); }
.cta-center { text-align: center; margin-top: 24px; }

/* ---------- breadcrumb ---------- */
.breadcrumb { font-size: .92rem; color: var(--gray); padding: 14px 0; }
.breadcrumb a { color: var(--link); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--gray); }

/* ---------- hero ---------- */
.hero {
  background-size: cover; background-position: center;
  color: var(--white); text-align: center; padding: 96px 0;
}
.hero-content {max-width: 1000px; margin: 0 auto; }
.hero h1 { color: var(--white); font-size: 2.5rem; text-align:center}
.hero p { color: #ffffff; font-size: 1.2rem; text-shadow: 2px 2px 8px rgba(0,0,0,.75);}
.hero .cta-button {margin: 8px 6px; }

/* ---------- cards & grids ---------- */
.card-grid-2, .card-grid-3, .card-grid-auto { display: grid; gap: 22px; margin-top: 10px; }
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-auto { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.card-light, .card-dark {
  border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.card-light { background: var(--white); border: 1px solid var(--line); color: var(--text); }
.card-dark  { background: var(--maroon-deep); color: var(--text-dark-section); }
.card-dark h3 { color: var(--white); }
.card-icon {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.card-icon:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-icon h3 { font-size: 1.3rem; line-height: 1.25; margin-bottom: 1rem; color: var(--ink); }
.card-icon p  { color: var(--gray); line-height: 1.4; margin: 0; }
.card-icon-circle {
    width: 62px;
    height: 62px;
    margin: 0 auto 1.3rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background:  var(--coral);
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
}

.card-icon-circle svg {
    width: 30px;
    height: 30px;
}

.card-light img, .card-dark img {
display:block;
margin:auto;
text-align:center;
	width:100%;
	max-width: 300px;
	height:300px;
	overflow:hidden;
	object-fit: cover;
	top: 0;
    left: 0;
    margin-bottom:20px;
}


/* ---------- stat strip ---------- */
.stat-strip { background:white; color: #000; }
.stat-strip .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 40px 22px; }
.stat-strip .stat { text-align: center; }
.stat-strip .stat .num { font-family: var(--font-head); font-size: 2.2rem; font-weight: 700; color: var(--coral); display: block; }
.stat-strip .stat .label { font-size: .98rem; color: #000; }

/* ---------- pull quote ---------- */
.pull-quote {
  border-left: 4px solid var(--coral); background: var(--cream);
  margin: 24px 0; padding: 20px 26px; border-radius: 0 8px 8px 0;
  font-family: var(--font-head); font-size: 1.3rem; font-style: italic; color: var(--maroon-deep);
}
.pull-quote cite { display: block; font-size: .95rem; font-style: normal; color: var(--gray); margin-top: 10px; }
.section-dark .pull-quote, .section-darker .pull-quote { background: rgba(255,255,255,.06); color: #EAEAEA; }
.section-dark .pull-quote cite{color:#fff; }
.section-image .pull-quote {background: rgba(255,255,255,.00); color:#fff; }

/* ---------- FAQ (native <details> accordion, same as BSID) ---------- */
.faq-section { max-width: 1200px; margin: 0 auto; }
.faq-item {
  background: var(--white); border: 1px solid var(--line); border-radius: 10px;
  margin-bottom: 1rem; overflow: hidden; transition: box-shadow .3s ease;
}
.faq-item:hover { box-shadow: 0 8px 20px rgba(0,0,0,.05); }
.faq-item summary {
  list-style: none; cursor: pointer; position: relative;
  padding: 1.3rem 4rem 1.3rem 1.4rem; font-family: var(--font-head);
  font-size: 1.08rem; font-weight: 700; color: var(--ink); transition: background .25s ease;
}
.faq-item summary:hover { background: var(--cream); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 1.4rem; top: 50%; transform: translateY(-50%);
  font-size: 1.8rem; line-height: 1; color: var(--maroon); font-weight: 400;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { padding: 0 1.4rem 1.3rem 1.4rem; margin: 0; line-height: 1.55; color: var(--text); }
/* FAQ master page: search box + category chips + anchors (same as BSID) */
.faq-inner { max-width: 950px; margin: 0 auto; padding: 0 22px; }
.faq-search-wrap { max-width: 700px; margin: 0 auto 1.5rem; }
.faq-search { width: 100%; padding: 14px 18px; font-size: 1.05rem; border: 1px solid var(--line); border-radius: 8px; box-sizing: border-box; font-family: var(--font-body); }
.faq-search:focus { outline: none; border-color: var(--maroon); box-shadow: 0 0 0 3px rgba(56,0,0,.15); }
.faq-chips { text-align: center; max-width: 1100px; margin: 0 auto; }
.faq-chip { display: inline-block; border: 1px solid var(--line); border-radius: 4px; padding: 7px 16px; margin: 4px; font-size: .95rem; color: var(--ink); text-decoration: none; transition: all .2s ease; }
.faq-chip:hover { border-color: var(--maroon); color: var(--maroon); }
.faq-category { scroll-margin-top: 110px; font-size: 1.6rem; color: var(--ink); margin: 2.5rem 0 1.2rem; padding-bottom: .5rem; border-bottom: 2px solid var(--coral); }
.faq-category:first-of-type { margin-top: 0; }
.faq-noresults { display: none; text-align: center; color: var(--gray); font-style: italic; padding: 2rem 0; }

/* ---------- two-column (contact) ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.embed-placeholder {
  border: 2px dashed var(--coral); border-radius: 8px; padding: 30px; text-align: center;
  color: var(--gray); background: var(--white); min-height: 320px;
}

/* ---------- header / nav ---------- */
.main-header { background: var(--maroon); position: sticky; top: 0; z-index: 50; }
.header-container { max-width: var(--maxw); margin: 0 auto; padding: 10px 22px;
  display: flex; align-items: center; justify-content: space-between; }
.logo-link img { height: 56px; width: auto; }
.logo-text { color: var(--white); font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; text-decoration: none; }
.desktop-nav .menu-list { list-style: none; display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; }
.desktop-nav .menu-list > li > a {
  color: #f3e9e9; text-decoration: none; font-family: var(--font-head); font-weight: 500;
  padding: 10px 12px; display: inline-block; border-radius: 5px; font-size: .98rem;
}
.desktop-nav .menu-list > li > a:hover { color: var(--coral); }
.desktop-nav .has-submenu { position: relative; }
.desktop-nav .submenu {
  list-style: none; margin: 0; padding: 8px 0; position: absolute; top: 100%; left: 0;
  background: var(--white); min-width: 230px; border-radius: 8px; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: .15s;
}
.desktop-nav .has-submenu:hover .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.desktop-nav .submenu a { display: block; padding: 9px 18px; color: var(--ink); text-decoration: none; font-size: .96rem; }
.desktop-nav .submenu a:hover { background: var(--cream); color: var(--maroon); }
.desktop-nav .arrow { font-size: .98rem; margin-left: 4px; }
.nav-cta { background: var(--coral); color: var(--white) !important; font-weight: 600 !important; padding: 9px 18px !important; border-radius: 6px; }
.nav-cta:hover { background: var(--gray); }

.menu-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.6rem; cursor: pointer; }
.side-menu { position: fixed; top: 0; right: -300px; width: 290px; height: 100%; background: var(--maroon-deep);
  z-index: 80; transition: right .25s; padding: 18px; overflow-y: auto; }
.side-menu.open { right: 0; }
.side-menu .menu-header { display: flex; justify-content: flex-end; }
.side-menu .close-btn { background: none; border: none; color: var(--white); font-size: 1.6rem; cursor: pointer; }
.side-menu a.menu { display: block; color: #f3e9e9; text-decoration: none; padding: 12px 8px; border-bottom: 1px solid rgba(255,255,255,.08); font-family: var(--font-head); }
.side-menu a.menu:hover { color: var(--coral); }
.menu-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 70; opacity: 0; visibility: hidden; transition: .25s; }
.menu-overlay.open { opacity: 1; visibility: visible; }

/* ---------- footer ---------- */
.main-footer {background: linear-gradient(rgba(0,0,0,.78), rgba(56,0,0,.66)), var(--maroon-deep);; color: #EAEAEA; padding: 50px 0 18px; }
.footer-container { max-width:1400px; margin: 0 auto; padding: 0 22px;
  display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 30px; }
.main-footer h4 { color: var(--coral); font-size: 1.05rem; margin: 0 0 14px; }
.main-footer a { color: #e9dede; text-decoration: none; }
.main-footer a:hover { color: var(--coral); }
.footer-menu { list-style: none; margin: 0; padding: 0; }
.footer-menu li { margin-bottom: 8px; }
.footer-col .contact-link { display: block; margin-bottom: 6px; }
.client-tools { margin-top: 16px; font-size: .9rem; }
.footer-bottom { max-width: 1400px; margin: 30px auto 0; padding: 16px 22px 0; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; font-size: .85rem; color: #EAEAEA; }

/* ---------- portfolio / reviews grids ---------- */
.tile-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.tile { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.tile .tile-body { padding: 16px 18px; }
.tile .cat { font-size: .82rem; color: var(--coral); font-weight: 600; }

/* ==========================================================================
   DB-driven sections (BSID main.asp function output), themed to AWD
   ========================================================================== */

/* ---- Testimonials (DisplayTestimonials) ---- */
.clearfix::after { content: ""; display: table; clear: both; }
.row.testimonials {
  display: flex; flex-wrap: wrap; gap: 22px; align-items: center;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 24px; margin-bottom: 4px;
}
.row.testimonials .col-3-4 { flex: 1 1 64%; min-width: 280px; }
.row.testimonials .col-1-4 { flex: 1 1 26%; min-width: 180px; text-align: center; }
.row.testimonials .col-12 { flex: 1 1 100%; }
.testimonial-stars { color: var(--coral); font-size: 2rem; letter-spacing: 3px; display: block; margin-bottom: .6rem; }
.testimonial-quote { margin: 0 0 .6rem; border: 0; padding: 0; }
.testimonial-quote p { font-style: italic; font-size: 1.08rem; margin: 0; }
.testimonial-attribution { color: var(--maroon); margin: 0; }
.testimonialImg { border-radius: 8px; border: 1px solid var(--line); max-width: 100%; height: auto; }
.section-light hr, .section-white hr { border: 0; border-top: 1px solid var(--line); margin: 22px 0; }

/* ---- Portfolio (DisplayPortfolio) ---- */
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.portfolio-item { margin: 0; background: var(--gray-light); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.portfolio-item img {width: 100% !important;
    height: 240px !important;
    object-fit: cover !important;
    object-position: top center;
    display: block;
    border-radius: 8px 8px 0 0;
    flex-shrink: 0;
    margin-bottom:20px
}
.portfolio-caption { padding: 14px 18px; display: flex; flex-direction: column; gap: 2px; }
.portfolio-name { font-family: var(--font-head); font-weight: 600; color: var(--ink);}
.portfolio-type { font-size: .82rem; color: var(--gray); font-weight: 600; }
.portfolio-link { margin-top: 6px; color: var(--link); text-decoration: none; font-weight: 600; }
.portfolio-link:hover { text-decoration: underline; }

/* ---- Blog post styles moved to /css/blog.css (same file layout as BSID) ---- */

/* ---- Back to top ---- */
.back-to-top {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  width: 46px; height: 46px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--coral); color: var(--white); font-size: 1.3rem; line-height: 1;
  box-shadow: var(--shadow); opacity: 0; visibility: hidden; transition: opacity .2s, visibility .2s, background .15s;
}
.back-to-top:hover { background: var(--maroon-deep); }
.back-to-top.show { opacity: 1; visibility: visible; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .card-grid-2, .card-grid-3 { grid-template-columns: 1fr; }
  .stat-strip .container { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; }
  .row.testimonials { flex-direction: column; align-items: stretch; }
  h1 { font-size: 2rem; } .hero h1 { font-size: 2.1rem; }
}

/* ==========================================================================
   Home "recent work" scroller + a little spunk (added 2026-07-01)
   All additive - does not change existing rules.
   ========================================================================== */

/* Home portfolio carousel - SAME engine/structure as BSID, AWD colors */
.portfolio-section { text-align: center; padding: 48px 20px; background-image:url('images/blackslate.jpg'); background-position:center top;}
.portfolio-section h2 { font-weight: 700; margin-bottom: 12px; color: #fff; }
.portfolio-section p { color: #f1e7e7; margin-bottom: 6px; }
.custom-carousel { position: relative; max-width: 1500px; margin: 30px auto; display: flex; align-items: center; gap: 15px; }
.carousel-container { overflow: hidden; flex: 1; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,.1); }
.carousel-track { display: flex; transition: transform .6s cubic-bezier(0.25, 0.1, 0.25, 1); }
.carousel-cell { flex: 0 0 100%; margin-right: 20px; min-width: 0; padding: 0 5px; box-sizing: border-box; }
.carousel-cell img { width: 100%; height: 300px; object-fit: cover; object-position: top center; display: block; border-radius: 6px; box-shadow: 0 4px 12px rgba(0,0,0,.15); transition: transform .3s ease; }
.carousel-cell:hover img { transform: scale(1.03); }
.carousel-btn { background: rgba(255,255,255,.10); color: #fff; border: none; width: 50px; height: 50px; border-radius: 50%; font-size: 22px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 10; flex-shrink: 0; transition: all .3s ease; }
.carousel-btn:hover { background: var(--maroon); transform: scale(1.1); }
@media (min-width: 993px) { .carousel-cell { flex: 0 0 calc(33.333% - 20px); } }
@media (min-width: 641px) and (max-width: 992px) { .carousel-cell { flex: 0 0 calc(50% - 15px); } }
@media (max-width: 640px) { .carousel-cell { flex: 0 0 100%; margin-right: 0; padding: 0 2px; } }

/* Spunk: subtle lift on interactive cards */
.card-light, .portfolio-item, .tile {
  transition: transform .18s ease, box-shadow .18s ease;
}
.card-light:hover, .portfolio-item:hover, .tile:hover {
  transform: translateY(-5px); box-shadow: 0 14px 34px rgba(33, 27, 23, .16);
}

/* Spunk: depth on primary buttons */
.cta-button { box-shadow: 0 4px 14px rgba(80, 0, 0, .16); }
.cta-button.secondary { box-shadow: none; }

/* Spunk: coral accent line at the top of the stat strip */
.stat-strip { border-top: 3px solid var(--coral); }

/* ---- Hero parallax (same as BSID: .hero-bg layer moved by js/parallax.js) ---- */
.hero,
.subpage-hero {
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--maroon-deep); /* fallback while the hero photo loads (no gray flash) */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to right,
        rgba(0,0,0,.80) 0%,
        rgba(0,0,0,.60) 60%,
        rgba(56,0,0,.40) 100%
    );
}

.hero .hero-content, .subpage-hero .container { position: relative; z-index: 3; }

.hero {
  background-image: linear-gradient(rgba(0,0,0,.72), rgba(56,0,0,.72)), url('/images/penpaper.jpg');
  background-size: cover; background-position: center;
}

.subpage-hero {
    display: flex;
    align-items: center;
    min-height: 500px;
}

.subpage-hero .container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width:1000px;
}

.subpage-hero h1,
.subpage-hero p {
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0,0,0,.75);
    text-align:center;
}

.subpage-hero .hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,.60) 0%,
        rgba(0,0,0,.40) 60%,
        rgba(56,0,0,.50) 100%
    );
}


.section-image {
    position: relative;
    overflow: hidden;
    padding: 60px 20px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: #fff;
}

.section-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,.70) 0%,
        rgba(0,0,0,.50) 60%,
        rgba(56,0,0,.70) 100%
    );
    z-index: 1;
}

.section-image .section-inner {
    position: relative;
    z-index: 2;
}

.section-image h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-shadow:
        0 2px 10px rgba(0,0,0,0.65),
        0 0 25px rgba(0,0,0,0.4);
}

.section-image p {
    max-width: 850px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.25;
    color: #fff;
    text-shadow:
        0 2px 8px rgba(0,0,0,0.7),
        0 0 20px rgba(0,0,0,0.35);
}

.section-image blockquote {
    max-width: 1000px;
    margin: 30px auto;
    font-size: 1.15rem;
    line-height: 1.25;
    color: #fff;
    text-shadow:
        0 2px 8px rgba(0,0,0,0.7),
        0 0 20px rgba(0,0,0,0.35);
}

.section-image blockquote cite{
    color: #fff;
    text-shadow:
        0 2px 8px rgba(0,0,0,0.7),
        0 0 20px rgba(0,0,0,0.35);	
}

@media (max-width: 768px) {
    .section-image {
        padding: 50px 20px;
    }
}

.img {
	padding:5px;
box-shadow: 3px 10px 17px 0px rgba(0,0,0,0.75);
-webkit-box-shadow: 3px 10px 17px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 3px 10px 17px 0px rgba(0,0,0,0.75);
margin-bottom: 20px;
}

.imgRight {
width: auto\9;
margin:auto;
margin-bottom: 20px;
}

.imgLeft {
width: auto\9;
margin:auto;
margin-bottom: 20px;
}

@media only screen and (min-width: 600px) {

.imgRight {
width: auto\9;
max-width:50%; 
float: right; 
margin:0px 0px 20px 20px;
}

.imgLeft {
width: auto\9;
max-width:50%;
float: left;
margin:0px 20px 20px 0px;
}
}


/* ==========================================================================
   10. CYCLE ANIMATIONS (rotating list items)
   Used by What We Believe (About) and What Counts as Update (Hosting).
   ========================================================================== */

.cycle-slider {
    position: relative;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.cycle-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    position: relative;
}

.cycle-list li {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.25rem, 1.8vw, 1.75rem);
    line-height: 1.25;
    font-weight: 500;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    transition:
        opacity 0.9s ease,
        transform 0.9s ease;
    text-shadow:
        0 2px 8px rgba(0,0,0,0.75),
        0 0 20px rgba(0,0,0,0.35);
}

.cycle-list li a {
	display: block;
    width: 100%;
    text-decoration:none;
}    

.cycle-list li.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.cycle-list li {
    pointer-events: none;
}

.cycle-list li.active {
    pointer-events: auto;
}

@media (max-width: 768px) {
    .cycle-slider {
        min-height: 200px;
    }
    .cycle-list li {
        font-size: 1.5rem;
    }
}

