body {
/*background: url("papyrus.jpg");
background-repeat:  repeat-x repeat-y;*/
background-color: #cdb583;
overflow-x: auto;
margin: 0;
padding: 0;
height: 100%;
}

.content {
color: #000066;
font-style: italic;
font-family: "Veranda";
font-size: 1.2em;
}


.logo {
width: 666px; /*510*/
height: 170px; /*130*/
margin-bottom: -20px;
}

.links {
background-color: #000000;
width: 800px;
margin-bottom: 10px;
}

.picbox {
float: right;
width: 420px;
height: 420px;
}

#showimage{
position:absolute;
visibility:hidden;
border: 1px solid gray;
}

#dragbar{
cursor: hand;
cursor: pointer;
background-color: #EFEFEF;
min-width: 100px;
}

#dragbar #closetext{
font-weight: bold;
margin-right: 1px;
}

.header img{
    margin-bottom: -30px;
}
.contact_info{
    display: flex;
    justify-content: center;
    gap: 40px;
    font-family: "Snell Roundhand", cursive;
    margin-top: 10px;
    margin-bottom: 20px;
  }
  .contact_info h2{
    margin: 0;
    font-size: 16px;
  }
  a[href^="tel:"] {
    color: black !important;
    text-decoration: none !important;
    cursor: default;
  }

.navbar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    background-color: black;
    border-radius: 12px;
    margin-right: 20px;
    margin-left: 20px;
  }
  
  .navbar a {
    text-decoration: none;
    font-family: "Avenir Next", "Avenir Next Bold", sans-serif;
    font-size: 18px;
    letter-spacing: -.25px;
    color: #cdb583;
    padding: 4px 10px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    transform: scaleX(0.8);
  }
  
  .navbar a:hover {
    text-decoration: underline;
    font-size: 19px;
  }
  .container{
    text-align: center;
    
  }

  .description {
    max-width: 700px;         
    margin: 0 20px 0 20px;
    text-align: left;
    font-family: "Avenir Next", sans-serif;
    font-size: 13px;
    line-height: 1.6;
    
  }
  .description p{
    font-style: italic;
  }
  .description h2{
    margin-bottom: -5px;
  }

  hr {
    border: none;            /* Remove default border */
    height: 2px;
    background-color: black;         
  }
  
  .photo-box {
    max-width: 400px;
    vertical-align: center;
  }
  
  .photo-box img {
    width: 100%;
    height: 90%;
    border-radius: 10px;
  }
 

  .home_row {
    box-sizing: border-box;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1500px;
    margin: 20px auto;
    gap: 0px; /* Remove unwanted spacing */
  }
  
  
  .home_image {
    flex: 1 1 20%;
    max-width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  
  .home_flips {
    flex: 1 1 60%;
    max-width: 60%;
    max-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  
  .home_description {
    flex: 1 1 20%;
    max-width: 20%;
    margin: auto 20px auto 0px;
  }
  
  
  .home_image img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 300px;
    border-radius: 10px;
    object-fit: contain;
    display: block;
  }
  
  
  .home_flips img {
    width: 100%;
    height: auto;
    max-height: 500px;
    border-radius: 10px;
    object-fit: cover;
    display: block;
  }
  
  
  .home_description {
    font-family: "Avenir Next", sans-serif;
    font-size: 14px;
    line-height: 1.6;
  }
  
  .home_description h2 {
    margin-bottom: 10px;
  }
  
  .homeTop{
    min-width: 1300px;
    max-width: 100%;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: visible;
}
@media (max-width: 1299px) {
    .logo {
        width: 1000px;       /* bump up width for larger size */
        height: auto;       /* keep proportions */
        margin-bottom: -20px;
    }
    .contact_info h2{
        font-size: 25px;
    }

    .navbar a {
        font-size: 21px;

    }

    .homeTop {
      min-width: auto;
      display: block;
    }
  
    .home_row {
      display: block;
      max-width: 100%;
      padding: 10px 0;
    }
  
    /* Keep home_flips full width */
    .home_flips {
      width: 100% !important;
      max-width: 100% !important;
      margin-bottom: 20px;
      flex: none !important;
    }
  
    /* Make home_image the same width as home_flips */
    .home_image {
      width: 100% !important;  /* same width as home_flips */
      max-width: 100% !important;
      margin-bottom:  20px; /* center horizontally and margin below */
      flex: none !important;
      
    }
    .home_image img {
        width: auto;  /* natural size */
        max-width: 100%; /* scale down if needed */
        height: auto;
        border-radius: 10px;
        object-fit: contain;
        display: block; /* remove inline gap */
      }
  
    /* home_description remains full width */
    .home_description {
        width: auto !important;         /* allow it to shrink */
        max-width: calc(100% - 50px);   /* account for 25px margin on each side */
        margin: 0 auto;                 /* center horizontally */
        padding: 0 25px;                /* enforce side spacing */
        flex: none !important;
        box-sizing: border-box;         /* make sure padding doesn’t push it out */
        text-align: center;
        font-size: 20px;
  }
  
  
}
  
  