/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

/* Logo Styles */
.logo {
    margin-left: 20px;
}

.logo img {
    width: 125px; /* Adjust the size of the logo */
    height: auto;
    cursor: pointer;
}

/* Navigation Menu */
#menu {
    background-color: #6c6c6c;
    color: white;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

#menu ul {
    max-width: 900px;
    margin: auto;
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
}

#menu ul li {
    margin: 0 15px;
}

#menu ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s;
}

#menu ul li a:hover {
    color: #aaa;
}


/* Language Icons */
#lang-icons {
    margin-right: 20px;
}

#lang-icons img {
    width: 24px;
    height: 24px;
    cursor: pointer;
    border-radius: 50%;
    transition: transform 0.3s;
}

#lang-icons img:hover {
    transform: scale(1.1);
}

/* Slider Section */

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1100px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}


/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/* Presentation Section */
#presentation {
    background-color: #f9f9f9;
    padding: 40px 0 40px 0;
}

#presentation .content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    align-items: center;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto;
    gap: 20px; /* Adds spacing between text and image */
}

.presentation-images {
    text-align: right;
}

.presentation-images img {
    width: 100%;
    max-width: 500px; /* Adjusts the maximum width of the image */
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Gallery Section */
#gallery {
    background-color: #fff;
    padding: 40px 0 40px 0;
}

#gallery .content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    align-items: center;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto;
    gap: 10px; /* Adds spacing between text and image */
}

.column img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
}
 


/* Shop Section */
#shop {
    background-color: #f9f9f9;
    text-align: center;
    padding: 40px 0 40px 0;
}

#shop .content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto;
    gap: 20px; /* Adds spacing between text and image */
}

#shop button {
    margin-top: 10px; /* Add some space above the button */
}

.shop-images {
    text-align: left;
}

.shop-images img {
    width: 100%;
    max-width: 600px; /* Adjusts the maximum width of the image */
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Support Me Section */
#support {
    background-color: #fff;
    text-align: center;
    padding: 40px 0 40px 0;
}

#support .content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    align-items: center;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto;
    gap: 20px; /* Adds spacing between text and image */
}

#support button {
    margin-top: 10px; /* Add some space above the button */
}

.support-images {
    text-align: right;
}

.support-images img {
    width: 100%;
    max-width: 500px; /* Adjusts the maximum width of the image */
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Support Me Section */
#privacy-policy {
    background-color: #f9f9f9;
    text-align: center;
    padding: 40px 0 40px 0;
}

#privacy-policy .content {
    align-items: center;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto;
}

/* Buttons */

.button {
    display: inline-block;
    padding: 8px 20px;
    font-size: 18px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    outline: none;
    color: #fff;
    background-color: #ffb845;
    border: none;
    border-radius: 15px;
    box-shadow: 0 9px #999;
  }
  
  .button:hover {background-color: #e55c1d}
  
  .button:active {
    background-color: #3e8e41;
    box-shadow: 0 5px #666;
    transform: translateY(4px);
  }

/* Contact Section */
#contact-social {
    background-color: #f9f9f9;
    text-align: center;
    padding: 30px 0;
}

#contact-social .content {
    display: grid;
    grid-template-columns: 3fr 1fr;
    align-items: center;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto;
    gap: 20px; /* Adds spacing between text and image */
}

form {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

form label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

form input, form textarea, form button {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background-color: #333;
    color: white;
    border: none;
    cursor: pointer;
}

form button:hover {
    background-color: #555;
}

.social-media {
    margin-top: 20px;
}

.social-media a {
    margin: 0 10px;
    text-decoration: none;
    color: #333;
}

.social-media a:hover {
    color: #555;
}

footer {
    text-align: center;
}


/* The Modal (background) */
.modal {
    display: block; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    max-width: 400px;
    margin: 0 auto;
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    -webkit-animation-name: fadeIn; /* Fade in the background */
    -webkit-animation-duration: 0.4s;
    animation-name: fadeIn;
    animation-duration: 0.4s
  }
  
  /* Modal Content */
  .modal-content {
    position: fixed;
    bottom: 0;
    background-color: #fefefe;
    width: 100%;
    -webkit-animation-name: slideIn;
    -webkit-animation-duration: 0.4s;
    animation-name: slideIn;
    animation-duration: 0.4s
  }
  
  /* The Close Button */
  .close {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }
  
  .modal-green {
    padding: 2px 16px;
    background-color: #5cb85c;
    color: white;
  }
  .modal-red {
    padding: 2px 16px;
    background-color: #fd4646;
    color: white;
  }
  
  .modal-body {padding: 2px 16px;}

  
  /* Add Animation */
  @-webkit-keyframes slideIn {
    from {bottom: -300px; opacity: 0} 
    to {bottom: 0; opacity: 1}
  }
  
  @keyframes slideIn {
    from {bottom: -300px; opacity: 0}
    to {bottom: 0; opacity: 1}
  }
  
  @-webkit-keyframes fadeIn {
    from {opacity: 0} 
    to {opacity: 1}
  }
  
  @keyframes fadeIn {
    from {opacity: 0} 
    to {opacity: 1}
  }


#social-media a {
    margin: 0 10px;
    color: #000; /* Replace with your desired color */
    text-decoration: none;
    font-size: 1.5em; /* Adjust size */
}

#social-media a:hover {
    color: #0073e6; /* Change color on hover */
}

/*  Responsive layout */
@media screen and (max-width: 800px) {
    #gallery .content {
        grid-template-columns: 1fr 1fr;
        padding: 0 20px;
    }
    #presentation .content, #shop .content, #support .content, #contact-social .content {
        padding: 0 20px;
    }

    #contact-social .content {
        grid-template-columns: 1fr 1fr;
    }
    
    #menu ul li:not(:last-child){
        display: none;
    }
  }
  
  @media screen and (max-width: 600px) {
    #presentation .content, #shop .content, #support .content, #contact-social .content {
        grid-template-columns: 1fr;
    }
  }
