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

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background-color: #b01b3a;
  background-image:
    radial-gradient(circle at 0 0, rgba(255,255,255,0.18) 2px, transparent 2px),
    radial-gradient(circle at 10px 10px, rgba(255,255,255,0.18) 2px, transparent 2px);
  background-size: 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  min-height: 100vh;
}

.page-frame {
  background-color: #ffffff;
  width: 100%;
  max-width: 1100px;
  min-height: 560px;
  border-radius: 12px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  padding: 40px 40px 45px;
  display: flex;
  gap: 40px;
}

/* Left column */
.left-panel {
  flex: 0 0 33%;
  display: flex;
  flex-direction: column;
  color: #333;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.logo img {
  height: 110px;
  width: auto;
}

.logo-text {
  font-size: 26px;
  letter-spacing: 3px;
  font-weight: bold;
  color: #b01b3a;
}

.subtitle {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #555;
}

.welcome-title {
margin-bottom: 0;
    font-size: 14px;
    line-height: 30px;
}

.description {
  font-size: 14px;
  line-height: 26px;
  margin-bottom: 25px;
}

.contact-title {
    font-size: 14px;
    line-height: 30px;
    margin-bottom: 2px;
}

.contact-info a {
  font-size: 14px;
  line-height: 30px;
  text-decoration: none;
  color: #333;
}
.contact-info a:hover {
  text-decoration: underline;
  color: #99182f;
}

/* Right column - Gallery */
.gallery {
  flex: 1;
  display: flex;
  gap: 12px;
  min-height: auto;
}

.gallery-column-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gallery-column-right {
  flex: 1.3;
  display: flex;
}

.gallery-item {
  overflow: hidden;
  border-radius: 4px;
  position: relative;
  flex: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Large image fills the right column */
.gallery-item.large {
  flex: 1;
  height: 100%;
}

/* Responsive - Tablet */
@media (max-width: 900px) {
  body {
    padding: 20px;
  }

  .page-frame {
    flex-direction: column;
    padding: 30px;
    gap: 30px;
  }

  /*.left-panel {*/
  /*  flex-basis: auto;*/
  /*}*/

  /*.gallery {*/
  /*  min-height: 400px;*/
  /*  width: 100%;*/
  /*}*/
}

/* Responsive - Mobile */
@media (max-width: 600px) {
  body {
    padding: 10px;
  }

  .page-frame {
    padding: 20px;
    gap: 25px;
    min-height: auto;
  }

  /*.gallery {*/
  /*  flex-direction: column;*/
  /*  min-height: auto;*/
  /*  gap: 12px;*/
  /*}*/

  /*.gallery-column-left {*/
  /*  flex-direction: column;*/
  /*  flex: 1;*/
  /*}*/

  /*.gallery-column-right {*/
  /*  flex: 1;*/
  /*}*/

  /*.gallery-item {*/
  /*  min-height: 200px;*/
  /*  flex: none;*/
  /*}*/

  /*.gallery-item.large {*/
  /*  height: auto;*/
  /*  min-height: 200px;*/
  /*}*/
}