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

body {
font-family: 'Arial', sans-serif;
background-color: #000;
color: #d6cdcd;
text-align: center;
line-height: 1.5;
}

/* Header */
.header {
padding: 2rem 0;
}

.header h1 {
font-size: 3rem;
font-weight: bold;
letter-spacing: 2px;
margin-bottom: 1rem;
font-family: cursive;
}

.header a {
text-decoration: none;
color: #ffffff;
}

.navigation a {
color: #fff;
text-decoration: none;
font-size: 19px;
font-weight: 300;
letter-spacing: 1px;
transition: color 0.3s;
padding-left: 11px;
}

.navigation a:hover {
color: #00ffff;
}

/* Mobile Navigation */
.mobile-nav {
display: none;
position: relative;
}

.hamburger {
position: relative;
width: 30px;
height: 20px;
border: none;
background: none;
cursor: pointer;
display: flex;
flex-direction: column;
justify-content: space-between;
z-index: 11;
/* Ensure it stays above other elements */
}

.hamburger span {
display: block;
width: 100%;
height: 2px;
background-color: #413c3c;
border-radius: 4px;
transition: all 0.4s ease;
}

.hamburger.active span:nth-child(1) {
transform: rotate(45deg);
position: absolute;
top: 10px;
}

.hamburger.active span:nth-child(2) {
opacity: 0;
/* Hide the middle bar */
}

.hamburger.active span:nth-child(3) {
transform: rotate(-45deg);
position: absolute;
top: 10px;
}

.mobile-menu {
display: flex;
flex-direction: column;
position: fixed;
top: 0;
right: -100%;
width: 100%;
height: 40%;
background-color: rgba(0, 0, 0,0.84);
padding: 1rem;
text-align: center;
z-index: 10;
transition: right 0.4s ease;
}

.mobile-menu.active {
right: 0;
}

.mobile-menu a {
text-decoration: none;
color: #8f108f;
font-size: 22px;
  font-family: monospace;
font-weight: bold;
margin-bottom: 10px;
}

.mobile-menu a:hover {
color: aqua;
}
.mobile-nav.active .mobile-menu {
display: flex;
}


/* Social Media Links */
.socials {
margin: 2rem 0;
}

.socials a {
color: #fff;
margin: 0 0.5rem;
font-size: 1.8rem;
transition: color 0.3s;
}

.socials a:hover {
color: #00ffff;
}

.album img {
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
transition: transform 0.3s, box-shadow 0.3s;
}

.album {
position: relative;
display: inline-block;
}

.caption {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: rgba(0, 0, 0, 0.7);
color: white;
padding: 10px;
text-align: center;
opacity: 0;
transition: opacity 0.3s;
}

.album-gallery a img:hover {
transform: scale(1.05);
box-shadow: 0 8px 15px rgba(0, 255, 255, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
.header h1 {
font-size: 2.5rem;
}

.navigation a {
font-size: 1rem;
}

header .navigation {
display: none;
}

.mobile-nav {
display: block;
}

.hamburger {
font-size: 1.8rem;
background: none;
border: none;
color: rgb(250, 231, 231);
cursor: pointer;
position: absolute;
top: -80px;
right: 11px;
}


.socials a {
font-size: 1.5rem;
}
}

@media (max-width: 480px) {
.header h1 {
font-size: 2rem;
}

.navigation a {
font-size: 0.9rem;
}

header .navigation {
display: none;
}

.mobile-nav {
display: block;
}

.hamburger {
font-size: 1.8rem;
background: none;
border: none;
color: rgb(250, 231, 231);
cursor: pointer;
position: absolute;
top: -80px;
right: 11px;
}

.socials a {
font-size: 1.2rem;
}
}
