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

/* BACKGROUND + PAGE-WIDE DARK OVERLAY */
body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #fff;
  background: url('backdrop.jpg') no-repeat center center fixed;
  background-size: cover;
  position: relative;
  min-height: 100vh;
}

/* lighter full-page overlay */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.40);
  z-index: -1;
}

/* Maintain flex layout */
html, body {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* HEADER */
header {
  background: rgba(0, 0, 0, 0.75);
  padding: 2.2em 1em;
  text-align: center;
  position: relative;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(2px);
}

/* Fixed header on desktop */
@media (min-width: 768px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
  }
}

/* HEADER TITLE (slightly larger) */
header h1 {
  font-size: 2.6em;       /* increased from 2.4em */
  letter-spacing: 1.5px;
  color: #fff;
}

/* NAV */
nav {
  margin-top: 0.7em;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
  transition: opacity 0.3s ease;
}

nav a:hover {
  opacity: 0.7;
}

/* MOBILE MENU ICON */
.menu-toggle {
  display: none;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
}

.menu-toggle div {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 5px 0;
}

/* MAIN CONTENT */
main {
  flex: 1;
  padding: 2em;
  text-align: center;
  background: rgba(0,0,0,0.25);
}

/* Offset for fixed header */
@media (min-width: 768px) {
  main {
    margin-top: 150px;
    padding-bottom: 90px;
  }
}

/* HEADING 2 (slightly larger) */
h2 {
  font-size: 2.0em;       /* increased from 1.8em */
  margin-bottom: 0.5em;
  color: #fff;
}

/* PARAGRAPHS (slightly larger) */
p {
  max-width: 700px;
  margin: 0.5em auto;
  line-height: 1.7;
  font-size: 1.12em;      /* increased from default */
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1em;
  margin-top: 2em;
}

.photo {
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.photo:hover {
  transform: scale(1.03);
}

.photo img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.caption {
  background: rgba(0,0,0,0.6);
  padding: 0.6em;
  font-size: 1em;
}

/* CONTACT FORM */
form {
  max-width: 500px;
  margin: 2em auto;
  display: flex;
  flex-direction: column;
}

form input,
form textarea {
  margin-bottom: 1em;
  padding: 0.8em;
  border: none;
  border-radius: 5px;
  font-size: 1.05em;
  background: rgba(255,255,255,0.9);
  color: #000;
}

/* ORIGINAL BUTTON STYLE */
form button {
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-weight: bold;
  border: 2px solid #fff;
  padding: 0.8em;
  border-radius: 5px;
  cursor: pointer;
  transition: opacity 0.25s ease;
}

form button:hover {
  opacity: 0.7;
}

/* FOOTER */
footer {
  background: rgba(0,0,0,0.7);
  color: #fff;
  text-align: left;
  padding: 1.8em;   /* increased from 1em */
  font-size: 0.95em;
  width: 100%;
  position: relative;
}


footer p {
  margin: 0;             /* remove auto-centering margins */
  padding-left: 10px;    /* optional: adds a small left inset */
}



/* Fixed footer on desktop */
@media (min-width: 768px) {
  footer {
    position: fixed;
    bottom: 0;
    left: 0;
  }
footer {
  background: rgba(0,0,0,0.7);
  color: #fff;
  text-align: left;
  padding: 1.4em;   /* increased from 1em */
  font-size: 0.95em;
  width: 100%;
  position: relative;
}


.footer-logo {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  height: 70px;     /* FIXED larger size */
  width: auto;
  opacity: 0.95;
}








}

/* RESPONSIVE NAV */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav {
        display: none;
        flex-direction: column;
        background: rgba(0,0,0,0.85);
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
    }

    nav.active {
        display: flex;
    }

    nav a {
        padding: 12px;
        border-top: 1px solid rgba(255,255,255,0.2);
    }

    /* NEW FOOTER LOGO RULES FOR MOBILE */
    .footer-logo {
        position: static;
        display: block;
        width: 100%;
        height: auto;
        margin: 10px 0 0 0;
        transform: none;
    }

    footer {
        text-align: center;
    }

    footer p {
        padding-left: 0;
    }
}

