/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

/* Normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  scroll-behavior: smooth;
}

/* Sections
     ========================================================================== */

/**
   * Remove the margin in all browsers.
   */

body {
  margin: 0;
}

/**
   * Render the `main` element consistently in IE.
   */

main {
  display: block;
}

/**
   * Correct the font size and margin on `h1` elements within `section` and
   * `article` contexts in Chrome, Firefox, and Safari.
   */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
     ========================================================================== */

/**
   * 1. Add the correct box sizing in Firefox.
   * 2. Show the overflow in Edge and IE.
   */

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
   * Remove the margin on nested lists in Chrome, Edge, Safari, and Firefox.
   */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
     ========================================================================== */

/**
   * Remove the gray background on active links in IE 10.
   */

a {
  background-color: transparent;
  cursor: pointer;
  text-decoration: none;
}

/**
   * Add the correct text decoration in Chrome, Edge, Safari, and Firefox.
   */

abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

/**
   * Add the correct font weight in Chrome, Edge, and Safari.
   */

b,
strong {
  font-weight: bolder;
}

/**
   * 1. Use the default monospace font in all browsers.
   * 2. Prevent `sub` and `sup` elements from affecting the line height in
   *    all browsers.
   */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
   * Add the correct font size in all browsers.
   */

small {
  font-size: 80%;
}

/* Embedded content
     ========================================================================== */

/**
   * Remove the border on images inside links in IE 10.
   */

img {
  border-style: none;
}

/* Forms
     ========================================================================== */

/**
   * 1. Change the font styles in all browsers.
   * 2. Remove the margin in Firefox and Safari.
   */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

ul {
  list-style: none;
}

/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

@font-face {
  font-family: "Boa"; /* Choose a name for your font */
  src: url(fonts/BoaConstruktorBold-ALBqM.ttf) format("truetype");
  /* Add more src lines for other formats if necessary */
  font-weight: normal; /* Font weight (e.g., normal, bold) */
  font-style: normal; /* Font style (e.g., normal, italic) */
}

@font-face {
  font-family: "Karma"; /* Choose a name for your font */
  src: url(fonts/KarmaMedium-naVY.ttf) format("truetype");
  /* Add more src lines for other formats if necessary */
  font-weight: normal; /* Font weight (e.g., normal, bold) */
  font-style: normal; /* Font style (e.g., normal, italic) */
}

/* Reset some default browser styles */
body,
h1,
h2,
h3,
p,
ul,
li {
  margin: 0;
  padding: 0;
}

body {
  background-color: #333;
  background-image: url(images/bg.webp);
  background-attachment: fixed;
  background-size: cover;
  position: relative;
  font-family: "Boa", Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}

/* Header Styles */
.header-container {
  background-color: #333; /* Add your background color */
  color: #bb5705; /* Add your text color */
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: sticky;
  top: 0px;
  right: 0px;
  z-index: 100;
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.logo h1 {
  margin-left: 2rem;
}

.logo img {
  width: 3.5rem;
  height: 3.5rem;
}

/* Hamburger Menu Styles */
.hamburger-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease; /* Add animation for opening and closing */
  position: relative;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #bb5705; /* Add your bar color */
  margin: 3px 0;
  border-radius: 2px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease; /* Add animation for opening and closing */
}

/* Hamburger menu open state */
.hamburger-menu.open {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.bar.open1 {
  -webkit-transform: translateY(8px) rotate(-45deg);
  -ms-transform: translateY(8px) rotate(-45deg);
  transform: translateY(8px) rotate(-45deg);
}

.bar.open2 {
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
}

.bar.open3 {
  -webkit-transform: translateY(-8px) rotate(45deg);
  -ms-transform: translateY(-8px) rotate(45deg);
  transform: translateY(-8px) rotate(45deg);
}

/* Navigation Menu Styles */
.nav-menu {
  display: none; /* Initially hide the menu */
  position: absolute;
  top: 60px; /* Adjust as needed */
  right: 0;
  background-color: #333; /* Add your background color */
  width: 200px; /* Adjust as needed */
  padding: 20px;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease; /* Add animation for fading in and out */
  opacity: 0; /* Start with opacity set to 0 (fully transparent) */
  pointer-events: none; /* Disable interaction when hidden */
}

.nav-classic {
  display: none;
  width: 50%;
}

.nav-classic ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: #bb5705; /* Add your link color */
  display: block;
  margin-bottom: 1rem;
  font-size: 1.2rem; /* Adjust as needed */
}

