/* --- Contact Card Styles --- */
.dislclaimer{
  background: #fff;
  color: #7a0000;
  padding: 2em 2em 1.5em 2em;
  max-width: 420px;
  margin: 2em auto 0 auto;
  text-align: center;
  font-family: inherit;

}
.contact-card {
  background: #fff;
  color: #7a0000;
  padding: 2em 2em 1.5em 2em;
  max-width: 420px;
  margin: 2em auto 0 auto;
  text-align: center;
  font-family: inherit;
}
.contact-card h2 {
  margin-top: 0;
  margin-bottom: 1.2em;
  font-size: 2em;
  letter-spacing: 0.05em;
  color: #7a0000;
  text-shadow: 1px 1px 0 #FFD700, 0 0 6px #FFD70044;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 1em;
  background: #fff;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.contact-item:hover {
  border-color: #7a0000;
  box-shadow: 0 0 12px #7a000044;
  background: #fff;
}
.contact-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: block;
}
.contact-item a {
  color: #7a0000;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.1em;
  transition: color 0.2s;
  text-shadow: none;
}
.contact-item a:hover {
  color: #b30000;
}
body {
    margin: 0;
    padding: 0;
    background: white;
    font-family: Arial, sans-serif;
}

.contact-header{
  /* Lets make this bold and dark gray */
  font-weight: bold;
  color: #333333;
}

body .galleria-thumbnails .galleria-image { width:100px }

.galleria {
    width: 100%;
    max-width: 100%;
    height: 400px;  /* adjust for mobile */
    margin-top: 20px;
}

.galleria img {
    display: block;
    width: 100%;
    height: auto;
}

.main_window {
    flex: 1;          /* fills only remaining space */
}

.contents {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-bg {
    position: fixed;
    inset: 0;
    background: url('images/ozzie_art_logo.gif?v=1') no-repeat center;
    background-size: 300px 300px;
    z-index: 0;              /* BELOW overlay */
    pointer-events: none;   /* NEVER block clicks */
    background-position-y: 02%;
}

.menu{
    margin-top: 420px;
}

.menu-buttons {
  width: 100%;
  display: flex;
}

.menu-buttons-left{
  margin-left: 0px;
  float: left;
}

.menu-buttons-right{
  margin-left: 50px;
  float: left;
}

.menu-buttons-right button, 
.menu-buttons-left button {
  position: relative;
  margin-bottom: 20px;
  width: 180px;
  height: 60px; /* Set a fixed height for consistency */
  padding: 0;   /* Remove padding from the outer button */
  cursor: pointer;
  border-radius: 4px;
  border: none;
  background-color: #7a0000; /* This is your Red Frame */
  
  /* The Bulbs: Simple background dots on the red frame */
  background-image:
      radial-gradient(white 2px, transparent 2px),
      radial-gradient(#ffcc00 3px, transparent 5px);
  background-size: 12.1px 12.1px;
  background-position: center;
  
  box-shadow: 0 0 10px #ffcc00;
  transition: transform 0.1s ease;
  overflow: hidden; /* Keeps the inner box contained */
}

/* The White Center (The "Inner" Box) */
.menu-buttons-right button span, 
.menu-buttons-left button span {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  /* This creates your 8px red border space */
  inset: 11px; 
  background-color: white;
  color: #7a0000;
  font-weight: bold;
  font-size: 18px;
  text-transform: uppercase;
  pointer-events: none; /* Clicks go through to the button */
}

.menu-buttons-right button:hover, 
.menu-buttons-left button:hover {
  transform: scale(1.03);
}

/* REMOVE the ::before pseudo-element styles entirely as they are no longer needed */

.footer{
  margin-bottom: 20px;
    bottom: 10px;
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: #555;
    z-index: 3;
}

.column {
  float: left;
  height: 100%;
}

.left, .right {
  width: 10px;
  background-color: #7a0000; /* burgundy */
}

.checker_left {
  width: 10px;           /* width of each square */
  height: 100%;
  background-color: white; /* fallback */
  background-image:
    linear-gradient(white 50%, black 50%);
  background-size: 20px 20px; /* each square is 20x20px */
  background-repeat: repeat;
}

.checker_right {
  width: 10px;
  height: 100%;
  background-color: black; /* fallback */
  background-image:
    linear-gradient(black 50%, white 50%);
  background-size: 20px 20px;
  background-repeat: repeat;
}

.frame-overlay {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}


.frame_left{
    float: left;
    width: 40px;
    height: 100%;
}

.frame_right{
    float: right;
    width: 40px;
    height: 100%;
}

.springtrap_back {
    position: fixed;
    z-index: -3;
    float: left;
    left: 20px;
    width: 300px;
    height: 400px;
    pointer-events: auto;
    box-shadow: none;
    border: none;
}

.button-container {
  justify-content: center; 
  width: 100%; 
  display: flex;
  gap: 40px;
} 

.gallery-column {
  width: calc(100vw - 80px);
  max-width: 420px;
  margin: 0 auto;
}

.copyright{
  font-family: Arial, Helvetica, sans-serif;
  display: block;
  text-align: center;
  font-size: 14px;
  color: #555;
  margin-top: 10px;
}

@media (max-width: 600px) {
  .contact-card {
    padding: 1em 0.5em 1em 0.5em;
    max-width: 98vw;
  }
  .contact-item {
    flex-direction: column;
    gap: 0.5em;
  }
  .contact-item a {
    color: #7a0000;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.2s;
    text-shadow: none;
  }
  .button-container {
    justify-content: center; 
    width: 100%; 
    display: flex;
    gap: 1px;
  }

  .contents {
    background-size: 300px 300px;
    background-position: center 30%;
  }

  .menu {
      margin-top:185px;
      margin-left: auto;
      margin-right: auto;
  }

  .springtrap_back {
    position: fixed;
    z-index: -3;
    float: left;
    left: 20px;
    width: 150px;
    height: 250px;
    pointer-events: auto;
    box-shadow: none;
    border: none;
  }

  .logo-bg {
    /* Control vertical positioning independently */
    position: fixed;
    background-size: 200px 200px;
    background-position: right -15%;
    background-position-y: 01%;
  }

  .menu-buttons-right{
    margin-left: 20px;
    float: left;
  }

  .menu-buttons-right button, 
  .menu-buttons-left button {
    width: 116px;
    font-size: 08px;
    padding: 5px 10px;
    margin-bottom: 10px;
    background-size: 13.1px 12.5px;
    margin-left: 8px;
    margin-right: 8px;
  }

  .menu-buttons-right button span, .menu-buttons-left button span {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    inset: 10px;
    background-color: white;
    color: #7a0000;
    font-weight: none;
    font-size: 12px;
    text-transform: uppercase;
    pointer-events: none;
  }

  #contact {
    margin-top: 0px;
    text-align: center;
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    word-break: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .contact-card h2 {
    font-size: 1.5em;
    margin-bottom: 1em;
  }
   .galleria {
        width: 100%;
        height: 400px; /* adjust for mobile viewport */
    }

  .dislclaimer{
    max-width: 60vw;
  }
  
  .copyright{
    font-size: 10px;
  }
}


