html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    font-family: Arial, Helvetica, sans-serif;
}
body {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px !important;
    box-sizing: border-box;
    overflow-x: hidden;
    position: relative;
}
.bg-video {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100vw;
    min-height: 100vh;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
}
.main-container {
    width: 100%;
    max-width: 1100px;
    min-height: calc(100vh - 48px);
    background: rgba(255, 255, 255, 0.82);
    border-radius: 28px;
    backdrop-filter: blur(6px);
    padding: 80px 28px 10px 28px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    /* gap: 24px; */
}
.main-container > p {
  margin: 16px 0;
}
.main-title {
    margin: 0;
    color: white;
    font-size: clamp(2rem, 6vw, 5rem);
    text-align: center;
    text-shadow:
        -1px 0 black,
        0 1px black,
        1px 0 black,
        0 -1px black;
}
.main-subtitle,
.main-description {
    text-align: center;
    max-width: 800px;
    font-weight: bold;
}
.cta-container {
    width: 100%;
    display: flex;
    justify-content: center;
}
.create-btn {
    padding: 16px 32px;
    border-radius: 18px;
    font-weight: bold;
}
.buttons-grid {
    width: 70%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    row-gap: 14px;
    column-gap: 70px;
}
.buttons-grid .btn {
    border-radius: 18px;
    border: 1px solid black;
    padding: 12px;
    font-weight: bold;
    font-size: small;
}
.modal-content {
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.95);
}
.chat-dialog {
    max-width: 1000px;
    height: 85vh;
}
.chat-dialog .modal-content {
    height: 100%;
}
.chat-body {
    padding: 0;
    height: 100%;
}
#myLandbot {
    width: 100%;
    height: 100%;
    min-height: 650px;
}
.gallery-grid {
    column-count: 5;
    column-gap: 16px;
}
.gallery-item {
    margin-bottom: 16px;
    break-inside: avoid;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    display: block;
    border-radius: 18px;
}
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 20px;
}
.hidden {
    display: none;
}
.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gap: 10px; */
    /* margin-top: 20px; */
}
.socials {
    display: flex;
    gap: 20px;
}
.socials a {
    color: black;
    font-size: 1.6rem;
}
.footer p {
    margin: 0;
    text-align: center;
}
a {
    /* text-decoration: none; */
    color: inherit;
}
.top-spacer {
  display: flex;
  align-items: center;
  column-gap: 16px;
}
h1 {
  float: left;
}
.logo {
  float: left;
    width: 70px;
    border-radius: 100px;
    border: solid dimgray;
}
.credits {
    font-size: 10px;
}
@media (max-width: 992px) {
    .gallery-grid {
        column-count: 5;
    }
}
@media (max-width: 768px) {
    body {
        padding: 12px;
    }
    .main-container {
        min-height: calc(100vh - 24px);
        padding: 24px 18px 10px 18px;
    }
    .buttons-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        column-count: 5;
    }
    .chat-dialog {
        height: 92vh;
        margin: 10px;
    }
    .footer {
      margin-top: 30px;
    }
    .top-spacer {
      column-gap: 10px;
    }
    #myLandbot {
        min-height: 75vh;
    }
}