<<<<<<< HEAD
/* === GLOBAL STYLES (shared across all pages) === */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background-image: url('https://photos.oasisinspace.net/file/OasisInSpaceWebFiles/Website/Images/webBackground-1.jpg');
  background-repeat: no-repeat;
  background-color: #d2b8ff;
}

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 35px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-family: 'Grand Hotel', cursive;
  font-size: 24px;
}

/* === INDEX PAGE: Intro Section === */
.intro {
  text-align: center;
  padding: 35px;
  margin-bottom: 20px;
}

/* === GALLERY COMPONENT (shared) === */
.gallery {
  padding: 20px;
}

.gallery h2 {
  text-align: center;
  margin-bottom: 20px;
}

.image-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.image-card {
  background-color: rgba(167, 97, 97, 0.226);
  border: 1px solid #dbdbdb;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  width: 300px;
  text-align: center;
}

.gallery-image {
  height: 200px;
  width: 300px;
  display: block;
  object-fit: cover;
}

/* === FORM STYLING (for password or album input) === */
.form-container {
  padding: 10px;
}

.form-container form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-container label {
  text-align: left;
}

.form-container input[type="password"],
.controls input[type="text"],
.controls input[type="password"] {
  padding: 5px 10px;
  border: 1px solid #dbdbdb;
  border-radius: 5px;
}

.form-container button,
.controls button {
  padding: 10px;
  border: none;
  background-color: #3897f0;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
}

.form-container button:hover,
.controls button:hover {
  background-color: #3185d9;
}

/* === CONTROLS SECTION (album.html specific) === */
.controls {
  text-align: center;
  padding: 20px;
}

.controls input,
.controls button {
  margin: 5px;
}

/* === END OF CURRENT GLOBAL STYLES === */

/* 
📝 FUTURE STYLES: 
Add additional page-specific styles here, using section comments:
--------------------------------------------------------
Example:
  === ABOUT PAGE ===
  .about-text { ... }
--------------------------------------------------------
*/
=======
/* === GLOBAL STYLES (shared across all pages) === */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background-image: url('https://photos.oasisinspace.net/file/OasisInSpaceWebFiles/Website/Images/webBackground-1.jpg');
  background-repeat: no-repeat;
  background-color: #d2b8ff;
}

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 35px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-family: 'Grand Hotel', cursive;
  font-size: 24px;
}

/* === INDEX PAGE: Intro Section === */
.intro {
  text-align: center;
  padding: 35px;
  margin-bottom: 20px;
}

/* === GALLERY COMPONENT (shared) === */
.gallery {
  padding: 20px;
}

.gallery h2 {
  text-align: center;
  margin-bottom: 20px;
}

.image-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.image-card {
  background-color: rgba(167, 97, 97, 0.226);
  border: 1px solid #dbdbdb;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  width: 300px;
  text-align: center;
}

.gallery-image {
  height: 200px;
  width: 300px;
  display: block;
  object-fit: cover;
}

/* === FORM STYLING (for password or album input) === */
.form-container {
  padding: 10px;
}

.form-container form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-container label {
  text-align: left;
}

.form-container input[type="password"],
.controls input[type="text"],
.controls input[type="password"] {
  padding: 5px 10px;
  border: 1px solid #dbdbdb;
  border-radius: 5px;
}

.form-container button,
.controls button {
  padding: 10px;
  border: none;
  background-color: #3897f0;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
}

.form-container button:hover,
.controls button:hover {
  background-color: #3185d9;
}

/* === CONTROLS SECTION (album.html specific) === */
.controls {
  text-align: center;
  padding: 20px;
}

.controls input,
.controls button {
  margin: 5px;
}

/* === END OF CURRENT GLOBAL STYLES === */

/* 
📝 FUTURE STYLES: 
Add additional page-specific styles here, using section comments:
--------------------------------------------------------
Example:
  === ABOUT PAGE ===
  .about-text { ... }
--------------------------------------------------------
*/
>>>>>>> 27712fd8e365586d7058179311aad4355459505c
