﻿/* Base styles for the cover */
.splashbody {
  background-color: #007bff; /* Solid blue background */
  color: white;
  margin: 0;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

.resizable-logo {
  width:200px; /* Adjust size as needed */
  height: auto;
}

.welcome-content {
  margin-top: 20px;
}

.welcome-message {
  font-size: 24px;
}

.statusbar-overlay,
.panel-overlay,
.panel-left,
.view-main,
.pages,
.page,
.page-content {
  background: transparent;
}


/* Styles for the link button */
.link-button {
    border: 2px solid #fff; /* White outline */
    color: #fff; /* White text */
    display: inline-block;
    padding: 15px 30px; /* Adjust padding as needed */
    text-align: center;
    text-decoration: none;
    font-size: 18px; /* Adjust font size as needed */
    width: auto; /* Make the width auto to adjust to the content */
    min-height: 50px; /* Set a minimum height for the button */
}

.link-button.outline {
    background-color: transparent;
    color: #fff;
}

/* Framework7 Icons */
@font-face {
    font-family: 'Framework7 Icons';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/Framework7Icons-Regular.woff2') format('woff2'),
         url('../fonts/Framework7Icons-Regular.woff') format('woff'),
         url('../fonts/Framework7Icons-Regular.ttf') format('truetype');
}

.f7-icons,
.framework7-icons {
    font-family: 'Framework7 Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 28px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: 'liga';
    -moz-font-feature-settings: 'liga=1';
    -moz-font-feature-settings: 'liga';
    font-feature-settings: 'liga';
    text-align: center;
}

/* Additional styles for the bottom toolbar icons */
@media (min-width: 768px) {
    .demo-expandable-cards,
    .videogallery-expandable-cards {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around; /* Center items with space around */
    }

    .demo-expandable-cards .card,
    .videogallery-expandable-cards .card {
        flex-grow: 1;
        margin: 10px;
        min-width: 250px; /* Minimum width for each card */
        min-height: 300px; /* Adjust the minimum height for the cards */
    }
}

@media (max-width: 767px) {
    .demo-expandable-cards .card,
    .videogallery-expandable-cards .card {
        width: calc(100% - 20px); /* Full width with margins */
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .demo-expandable-cards .card,
    .videogallery-expandable-cards .card {
        width: calc((100% - 40px) / 2); /* Two columns */
    }

    .demo-expandable-cards .card:nth-child(2n+1),
    .videogallery-expandable-cards .card:nth-child(2n+1) {
        margin-left: 0;
    }
}

@media (min-width: 1024px) {
    .demo-expandable-cards .card,
    .videogallery-expandable-cards .card {
        width: calc((100% - 60px) / 4); /* Four columns */
    }

    .demo-expandable-cards .card:nth-child(4n+1),
    .videogallery-expandable-cards .card:nth-child(4n+1) {
        margin-left: 0;
    }
}

/* Styles for the panel */
.panel.panel-left .content-block {
    position: relative;
}



.panel-content {
    height: 100%; /* Ensure the content block takes full height */
    overflow-y: auto; /* Enable vertical scrolling */
  }

.toolbar-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Vertically center the content */
}

.tabbar-icon i {
    margin-bottom: 1px; /* Adjust the spacing between icon and text */
}

  /*  */
  
  .features-list {
    list-style-type: disc;
    padding-left: 20px;
  }
  
  .features-list li {
    margin-bottom: 10px;
  }
  
  .block {
    padding: 16px;
    background: #f0f0f5;
    border-radius: 8px;
  }
  
  .navbar-inner .title {
    font-size: 18px;
    font-weight: bold;
  }
  
  .navbar-inner .left a {
    display: flex;
    align-items: center;
  }
  
  .navbar-inner .left .icon {
    font-size: 24px;
  }
  /*index.htm*/
  .hero-section {
    position: relative;
    height: 100vh;
    background-image: url('/img/woodshutter/woodshutter3.jpg');
    background-size: cover; /* Cover the whole container */
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
  }

  .hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for better readability */
    z-index: 1;
  }

  .hero-section .hero-content {
    position: relative;
    z-index: 2;
    max-width: 80%;
    padding: 20px;
    color: white;;
  }

  .hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }

  .hero-section p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .hero-section .button {
    font-size: 1.25rem;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .hero-section h1 {
      font-size: 2.5rem;
    }

    .hero-section p {
      font-size: 1.25rem;
    }

    .hero-section .button {
      font-size: 1rem;
    }
  }

  .card-content-inner{

    padding:5px;
  }
  .page-content {
    padding: 16px;
  }
  
  .card-header {
    text-align: center;
    background: #f7f7f8;
  }
  
  .card-header .logo {
    width: 100px; /* Adjust the size as needed */
    height: auto;
  }
  
  .innerpage .card-content {
    background: #fff;
    padding: 16px;
  }
  
  .innerpage .card-content-inner p {
    margin: 0;
    color: #333;
    line-height: 1.5;
  }
  
  .innerpage  .card-header,
  .innerpage  .card-content {
    border-radius: 8px;
  }