body {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ef 100%);
    margin: 0;
    padding: 0;
    color: #23272f;
    min-height: 100vh;
}
h1{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-bottom: 20px;
}
h2{
    text-align: center;
}
header {
    background: linear-gradient(90deg, #232526 0%, #414345 100%);
    color: #fff;
    padding: 1rem 0 1.5rem 0;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
}

nav {
    display: flex;
    flex-direction: row;
    margin-top: 1.2rem;
    justify-content: center;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 1.5rem;
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 0.4rem 1rem;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}

nav a:hover {
    background: #070400;
    color: #feffff;
}

.grid-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.grid-gallery img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.10);
    cursor: pointer;
    background: #eaeaea;
    border: 2px solid #fff;
}

.grid-gallery img:hover {
    transform: scale(1.045) rotate(-1deg);
    box-shadow: 0 8px 40px rgba(255,152,0,0.18);
    border-color: #ff9800;
}

#lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0; width: 100vw; height: 100vh;
    background: rgba(30,32,36,0.92);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
}

#lightbox.active {
    display: flex;
}

#lightbox-img {
    max-width: 92vw;
    max-height: 88vh;
    border-radius: 18px;
    box-shadow: 0 8px 40px rgba(255,152,0,0.18);
    background: #fff;
    border: 4px solid #0b0700;
    animation: popIn 0.3s cubic-bezier(.4,2,.6,1);
}

@keyframes popIn {
    0% { transform: scale(0.92); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

section {
    max-width: 900px;
    margin: 3.5rem auto;
    padding: 2.5rem 2rem;
    background: rgba(255,255,255,0.96);
    border-radius: 20px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.09);
    border: 1.5px solid #e0e7ef;
}

section#about, section#contact {
    margin-top: 2.5rem;
}

h2 {
    margin-top: 0;
    color: #232526;
    font-size: 2.3rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    margin-bottom: 1.2rem;
}

footer {
    text-align: center;
    color: #b0b5be;
    padding: 2.5rem 0 1.5rem 0;
    background: linear-gradient(90deg, #232526 0%, #414345 100%);
    margin-top: 3.5rem;
    font-size: 1.05rem;
    letter-spacing: 0.12em;
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin: 2.5rem 0;
}
.column {
    flex: 1 1 220px;
    max-width: 260px;
    margin: 0 0.7rem;
}
.column img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.10);
    cursor: pointer;
    transition: transform 0.25s cubic-bezier(.4,2,.6,1), box-shadow 0.25s;
    background: #eaeaea;
    border: 2px solid #fff;
}
.column img:hover, .hover-shadow:hover {
    transform: scale(1.045) rotate(-1deg);
    box-shadow: 0 8px 40px rgba(255,152,0,0.18);
    border-color: #ff9800;
}
.modal {
    display: none;
    position: fixed;
    margin-left: 15vw;
    z-index: 1000;
    left: 0; top: 0; width: 70vw; height: 100vh;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
}
.modal-content {
    position: relative;
    margin: auto;
    padding-top: 50px;
    width: 92vw;
    max-height: 92%;
    background: rgba(30,32,36,0.98);
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(255,152,0,0.18);
    border: 2px solid #ff9800;
    animation: popIn 0.3s cubic-bezier(.4,2,.6,1);
    padding: 0 10px 10px 10px;
}
.mySlides {
    display: none;
    text-align: center;
    animation: fadeIn 0.5s;
}
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.98);}
    to { opacity: 1; transform: scale(1);}
}
.modal-main-img {
    width: 100%;
    max-width: 650px;
    height: 420px;
    object-fit: cover;
    border-radius: 16px;
    margin: 0 auto;
    background: #111;
    border: 3px solid #fff;
    box-shadow: 0 8px 40px rgba(255,152,0,0.18), 0 4px 32px rgba(0,0,0,0.13);
    transition: box-shadow 0.22s, border 0.22s;
}
.active, .demo:hover {
    opacity: 1;
    border: 2px solid #ff9800;
}
.demo {
    opacity: 0.7;
    width: 90px;
    height: 68px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.2s, opacity 0.2s, box-shadow 0.2s;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.demo.active, .demo:hover {
    opacity: 1;
    border: 2.5px solid #ff9800;
    box-shadow: 0 4px 16px rgba(255,152,0,0.13);
}
.thumbnails-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 2rem 0 1.2rem 0;
    gap: 14px;
    box-sizing: border-box;
}
.caption-container {
    text-align: center;
    background: linear-gradient(90deg, #232526 0%, #414345 100%);
    padding: 1.2rem 0;
    color: #fff;
    font-size: 1.15rem;
    border-radius: 0 0 14px 14px;
    letter-spacing: 0.01em;
    font-weight: 500;
}
.close {
    position: absolute;
    top: 10px;
    right: 24px;
    color: #fff;
    font-size: 44px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: color 0.2s;
}
.close:hover {
    color: #ff9800;
}
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 18px;
    margin-top: -54px;
    color: #fff;
    font-weight: bold;
    font-size: 36px;
    user-select: none;
    border-radius: 0 4px 4px 0;
    background: rgba(0,0,0,0.32);
    transition: background 0.2s, color 0.2s;
}
.next {
    right: 0;
    border-radius: 4px 0 0 4px;
}
.prev:hover, .next:hover {
    background: rgba(255,152,0,0.5);
    color: #232526;
}
.numbertext {
    color: #fff;
    font-size: 1.05rem;
    padding: 10px 14px;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0 0 12px 0;
    font-weight: 600;
}

