/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Define custom color variables */

:root {
    --primary-color: #517C8C;
    --secondary-color: #F2BA52;
    --text-color: #333;
    --accent1-color: #F29849;
    --accent2-color: #BF5934; 
    --accent3-color: #8C4535;
  }

  @font-face {
    font-family: "Pacifico";
    src: url('fonts/Pacifico-Regular.ttf') format('truetype');
    }

/* Body styles */
body {
    font-family: Arial, sans-serif;
    background-color: #fff;
    color: var(--text-color);
}

/* Header styles */
header {
    text-align: center;
    background-color: var(--primary-color);
    color: #fff;
    padding: 20px;
    align-items: center;
}

ul {
    padding: 20px;
}

/* Mobile */
/* Responsive styles */
@media (max-width: 600px) {

header h1 {
    font-family: 'Pacifico';
    font-size: 2rem;
    padding: 15px;
}

.section h2 {
    font-size: 1rem;
    color: var(--primary-color);
}

.logo {
    position: absolute;
    top: 10px;
    left: 20px;
}

.logo img {
    height: 60px; /* Adjust the height as needed */
    width: auto; /* Maintain aspect ratio */
}

.socialMedia {
    position: absolute;
    top: 20px;
    right: 20px;
}
}

/* Tablet */
@media (min-width:600px) {
    .logo {
        position: absolute;
        top: 30px;
        left: 50px;
    }
    
    .logo img {
        height: 60px; /* Adjust the height as needed */
        width: auto; /* Maintain aspect ratio */
    }

    .socialMedia {
        position: absolute;
        top: 30px;
        right: 100px;
    }

    header h1 {
        font-family: 'Pacifico';
        font-size: 2.5rem;
    }

    .section h2 {
        font-size: 2rem;
        color: var(--primary-color);
    }
}

/* Desktop */
@media (min-width:1000px) {
    .logo {
        position: absolute;
        top: 10px;
        left: 100px;
    }
    
    .logo img {
        height: 120px; /* Adjust the height as needed */
        width: auto; /* Maintain aspect ratio */
    }

    .socialMedia {
        position: absolute;
        top: 30px;
        right: 200px;
    }

    header h1 {
        font-family: 'Pacifico';
        font-size: 2.5rem;
    }

    .section h2 {
        font-size: 2rem;
        color: var(--primary-color);
    }
}

/* Subtitle styles with added margin-bottom for spacing */
header p {
    margin-bottom: 20px; /* Add more space as needed */
}

/* Navigation menu styles */
nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

/* Section styles */
.section {
    padding: 40px;
}

h3 {
    margin-top: 10px;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

h4 {
    margin-top: 5px;
}

/* Camera tile styles */

.camera-tiles {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 20px;
}

.camera-tile {
    position: relative;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    margin: 10px;
    padding: 20px;
    text-align: center;
    width: 300px;
}

.sold-banner {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--accent3-color);
    color: #ffffff; 
    padding: 10px 15px; 
    font-size: 16px;
}

.camera-tile img {
    max-width: 100%;
}

.camera-tile h2 {
    margin-top: 10px;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.camera-tile .description {
    margin-top: 10px;
    color: #777;
}

.camera-tile .price {
    margin-top: 10px;
    font-weight: bold;
    color: #333;
}

.detail-div {
    display: flex;
    justify-content: center;
    width: 100vw;
    margin-left: -150px;
    margin-right: -150px;
    background-color: var(--primary-color); /* Set your desired background color */
  }

.detail-content{
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    margin: 10px;
    padding: 20px;
    width: 80%;
    max-width: 750px;
}

/* Option tile styles */
.option-tiles {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 20px;
}

.option-tile {
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    margin: 10px;
    padding: 20px;
    text-align: center;
    width: 300px;
}

.option-tile h2 {
    margin-top: 10px;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.option-tile .description {
    margin-top: 10px;
    color: #777;
}

.option-tile .price {
    margin-top: 10px;
    font-weight: bold;
    color: #333;
}

/*FAQ styles*/

.faq-section {
    max-width: 600px;
    margin: 0 auto;
}

.question {
    cursor: pointer;
    padding: 10px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    margin-bottom: 5px;
}

.answer {
    display: none;
    padding: 10px;
    border: 1px solid #ccc;
    background-color: #fff;
}

/* Footer styles */
footer {
    text-align: center;
    padding: 10px;
    background-color: var(--accent3-color);
    color: #fff;
}
#impressumContainer {
    display: none;
    padding-top: 20px;
}

/* Blog entry styles */
.blog-entry {
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    margin: 20px 0;
    padding: 20px;
    cursor: pointer;
}

.blog-entry h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.blog-entry p {
    color: var(--text-color);
    padding: 10px;
}

.blog-entry em{
        font-style: italic;
}

.blog-contentdiv {
    display: none;
}

/* Responsive styles */
@media (max-width: 600px) {
    .camera-tiles {
        flex-direction: column;
        align-items: center;
    }

    .camera-tiles {
        padding: 0px;
    }
    .option-tiles {
        padding: 0px;
    }

    .camera-tile {
        width: 100%;
    }
}

/* Mobile */

/* Tablet */
@media (min-width:600px) {
    .section {
        padding-left: 80px;
        padding-right: 100px;
    }
    .camera-tiles {
        padding: 0px;
    }
    .option-tiles {
        padding: 0px;
    }
}

/* Desktop */
@media (min-width:1000px) {
    .section {
        padding-left: 120px;
        padding-right: 140px;
    }
    .camera-tiles {
        padding: 0px;
    }
    .option-tiles {
        padding: 0px;
    }
}

.blog-imagediv {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    padding: 16px;
}

.blog-image {
    height: 200px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.image-container {
    position: relative;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: auto;
    display: block;
 }

.caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    text-align: center;
    font-size: 0.5em;
}

dl {
    margin-bottom: 20px;
  }
  
  dt {
    font-weight: bold;
    margin-inline-start: 10px;
  }
  
  dd {
    margin-inline-start: 20px;
  }

/* Add a class for the full-screen image */
.fullscreen-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    display: none;
  }

  .fullscreen-image img {
    max-width: 90%; /* Adjust the width as needed */
    max-height: 90%; /* Adjust the height as needed */
    margin: auto;
    display: block;
    border: 10px solid white; /* 5% of 90% of the image width */
  }