
body {
    background: #000000;
    color: #000000;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
header {
    padding: 20px;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: none;
}
header h1 {
    margin: 0 0 10px 0;
}
nav a {
    color: #ccc;
    text-decoration: none;
    margin: 0 10px;
    font-weight: bold;
}
nav a.active,
nav a:hover {
    color: #fff;
}
main.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    padding: 40px;
}
.thumb-wrapper {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 16 / 9;
    background: #000;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
}
.thumb-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.thumb-wrapper .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.thumb-wrapper .play-button::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}
.contact-form {
    max-width: 600px;
    margin: 60px auto;
    padding: 20px;
}
.contact-form label {
    display: block;
    margin-top: 20px;
    font-weight: bold;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    background: #000;
    border: 1px solid #444;
    color: #fff;
    border-radius: 4px;
}
.contact-form button {
    margin-top: 20px;
    padding: 10px 20px;
    background: #fff;
    color: #000;
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 4px;
}
.contact-form button:hover {
    background: #eee;
}
.success {
    background: #0a0;
    color: white;
    padding: 10px;
    text-align: center;
    border-radius: 6px;
}

/* Menu integration */
#menu-wrapper {
    background: #000;
    padding: 10px 20px;
    border-bottom: none;
    text-align: right;
}
#menu-wrapper .main-menu {
    display: inline-block;
}
#menu-wrapper .main-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
#menu-wrapper .main-menu li {
    display: inline-block;
    margin-left: 20px;
}
#menu-wrapper .main-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1px;
}
#masthead {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}
.site-branding img {
    max-height: 50px;
    width: auto;
}
.push-right {
    display: none;
}
#menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}
#menu-icon span {
    display: block;
    height: 2px;
    width: 25px;
    background: white;
}
/* Responsive */
@media (max-width: 768px) {
    #menu-wrapper .main-menu ul {
        display: none;
        flex-direction: column;
        text-align: left;
        margin-top: 10px;
    }
    #menu-wrapper .main-menu ul.open {
        display: flex;
    }
    #menu-icon {
        display: flex;
    }
    .push-right {
        display: block;
    }
}


.thumb-wrapper {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.thumb-wrapper img {
    transition: opacity 0.3s ease;
}

.thumb-wrapper:hover img {
    opacity: 0.3;
}

.thumb-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    text-align: center;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.thumb-wrapper:hover .thumb-overlay {
    opacity: 1;
}


.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
    gap: 20px;
    padding: 40px;
}

.thumb-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 16 / 9;
    background: #000;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
}


/* Sleek dropdown styling */
.filter-controls select {
    background-color: #111;
    color: #fff;
    border: 1px solid #444;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 16px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    cursor: pointer;
}

.filter-controls select:focus {
    border-color: #888;
}

/* Add a down arrow */
.filter-controls select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg fill='white' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' d='M10 12a.75.75 0 01-.53-.22l-4.25-4.25a.75.75 0 111.06-1.06L10 10.19l3.72-3.72a.75.75 0 111.06 1.06l-4.25 4.25A.75.75 0 0110 12z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px 16px;
    padding-right: 32px;
}


.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.95);
    align-items: center;
    justify-content: center;
    padding: 40px;
    flex-direction: column;
}

.modal.show {
    display: flex;
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 960px;
    height: 0;
    padding-bottom: 56.25%;
    background-color: #000;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.modal-content iframe {
    position: absolute;
    top: 0;
    left: 0;
}

#modal-info {
    color: white;
    text-align: center;
    max-width: 960px;
}

#modal-info h2 {
    margin: 10px 0;
    font-size: 20px;
}

#modal-info p {
    margin: 0;
    font-size: 14px;
    color: #aaa;
}

.close-button {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 32px;
    color: white;
    cursor: pointer;
    z-index: 10000;
    transition: opacity 0.2s;
}

.close-button:hover {
    opacity: 0.7;
}


/* Lightbox blur effect */
body.modal-open #gallery {
    filter: blur(5px);
    transition: filter 0.3s ease;
}

/* Navigation arrows */
.modal-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 48px;
    color: white;
    background: rgba(0,0,0,0.4);
    border: none;
    padding: 0 16px;
    cursor: pointer;
    z-index: 10000;
    transition: background 0.2s;
}

.modal-arrow:hover {
    background: rgba(0,0,0,0.7);
}

#prev-video {
    left: calc(50% - 540px);
    left: 10px;
}