.albums-list {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  margin: 2.5rem 0;
  flex-wrap: wrap;
}
.album-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
  text-align: center;
  padding: 1.5rem 2rem 2rem 2rem;
  transition: box-shadow 0.25s, transform 0.22s, background 0.1s;
  cursor: pointer;
  width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1.5px solid #e0e7ef;
  position: relative;
  overflow: hidden;
}
.album-card:hover {
  box-shadow: 0 8px 40px rgba(255,152,0,0.18), 0 2px 16px rgba(0,0,0,0.10);
  transform: translateY(-8px) scale(1.04) rotate(-1deg);
  background: linear-gradient(120deg, #fffbe6 0%, #f8fafc 100%);
  border-color: #ff9800;
}
.album-card h3 {
  margin: 0;
  font-size: 1.25rem;
  color: #232526;
  font-weight: 800;
  letter-spacing: 0.03em;
  margin-top: 0.7rem;
  transition: color 0.2s;
}
.album-card:hover h3 {
  color: #ff9800;
}

.album-cover-box {
  width: 220px;
  height: 160px;
  background: linear-gradient(135deg, #e0e7ef 0%, #fff 100%);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  border: 1.5px solid #e0e7ef;
  transition: box-shadow 0.22s, border 0.22s;
}
.album-card:hover .album-cover-box {
  box-shadow: 0 8px 40px rgba(255,152,0,0.18);
  border-color: #050300;
}
.album-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  transition: transform 0.22s;
}
.album-card:hover .album-cover {
  transform: scale(1.05) rotate(-1deg);
}

.modal-main-img {
    width: 100%;
    max-width: 650px;
    height: 420px;
    object-fit: cover;
    border-radius: 16px;
    margin: 0 auto;
    background: #111;
    border: 3px solid #fff;
    transition: box-shadow 0.22s, border 0.22s;
}
.mySlides {
    display: none;
    text-align: center;
    padding-top: 20px;
    animation: fadeIn 0.5s;
}
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.98);}
    to { opacity: 1; transform: scale(1);}
}

.demo {
    opacity: 0.7;
    width: 90px;
    height: 68px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.2s, opacity 0.2s, box-shadow 0.2s;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.demo.active, .demo:hover {
    opacity: 1;
    border: 2.5px solid #120b01;
    box-shadow: 0 4px 16px rgba(255,152,0,0.13);
}

.modal-content {
    border-radius: 22px;
    border: 2.5px solid #160d01;
}

.prev, .next {
    background: rgba(0, 0, 0, 0.18);
    color: #fff;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-right: 10px;
    top: 48%;
    margin-top: -27px;
    border: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.prev:hover, .next:hover {
    background: #ff9800;
    color: #232526;
    box-shadow: 0 4px 16px rgba(255,152,0,0.18);
}

@media (max-width: 900px) {
    .albums-list { gap: 1.2rem; }
    .album-card { width: 180px; padding: 1rem 1rem 1.2rem 1rem; }
    .album-cover-box { width: 140px; height: 100px; }
    .modal-main-img { max-width: 98vw; height: 220px; }
    .demo { width: 48px; height: 36px; }
}
@media (max-width: 700px) {
    .albums-list { flex-direction: column; align-items: center; }
    .album-card { width: 98vw; max-width: 320px; }
    .album-cover-box { width: 98vw; max-width: 320px; height: 110px; }
    .modal-main-img { max-width: 99vw; height: 140px; }
    .demo { width: 32px; height: 24px; }
    .thumbnails-row { gap: 6px; }
}
