/* ---------------------------
   Base reset & variables
---------------------------- */
:root {
    --text: #000;
    --bg: #fef7ed; /* light beige */
    --rule: #000;
  }
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: 'Albert Sans', Tahoma, Helvetica, Arial, sans-serif; 
    font-size: 20px;
    line-height: 1.5;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
  }
  
/* ---------------------------
   Header
---------------------------- */

.site-header {
    padding: 1rem 2rem 2rem;   /* padding: top, left/right, bottom */
  }
  
  .site-header-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  /* Left: logo + site name */
  .site-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    position: relative;
    top: -0.25rem; /* adjust up */
  }
  
  .site-logo {
    width: 30px;
    height: auto;
  }
  
  .site-name {
    font-family: Tahoma, Helvetica, Arial, sans-serif; 
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }
  
  /* Right: navigation */
  .site-nav-list {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .site-nav a:not(.social-icon) {
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 1rem;
    color: #000;
    position: relative;        /* needed for pseudo-element */
    font-weight: 600;
    transition: color 0.2s ease;
  }

  /* Underline effect */
  .site-nav a:not(.social-icon)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;              /* adjust distance from text */
    width: 0%;
    height: 1.5px;               /* thickness of underline */
    background-color: #000;     /* underline color */
    transition: width 0.3s ease;
  }
  
  /* Hover state */
  .site-nav a:not(.social-icon):hover::after {
    width: 100%;               /* expand underline to full width */
  }
  
  /* Rule under header */
  .site-rule {
    margin: 1.5rem 0 0 0;                /* space above/below */
    border-top: 4px solid var(--rule);
    width: 100vw;                  /* full viewport width */
    position: relative;
    left: 50%;                     /* start at center */
    right: 50%;
    margin-left: -50vw;            /* offset by half viewport to align left edge */
    margin-right: -50vw;
  }  
  
  /* Mobile */
  @media (max-width: 700px) {
    .site-header-inner {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
    }
  
    .site-logo {
      width: 25px;
    }
  
    .site-name {
      font-size: 1.4rem;
    }
  }
  
  
  /* ---------------------------
     Page layout
  ---------------------------- */
  .page {
    max-width: 1000px; /* narrower = more editorial feel */
    padding: 3.5rem 4rem 9rem;
    margin: 0 auto;   /* note: this fixed horizontal bars not spanning page */
  }
  
  /* ---------------------------
     Typography
  ---------------------------- */
  h1,
  h2,
  h3 {
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
  }
  
  h1 {
    font-size: 3.25rem;
    margin: 0 0 2rem 0;
  }
  
  h2 {
    font-size: 1.6rem;
    margin: 1rem 0 1.25rem;
    font-family: 'Lato', Helvetica Bold, Arial, sans-serif;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  
  h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
  }
  
  p {
    max-width: 48em; /* controls line length for readability */
    margin: 0 0 1.5rem 0;
  }
  
  ul {
    padding-left: 1.2rem;
    margin: 0 0 2rem;
  }
  
  li {
    margin-bottom: 0.5rem;
  }

  .large-text {
    font-size: 1.4rem;
    line-height: 1.6;
  }

/* ---------------------------
   Full-width hero (no cropping)
---------------------------- */

.page-hero {
    position: relative;
    width: 100vw;
    margin: 0;
    margin-top: -33px;
    margin-bottom: 0px;     /*  fixed issue of bottom gap */
  }
  
  /* the image */
  .page-hero-image {
    display: block;
    width: 100%;        /* span full width */
    height: auto;       /* show full height */
  }
  
    /* Homepage hero overlay text */
body.home .page-hero-title {
    font-family: 'Lato', Verdana, Helvetica, sans-serif;
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    
    position: absolute;
    top: 2.5rem;
    left: 2.5rem;
    margin: 0;
    max-width: 400px;
    color: #fff;
    z-index: 1;
  }
  
  /* Inner page hero overlay text 
  body.inner-page .page-hero-title {
    font-family: 'Verdana', Helvetica Bold, Helvetica, sans-serif;
    font-size: 3rem;
    font-weight: 200;
    letter-spacing: 0.05em;
    text-transform: uppercase;

    position: absolute;
    bottom: 2.5rem;
    left: 2.5rem;
    margin: 0;
    max-width: 600px;
    color: #fff;
    z-index: 1;
  }
  */

  /* Container for bottom bar + text */
body.inner-page .page-hero-text-container {
    position: absolute;
    bottom: 0;          /* sticks at bottom of image */
    left: 0;
    width: 100%;
    display: flex;
    justify-content: flex-start; /* left align, change if needed */
    padding: 1rem 2.5rem; /* vertical + match left padding */
    background: rgba(0, 0, 0, 0.4); /* transparent black bar */
    box-sizing: border-box;
    z-index: 1;         /* stays above image but below other content */
  }
  
  /* Actual text inside the bar */
  body.inner-page .page-hero-text-container .page-hero-title {
    margin: 0;
    color: #fff;
    font-family: 'Lato', Helvetica, Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    text-transform: uppercase;
  }
  
  /* Responsive adjustments */
  @media (max-width: 700px) {
    .page-hero-text-container {
      padding: 1rem 1.5rem;
    }
    .page-hero-text-container .page-hero-title {
      font-size: 2rem;
    }
  }
  
  @media (max-width: 700px) {
    .page-hero-title {
      font-size: 2rem;
      top: 1.5rem;
      left: 1.5rem;
    }
  }  
  
  /* ---------------------------
     Footer
  ---------------------------- */
  .site-footer {
    border-top: 2px solid var(--rule);
    padding: 1.5rem 2rem;
    font-size: 0.9rem;
  }
  
  /* ---------------------------
     Responsive / mobile tweaks
  ---------------------------- */
  @media (max-width: 700px) {
    h1 {
      font-size: 2.4rem;
    }
  
    .header-inner {
      flex-direction: column;
      gap: 1rem;
      align-items: flex-start;
    }
  
    .site-nav {
      display: flex;
      flex-wrap: wrap;
    }
  
    .site-nav a {
      margin-left: 0;
      margin-right: 1rem;
      margin-bottom: 0.5rem;
    }
  
    .page {
      padding: 2rem 1.5rem 3rem;
    }
  }
  