#next-video {
    right: calc(50% - 540px);
    right: 10px;
}


.modal-arrow {
    font-family: sans-serif;
    font-weight: 100;
    font-size: 60px;
    line-height: 1;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10001;
}

.modal-arrow:hover {
    opacity: 0.7;
}

/* Fix close button visibility */
.close-button {
    position: absolute;
    top: -50px;
    right: -10px;
    font-size: 36px;
    color: white;
    font-weight: 100;
    z-index: 10001;
    cursor: pointer;
}


.modal:hover .modal-arrow {
    opacity: 1;
}

.modal-arrow {
    opacity: 0;
    transition: opacity 0.3s ease;
    position: fixed;
}

#prev-video {
    left: 30px;
}

#next-video {
    right: 30px;
}

/* Stronger fix for close button */
.close-button {
    position: absolute;
    top: -60px;
    right: -30px;
    font-size: 36px;
    color: #fff !important;
    font-weight: 100;
    z-index: 10010;
    cursor: pointer;
    background: none;
    border: none;
}


.close-button {
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 10001;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 100;
    font-size: 18px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.close-button:hover {
    background: rgba(255,255,255,0.1);
}


/* Hide the native select */
.custom-select-wrapper {
  position: relative;
  display: inline-block;
  width: 220px;
  font-size: 14px;
  font-family: sans-serif;
}

.custom-select {
  background-color: #111;
  color: #fff;
  border: 1px solid #444;
  border-radius: 4px;
  padding: 6px 12px;
  cursor: pointer;
  user-select: none;
  position: relative;
}

.custom-select::after {
  content: "▼";
  font-size: 10px;
  position: absolute;
  right: 10px;
  top: 10px;
  pointer-events: none;
}

.select-options {
  display: none;
  position: absolute;
  width: 100%;
  background-color: #111;
  border: 1px solid #444;
  border-top: none;
  z-index: 10001;
  border-radius: 0 0 4px 4px;
}

.select-options div {
  padding: 8px 12px;
  cursor: pointer;
  color: #fff;
}

.select-options div:hover {
  background-color: #222;
}


.custom-select-wrapper {
  width: 180px;
  font-size: 13px;
  font-family: 'Helvetica Neue', sans-serif;
  font-weight: 100;
}

.custom-select {
  padding: 5px 10px;
  font-size: 13px;
  font-weight: 100;
  font-family: 'Helvetica Neue', sans-serif;
}

.select-options div {
  font-size: 13px;
  font-weight: 100;
  font-family: 'Helvetica Neue', sans-serif;
}


/* Improved legible font for dropdown */
.custom-select-wrapper {
  width: 140px;
  font-size: 12px;
  font-family: sans-serif;
  font-weight: normal;
}

.custom-select {
  padding: 4px 8px;
  font-size: 12px;
  font-family: sans-serif;
  font-weight: normal;
}

.select-options div {
  padding: 6px 8px;
  font-size: 12px;
  font-family: sans-serif;
  font-weight: normal;
}

/* Lighten CONTACT and FOLLOW menu items */
.menu li a {
  font-family: sans-serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 1px;
}


.filter-controls {
  text-align: right !important;
  padding-right: 40px;
}


.custom-select {
  text-align: center;
}

.select-options div {
  text-align: center;
}


/* Position menu at the bottom and center it */
#menu-wrapper {
  position: fixed;
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
}

#menu-wrapper .main-menu ul {
  display: inline-block;
  padding: 0;
  margin: 0;
  list-style: none;
}

#menu-wrapper .main-menu ul li {
  display: inline;
  margin: 0 10px;
}


/* Float the logo at the top left */
.site-branding {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000;
}

.site-branding img {
  max-width: 200px;
  height: auto;
}

/* Style Instagram icon */
.social-icons {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.social-icons a {
  color: #fff;
  font-size: 20px;
  text-decoration: none;
}


.site-branding {
  top: 20px;
  left: 40px;
}

.site-branding img {
  max-width: 280px;
  height: auto;
}


/* Thumbnails: remove rounded corners and set very tight spacing */
.thumb-wrapper {
  border-radius: 0;
  margin: 0.5px;
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
}

.gallery {
  font-size: 0;
  text-align: center;
}

/* Fix close button visibility */
.close-button {
  top: 10px;
  right: 20px;
}

/* Hide Instagram icon */
.social-icons {
  display: none;
}
