.container {
  display: flex;
  gap: 20px;
}
.column {
  flex: 1;
  padding: 20px;
}

h1 {
    text-align: center;
    font-family: "zebrawood-std", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 5rem;
    padding-top: 0px;
    color: blue
}

@media screen and (max-width: 1075px) {
    h1 {
        font-size: 3rem;
    }
}

p {
    font-family: afacade-mono, monospace;
    font-weight: 400;
    font-style: normal;
    font-size: 1rem;
    line-height: 1.8;
}

footer {
    text-align: left;
    font-family: afacade-mono, monospace;
    font-weight: 400;
    font-style: normal;
    font-size: 0.675rem;
    margin-top: 0px;
    line-height: 1rem;
    word-spacing: -0.1rem;
    padding-left: 20px;
    background-color: blue;
}

footer p {
    color: white;
}

.award {
    background-color: blue;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 2.5rem;
    text-align: left;
    transition: all 0.3s ease;
}

div {
display: block;
    unicode-bidi: isolate;  
}
    
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  justify-items: center; /* centers items inside each grid cell */
  margin: 0 auto;        /* centers the whole grid */
  padding: 2rem 0;
}

@media (min-width: 1200px) {
  .awards-grid {
    max-width: 1000px;     /* controls total width */
  }
}
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  justify-items: center; /* centers items inside each grid cell */
  max-width: 1000px;     /* controls total width */
  margin: 0 auto;        /* centers the whole grid */
  padding: 2rem 0;
}

.awards-grid .award:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px orange;
    opacity: 50%;
}

.attractions-grid .attractions:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px orange;
    opacity: 50%;
}

h3 {
    margin-top: 20px;
    font-family: "afacade-mono", sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

h4 {
    margin-top: 10px;
    font-family: afacade-mono, monospace;
    font-weight: 400;
    font-style: normal;
    font-size: 1rem;
    line-height: 1.4;
    color: white;

}

.award-number {
    font-family: "afacade-mono", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 0.875rem;
    color: orange;
    text-transform: uppercase;
}

.attractions-number {
    font-family: "afacade-mono", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 0.875rem;
    color: orange;
    text-transform: uppercase;
}

.image-citation {
  font-size: 0.75rem;
  color: #666;
  font-style: italic;
  text-align: center;
  margin-top: 6px;
}

main {
    background-color: rgb(212, 239, 249);
}

.resort-title {
    color: blue;
}

.heroimage {
    position: relative;
    height: 100vh;
}

.heroimage img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}

.heroimage p {
    color: white;
    font-size: 2rem;
    font-family: afacade-mono, monospace;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.heroimage h1 {
    color: blue;
    font-size: 5rem;
    font-family: "zebrawood-std", sans-serif;
}
@media screen and (max-width: 1075px) {
    .heroimage h1 {
        font-size: 3rem;
    }
}
.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    text-align: center;
    transform: translate(-50%, -50%);
    background-color: rgba(212, 239, 249, 0.7);
}
.resort-attractions {
    text-align: center;
    width: 70%;
    margin: 0 auto;
}