.nav-link:hover {
  text-decoration: underline;
  color: #a87505;
}

/* Open state for the navigation menu */
.nav-menu.open {
  display: block; /* Show the menu when open */
  opacity: 1; /* Fully visible */
  pointer-events: auto; /* Enable interaction */
}

main {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

main h1 {
  font-size: 2.2rem;
  letter-spacing: 0.3rem;
  margin-top: -2rem;
  text-align: center;
  color: #fff;
  background-color: rgb(187, 87, 5, 0.5);
  padding: 0.5rem;
  border-radius: 3px;
  width: 90%;
}

/* Section Styles */
.section-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 2rem;
  background-color: #a87505; /* Add your background color */
  color: #fff;
  line-height: 2rem;
  margin-top: 5rem;
  margin-bottom: 5rem;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* Add your box shadow */
}

#section1 {
  margin-top: 0px;
}

.section-title {
  font-size: 1.6rem; /* Add your font size */
  margin-bottom: 0.3rem;
}

.section-description {
  font-size: 1.3rem; /* Add your font size */
  margin-bottom: 0.5rem;
  padding: 0.7rem;
  border: 2px solid transparent;
  background-color: rgb(187, 87, 5, 0.4);
  border-radius: 15px;
  font-family: "Karma", Verdana, Geneva, Tahoma, sans-serif;
}

.section-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin-top: 0.5rem;
}

.exposition {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  background-color: #a87505;
  margin-bottom: 3rem;
  padding-top: 1rem;
  padding-bottom: 5rem;
}
.exposition__title h2 {
  font-size: 2rem;
  color: #fff;

  letter-spacing: 1.2rem;
  font-style: italic;
  text-align: center;
  margin-bottom: 3rem;
}

.exposition__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.exposition__images img {
  max-width: 80%;
  height: auto;
  display: block;
}

img {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

img:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

/* Contact Section Styles */
.contact-container {
  background-color: #bb5705;
  color: white; /* Add your background color */
  padding: 1.5rem;
  text-align: center;
}

.contact-container a {
  color: #00ffff;
}

.contact-container a:hover {
  text-decoration: underline;
}

.contact-info {
  margin-top: 0.5rem;
}

.phone-number {
  font-size: 1rem; /* Add your font size */
  margin-bottom: 0.5rem;
}

.email-link {
  font-size: 1rem; /* Add your font size */
  margin-bottom: 0.5rem;
  text-decoration: none;
}

/* Footer Styles */
.footer-container {
  background-color: #333333; /* Add your background color */
  color: #fff; /* Add your text color */
  padding: 0.2rem;
  text-align: center;
}

.copyright {
  font-size: 0.8rem; /* Add your font size */
  font-family: "Karma", Verdana, Geneva, Tahoma, sans-serif;
}

/* Additional styles for larger screens (e.g., tablets and desktops) */
@media screen and (min-width: 933px) {
  main h1 {
    font-size: 5rem;
    width: auto;
  }

  .section-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .section-text {
    width: 50%;
  }

  .section-image {
    width: 40%;
  }
}

@media screen and (min-width: 1150px) {
  .hamburger-menu {
    display: none;
    z-index: -1;
    position: absolute;
    top: -100px;
  }

  .nav-container {
    display: none;
  }

  .nav-classic {
    display: inline-block;
  }

  .nav-link {
    margin-bottom: 0px;
    font-size: 1rem;
  }
  .section-image {
    width: 30%;
  }

  .exposition__images {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
}

@media screen and (min-width: 1350px) {
  .section-image {
    width: 25%;
  }
}

@media screen and (min-width: 1500px) {
  .section-image {
    width: 20%;
  }
}

