@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@300;400;500&display=swap');

@font-face {
    font-family: 'Cera Pro';
    src: url('fonts/CeraPro-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cera Pro';
    src: url('fonts/CeraPro-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TheSeasons';
    src: url('fonts/TheSeasons-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #AA8A00;    /* Gold */
    --secondary-color: #000000;  /* Pure black background */
    --accent-color: #C5A880;     /* Keeping soft gold as accent */
    --text-color: #AA8A00;       /* Using primary color for text */
    --border-color: #AA8A00;     /* Using primary color for borders */
    
    /* Font variables */
    --title-font: 'Cera Pro', 'Noto Sans', sans-serif;
    --body-font: 'Cera Pro', 'Noto Sans', sans-serif;
}

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

body {
    font-family: var(--body-font);
    line-height: 1.6;
    background-color: var(--secondary-color);
    color: var(--text-color);
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.language-switcher {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.lang-btn {
    background: none;
    border: 0.5px solid var(--primary-color);
    cursor: pointer;
    font-size: 1rem;
    padding: 0.3rem 0.8rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 0;
    font-family: var(--body-font);
    font-weight: 300;
}

.lang-btn:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.service-container {
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    padding: 2rem;
    border-radius: 4px;
}

.service-card {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    max-width: 250px;
    transition: transform 0.3s ease;
}

.service-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 0.5rem;
    filter: brightness(0) saturate(100%) invert(58%) sepia(75%) saturate(463%) hue-rotate(12deg) brightness(89%) contrast(102%);
}

.service-title {
    margin: 0;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-family: var(--title-font);
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 0.5px solid var(--primary-color);
    padding: 0.5rem 1rem;
    text-align: center;
    min-width: 200px;
}

.menu-footer {
    margin-top: 0;
    width: 100%;
    text-align: center;
    color: #FAF7F7;
    padding: 1rem 0.5rem;
    font-size: 0.8rem;
    line-height: 1;
}

.menu-footer .first-line {
    font-family: 'TheSeasons', sans-serif;
    font-weight: 300;
    display: block;
    font-size: 0.7rem;
}

.menu-footer .second-line {
    font-family: 'Cera Pro', sans-serif;
    font-weight: 300;
    display: block;
}

footer {
    padding: 2rem 2rem 0;
    text-align: center;
    border-top: 1px solid var(--primary-color);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-link {
    text-decoration: none;
    color: #FAF7F7;
    border: 0.5px solid var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 0;
    transition: all 0.3s ease;
    font-family: var(--body-font);
    font-weight: 300;
}

.footer-link:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

@media (max-width: 600px) {
    .menu-title {
        margin: 6rem 0 3rem;
        font-size: 1.8rem;
    }
    
    .service-container {
        gap: 2.5rem;
    }
    
    .service-title {
        font-size: 0.8rem;
        min-width: 180px;
    }
}

.back-btn {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.1rem;
}

.service-detail-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    padding: 2rem;
    border-radius: 4px;
}

.menu-section {
    margin: 2rem 0;
    padding: 1rem;
    border: 0.5px solid var(--border-color);
    border-radius: 0;
}

.menu-item {
    margin: 1rem 0;
    padding-bottom: 1rem;
    border-bottom: 0.5px solid var(--border-color);
}

.menu-item:last-child {
    border-bottom: none;
}

.price {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.menu-item p {
    color: var(--primary-color);
}

a {
    color: var(--primary-color);
}

.contact {
    color: var(--primary-color);
}

h1, h2, h3 {
    font-family: var(--title-font);
}

[lang="bg"] {
    font-family: 'Noto Sans', sans-serif;
}

/* Add these new styles for the splash page */
.splash-container {
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    position: relative;
    z-index: 2;
    border-radius: 0;
}

.splash-content {
    text-align: center;
    margin-top: 12rem;
    width: 100%;
}

.splash-title {
    font-family: var(--title-font);
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    letter-spacing: 2px;
}

.splash-buttons {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.splash-btn {
    text-decoration: none;
    color: var(--primary-color);
    border: 0.5px solid var(--primary-color);
    padding: 0.8rem;
    font-size: 1.2rem;
    width: 250px;
    display: inline-block;
    transition: all 0.3s ease;
    font-family: var(--body-font);
    font-weight: 300;
}

.splash-btn:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

@media (max-width: 600px) {
    .splash-btn {
        width: 200px;
        padding: 0.6rem;
        font-size: 1rem;
    }
    
    .splash-title {
        font-size: 2.5rem;
    }
    .logo {
        max-width: 150px;
    }
    .mgallery-logo {
        max-width: 90px;
    }
    .splash-content {
        margin-top: 10rem;
    }
}

.logo {
    max-width: 140px;
    height: auto;
    margin-bottom: 0;
    filter: brightness(0) invert(1);
}

.mgallery-logo {
    max-width: 100px;
    height: auto;
}

.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-logo {
    max-width: 200px;
    height: auto;
    filter: brightness(0) invert(1);
    animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes fadeInOut {
    0% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.3;
    }
}

.main-content {
    opacity: 0;
    transition: opacity 0.5s ease-in;
}

.main-content.show {
    opacity: 1;
}

.video-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--secondary-color);
    z-index: 9998;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.video-animation video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transform: none;
}

/* Update mobile styles */
@media (max-width: 600px) {
    .video-animation video {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
}

/* Remove or update portrait orientation styles */
@media (orientation: portrait) {
    .video-animation video {
        width: 100%;
        height: 100%;
    }
}

.menu-title {
    text-align: center;
    color: #FAF7F7;
    font-size: 2rem;
    margin: 3rem 0;
    font-family: 'TheSeasons', sans-serif;
    font-weight: 300;
}

/* Update mobile styles */
@media (max-width: 600px) {
    .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.3rem;
    }
}

.background-video {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.background-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100vw;
    min-height: 100vh;
    width: auto;
    height: auto;
    object-fit: cover;
    object-position: center;
}

.menu-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.menu-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    gap: 0.5rem;
    width: 250px;
    opacity: 0;  /* Start hidden */
}

.menu-btn-text {
    background: none;
    border: 0.5px solid var(--primary-color);
    cursor: pointer;
    font-size: 1rem;
    padding: 0.8rem;
    color: #FAF7F7;
    transition: all 0.3s ease;
    border-radius: 0;
    font-family: var(--body-font);
    font-weight: 300;
    width: 100%;
    text-align: center;
}

.menu-btn:hover .menu-btn-text {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

@media (max-width: 600px) {
    .menu-btn {
        width: 200px;
    }
    
    .menu-btn-text {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
}

.main-header {
    width: 100%;
    padding: 1rem;
    border-bottom: 1px solid #000000;
}

.logo-container {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

/* Update existing logo styles */
.logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 0;
    filter: brightness(0) invert(1);
}

.mgallery-logo {
    max-width: 80px;
    height: auto;
}

/* Update menu title spacing */
.menu-title {
    text-align: center;
    color: #FAF7F7;
    font-size: 2rem;
    margin: 3rem 0;
    font-family: 'TheSeasons', sans-serif;
    font-weight: 300;
}

/* Keep existing mobile styles but update as needed */
@media (max-width: 600px) {
    .logo {
        max-width: 90px;
    }
    .mgallery-logo {
        max-width: 60px;
    }
    .menu-title {
        margin: 2rem 0;
        font-size: 2.5rem;
    }
}

/* Add animation keyframes */
@keyframes floatUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Add animation class */
.menu-btn.animate {
    animation: floatUp 0.5s ease-out forwards;
}

.skip-text {
    position: fixed;
    bottom: 150px;
    left: 50%;
    transform: translateX(-50%);
    color: #FAF7F7;
    font-family: 'TheSeasons', sans-serif;
    font-weight: 300;
    opacity: 0;
    animation: fadeInOut 3s ease-out forwards;
    animation-delay: 0s;
    z-index: 9999;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
    }
    5% {
        opacity: 0.3;
    }
    85% {
        opacity: 0.3;
    }
    100% {
        opacity: 0;
    }
}

.additional-languages .splash-btn {
    font-size: 0.9em;
    padding: 8px 20px;
}

.main-icon {
    display: block;
    margin: -1rem auto 2rem;
    width: 55px;
    height: 55px;
    filter: brightness(0) saturate(100%) invert(58%) sepia(75%) saturate(463%) hue-rotate(12deg) brightness(89%) contrast(102%);
}

.menu-btn.no-icon {
    gap: 0;  /* Remove gap since there's no icon */
    width: 250px;
    opacity: 0;  /* Start hidden for animation */
}

.menu-btn.no-icon .menu-btn-text {
    background: none;
    border: 0.5px solid var(--primary-color);
    cursor: pointer;
    font-size: 1rem;
    padding: 0.8rem;
    color: #FAF7F7;
    transition: all 0.3s ease;
    border-radius: 0;
    font-family: var(--body-font);
    font-weight: 300;
    width: 100%;
    text-align: center;
}

.menu-btn.no-icon:hover .menu-btn-text {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

@media (max-width: 600px) {
    .menu-btn.no-icon {
        width: 200px;
    }
    
    .menu-btn.no-icon .menu-btn-text {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
}

.back-button {
    display: block;
    text-align: center;
    margin: 1rem auto;
    color: #FAF7F7;
    font-family: 'Cera Pro', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    text-decoration: none;
    border: 0.5px solid var(--primary-color);
    padding: 0.5rem 1.5rem;
    width: fit-content;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-button:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}