```css
/* =========================
   RESET & GLOBAL STYLES
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #E0E0E0;
    background-color: #030303;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================
   CLOCK
========================= */
.clock {
    border-radius: 12px;
    text-align: center;
}

#time {
    font-size: 2rem;
    font-weight: bold;
    color: #9f63ff;
}

#date {
    font-size: 1.2rem;
    color: #8e61ff;
}

/* =========================
   CENTERED NAVIGATION FIX
========================= */

header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    display: grid;
    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    padding: 15px 40px;

    background: rgba(0, 0, 0, 0.642);

    z-index: 9999;
}

/* Logo aligned left */
.logo {
    justify-self: start;
}

.logo img {
    width: 120px;
    height: auto;
}

/* Navigation perfectly centered */
#nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 40px;

    grid-column: 2;
}

/* Navigation links */
#nav-menu a {
    color: #ffffff;

    text-decoration: none;

    font-size: 1.1rem;
    font-weight: 600;

    white-space: nowrap;

    transition: color 0.3s ease;
}

#nav-menu a:hover {
    color: #884dff;
}

#nav-menu a.pageactive {
    color: #9f63ff;
    text-decoration: underline;
}

/* Hamburger hidden desktop */
.hamburger {
    display: none;

    justify-self: end;

    background: none;
    border: none;

    color: white;

    font-size: 2rem;

    cursor: pointer;
}

/* =========================
   MOBILE NAVIGATION
========================= */

@media (max-width: 900px) {

    header {
        grid-template-columns: 1fr auto;
    }

    .hamburger {
        display: block;
    }

    #nav-menu {
        display: none;

        position: absolute;

        top: 90px;
        right: 20px;

        flex-direction: column;
        align-items: flex-start;

        background: #111111;

        padding: 20px;

        border-radius: 12px;

        width: 250px;

        box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    }

    #nav-menu.active {
        display: flex;
    }

    #nav-menu a {
        width: 100%;
        padding: 10px 0;
    }

    .logo img {
        width: 90px;
    }
}

/* =========================
   HERO SLIDESHOW
========================= */
.slideshow {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center;

    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.overlay {
    position: absolute;
    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    text-align: center;

    background: rgba(0, 0, 0, 0.35);

    padding: 30px;
    border-radius: 20px;

    width: 90%;
    max-width: 900px;

    box-shadow: 0 5px 20px rgba(114, 38, 246, 0.5);
}

.Title {
    color: #ffffff;
    margin-bottom: 10px;
}

.overlay h1 {
    font-size: 3rem;
}

.overlay p {
    font-size: 1.2rem;
}

/* =========================
   GENERAL SECTIONS
========================= */
section {
    padding: 80px 20px;
    scroll-margin-top: 120px;
}

h1,
h2,
h3 {
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

/* =========================
   ABOUT SECTION
========================= */
.about {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 40px;

    background: #2C2C2C;

    border-radius: 15px;

    margin: 40px 20px;
}

.aboutmetxt {
    flex: 1;
    min-width: 280px;
}

.about-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
}

.profile {
    width: 320px;
    height: auto;

    border-radius: 20px;
    border: 3px solid #7d5ce8;

    box-shadow: 0 5px 20px rgba(148, 97, 220, 0.7);
}

.myStoryH1 {
    margin-top: 150px;
    text-align: center;
}

/* =========================
   SERVICES SECTION
========================= */
.services {
    text-align: center;
    background: #505050;

    margin: 25px 0;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

    gap: 30px;

    margin-top: 40px;
}

.service-card {
    background: #303030;

    border-radius: 15px;

    padding: 30px 20px;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(172, 95, 232, 0.4);
}

.service-card i {
    width: 80px;
    height: 80px;

    display: grid;
    place-items: center;

    margin: 0 auto 20px;

    border-radius: 12px;

    background: #2C2C2C;

    color: #ffffff;

    font-size: 2rem;

    box-shadow: 0 4px 10px rgba(110, 12, 190, 0.45);
}

.service-card h3 {
    margin-bottom: 10px;
}

/* =========================
   BUTTONS
========================= */
.bookShortcut {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    margin-top: 20px;

    padding: 12px 20px;

    background: #2e2e2e;
    color: #d0bff8;

    border-radius: 10px;

    text-decoration: none;
    font-weight: bold;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bookShortcut:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(113, 42, 255, 0.5);
}

/* =========================
   GALLERY PAGE
========================= */
.GalleryPage {
    background: #030303;
}

.gallery-intro {
    margin-top: 120px;
    text-align: center;
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    gap: 20px;

    margin-top: 30px;
}

.gallery-container img {
    width: 280px;

    border-radius: 15px;

    cursor: pointer;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-container img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(129, 115, 212, 0.4);
}

.PhotographyGallery {
    text-align: center;

    background: #252323;

    padding: 10px;

    border-radius: 10px;

    color: #a4a3c1;
}

/* =========================
   FILTER SECTION
========================= */
.filter-section {
    margin-top: 140px;

    text-align: center;

    background: #1a1a1a;

    padding: 20px;

    border-bottom: 1px solid #333;
}

.filter-toggle {
    background: #2e2e2e;

    color: #d0bff8;

    border: none;

    padding: 12px 20px;

    border-radius: 10px;

    cursor: pointer;

    transition: background 0.3s ease;
}

.filter-toggle:hover {
    background: #6737d8;
}

.filter-options {
    display: none;

    margin-top: 15px;
}

.filter-options button {
    margin: 5px;

    padding: 10px 15px;

    border-radius: 8px;

    border: 1px solid #654fad;

    background: #2c2c2c;

    color: #a4a3c1;

    cursor: pointer;

    transition: background 0.3s ease;
}

.filter-options button:hover,
.filter-options button.active {
    background: #884dff;
    color: white;
}

.is-hidden {
    display: none !important;
}

/* =========================
   LIGHTBOX
========================= */
.lightbox {
    display: none;

    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.85);

    justify-content: center;
    align-items: center;

    z-index: 10000;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;

    border-radius: 10px;
}

#close {
    position: absolute;
    top: 30px;
    right: 40px;

    color: white;

    font-size: 3rem;

    cursor: pointer;
}

/* =========================
   CONTACT SECTION
========================= */
.contact-section {
    max-width: 700px;

    margin: 40px auto;

    background: #2C2C2C;

    padding: 30px;

    border-radius: 15px;

    box-shadow: 0 5px 10px rgba(124, 58, 255, 0.4);
}

.contact-section h2 {
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;

    gap: 20px;
}

.contact-form label {
    font-weight: bold;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;

    padding: 12px;

    border-radius: 8px;

    border: 1px solid #654fad;

    background: #1C1C1C;

    color: #ffffff;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #884dff;
    box-shadow: 0 0 5px rgba(136, 77, 255, 0.6);
}

.contact-form button {
    background: #884dff;

    color: white;

    border: none;

    padding: 12px;

    border-radius: 8px;

    cursor: pointer;

    font-weight: bold;

    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #6737d8;
}

.status-message {
    text-align: center;
    font-weight: bold;
}

/* =========================
   MAP SECTION
========================= */
.map-container {
    position: relative;

    width: 100%;

    padding-bottom: 40%;

    overflow: hidden;

    border-radius: 15px;

    margin-top: 20px;
}

.map-container iframe {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    border: 0;
}

/* =========================
   SOCIAL MEDIA
========================= */
.socials {
    display: flex;
    justify-content: center;

    gap: 20px;

    margin-bottom: 20px;
}

.socials a {
    color: #a4a3c1;

    font-size: 1.8rem;

    transition: transform 0.3s ease, color 0.3s ease;
}

.socials a:hover {
    color: #884dff;
    transform: scale(1.1);
}

/* =========================
   FOOTER
========================= */
footer {
    text-align: center;

    background: #2C2C2C;

    padding: 30px 20px;

    border-radius: 15px 15px 0 0;

    margin-top: 50px;
}

footer a {
    color: #d0bff8;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* =========================
   COOKIE BANNER
========================= */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;

    width: 100%;

    background: #2e2e2e;

    color: white;

    text-align: center;

    padding: 15px;

    z-index: 9999;
}

#cookie-banner button {
    margin-left: 10px;

    padding: 8px 12px;

    border: none;

    border-radius: 6px;

    background: #884dff;

    color: white;

    cursor: pointer;
}

#cookie-banner button:hover {
    background: #6737d8;
}

/* =========================
   RESPONSIVE DESIGN
========================= */
@media (max-width: 992px) {

    .overlay h1 {
        font-size: 2.3rem;
    }

    .overlay p {
        font-size: 1rem;
    }

    .map-container {
        padding-bottom: 60%;
    }
}

@media (max-width: 768px) {

    .hamburger {
        display: block;
    }

    #nav-menu {
        display: none;

        flex-direction: column;

        position: absolute;
        top: 80px;
        right: 20px;

        background: #1c1c1c;

        padding: 20px;

        border-radius: 12px;
    }

    #nav-menu.active {
        display: flex;
    }

    .overlay h1 {
        font-size: 1.8rem;
    }

    .overlay p {
        font-size: 0.95rem;
    }

    .about {
        flex-direction: column;
        text-align: center;
    }

    .gallery-container {
        flex-direction: column;
        align-items: center;
    }

    .profile {
        width: 220px;
    }

    .map-container {
        padding-bottom: 70%;
    }
}

@media (max-width: 576px) {

    .overlay {
        padding: 20px;
    }

    .overlay h1 {
        font-size: 1.5rem;
    }

    .overlay p {
        font-size: 0.9rem;
    }

    .contact-section {
        margin: 20px;
        padding: 20px;
    }

    .map-container {
        padding-bottom: 80%;
    }

    #time {
        font-size: 1.2rem;
    }

    #date {
        font-size: 0.8rem;
    }
}