/* ---------------------------
   Tickets button (outline)
---------------------------- */
.header-top {
    max-width: 1100px;
    margin: 0 auto 0.7rem; /* reduce space below button */
    display: flex;
    justify-content: flex-end; /* right-align on desktop */
  }
  
  .tickets-button {
    display: inline-block;
    padding: 0.4rem 1rem;           /* slightly smaller padding */
    background-color: transparent;   /* remove fill */
    color: #000;                     /* black text */
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid #000;          /* black outline */
    border-radius: 2px;
    transition: background-color 0.2s ease, color 0.2s ease;
  }
  
  .tickets-button:hover {
    background-color: #000;           /* black fill on hover */
    color: #fff;                      /* text turns white */
  }
  
  /* Mobile adjustments */
  @media (max-width: 700px) {
    .header-top {
      justify-content: flex-end;    /* left-align on small screens */
      margin-bottom: 0.5rem;          /* keep small spacing below */
    }
  
    .tickets-button {
      font-size: 0.85rem;
      padding: 0.3rem 0.8rem;
    }
  }
  
  /* ---------------------------
   Social icon in navigation
---------------------------- */

.nav-social {
    display: flex;
    align-items: center;
  }
  
  .instagram-icon {
    width: 22px;       
    height: auto;
    display: block;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav a:hover .instagram-icon {
    opacity: 0.6;
    transform: translateY(-1px);
  }

  /* ---------------------------
   Full-width black text box below hero on index
---------------------------- */
.full-width-text-box {
    width: 100%;              
    background-color: #000;   
    padding: 3rem 0;          /* vertical padding */
    display: flex;            /* use flex to center inner content */
    justify-content: center;  /* horizontally center the child */
    box-sizing: border-box;
  }
  
  .full-width-text-box .text-box-content {
    max-width: 1100px;        /* readable column width */
    color: #fff;              
    font-size: 1.5rem;
    line-height: 1.6;
    text-align: center;       /* center text inside column */
    padding: 0 2rem;          /* small padding on mobile */
    font-family: 'Tahoma', Helvetica, sans-serif;
  }
  
  /* ---------------------------
   Image at bottom of about page
---------------------------- */

  .about-bottom {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  
  .about-bottom-image {
    width: 80%;        /* image spans the width of the container */
    height: auto;       /* maintains original aspect ratio */
    display: block;     /* removes default inline spacing */
    max-width: 100%;    /* prevents overflow on large screens */
    margin: 0 auto;        /* centers the image horizontally */
    opacity: 0.8; 
  }

  /* ---------------------------
   Image at bottom of events page
---------------------------- */

.events-bottom {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  
  .events-bottom-image {
    width: 80%;        /* image spans the width of the container */
    height: auto;       /* maintains original aspect ratio */
    display: block;     /* removes default inline spacing */
    max-width: 100%;    /* prevents overflow on large screens */
    margin: 0 auto;        /* centers the image horizontally */
  }
  

/* ---------------------------
   Full-width stacked color blocks
---------------------------- */

.full-bleed {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
  }
  
  .full-bleed__inner {
    max-width: 1000px;        /* SAME as .page */
    margin: 0 auto;
    padding: 2rem 4rem;    /* SAME horizontal padding as .page */
    text-align: left;        /* THIS is critical */
  }
  
  .full-bleed p {
    max-width: 52rem;  /* optional but recommended */
  } 
  
  /* Background variants */
  .bg-green {
    background: #093900;
    color: #f7f1e9;
  }
  
  .bg-gray {
    background: #e2dddd;
    color: #000;
  }
  
/* ---------------------------
   Image in page
---------------------------- */

  .page img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: block;
    margin: 2rem auto;
  }

/* ---------------------------
   Don't make links blue; just outline
---------------------------- */
a,
a:visited,
a:hover,
a:active,
a:focus {
  color: inherit;            /* match surrounding text color */
  text-decoration: underline; /* always underlined */
  outline: none;             /* optional: remove focus outline */
  transition: color 0.2s ease;
}

/* Optional: subtle hover effect without changing color */
a:hover {
  text-decoration: underline; /* ensures underline stays on hover */
  color: inherit;             /* never changes color */
}

/* ---------------------------
   Button
---------------------------- */

/* Center button wrapper */
.button-center {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
  }
  
  /* Button styling */
  .cta-button {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border: 2px solid #000;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background-color 0.2s ease, color 0.2s ease;
  }
  
  /* Hover state */
  .cta-button:hover {
    background-color: #000;
    color: #fff;
  }
  