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

html, body {
    height: 100%;
    margin: 0;
    background: #1c1c1c;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

/* 400 to 900 */
.playfair-display-header {
   font-family: "Playfair Display", serif;
   font-optical-sizing: auto;
   font-weight: 600;
   font-style: normal;
}
.playfair-display-header::selection {
    background: rgba(240, 190, 120, 0.6);
}

.playfair-display-body {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
.playfair-display-body::selection {
    background: rgba(240, 190, 120, 0.6);
}

.desktop-hide {
    display: none !important;
}
@media (max-width: 425px) {
    .mobile-hide {
        display: none !important;
    }
    .desktop-hide {
        display: inherit !important;
    }
}

.courier-new {
    font-family: 'Courier New', monospace;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
.courier-new::selection {
    background: rgba(240, 190, 120, 0.6);
}

.horizontal-container {
    display: flex;
    flex-direction: row;
}

.vertical-container {
    display: flex;
    flex-direction: column;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 998;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: #f7f7f7;
    text-align: center;
    background: #0000006b;
    width: auto;
    height: 3rem;
    border-radius: 10px 10px 10px 10px;
    margin: 2rem 2rem 2rem 2rem;
    overflow: hidden;
}
@media (max-width: 425px) {
    header {
        margin: 1.5rem 0.5rem 0.5rem 0.5rem;
        left: auto;
    }
    header a {
        font-size: 1rem !important;
        padding: 0.2rem 0.35rem 0.2rem 0.35rem !important;
    }
    header img {
        height: 2rem;
    }
}

nav {
    position: relative; /* <-- containment context */
    overflow: hidden;   /* <-- clip cursor */
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

header a {
    color: #f7f7f7;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 0.2rem 1rem 0.2rem 1rem;
}
header img {
    height: 2.5rem;
    position: relative;
    top: 3px;
}

main {
    font-size: 1.2rem;
    color: #f7f7f7;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5rem;
    padding-top: 4rem;
    flex: 1;
}
@media (max-width: 425px) {
    main {
        padding-top: 1rem;
    }
}

footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    padding: 1rem;
    color: #f7f7f7;
    text-align: center;
    background-color: #000000;
}

.background-image {
    width: 100%;
    height: 100%;
    background-image: url('../images/hero.webp');
    background-attachment: scroll;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: 0;
    overflow: hidden;
}
@media (max-width: 425px) {
    .background-image {
        background-position-y: -100px;
    }
}

.background-gradient {
    height: 100%;
    width: 100%;
    z-index: 997; /* ensure it's above other elements */
    background: #000000;
    background: linear-gradient(rgba(255, 0, 0, 0) 0%, rgba(0,0,0,0) 15%, rgba(0,0,0, 0.5) 45%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.cursor-circle {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 190, 120, 0.7) 0%, rgba(255, 183, 76,0.15) 60%, rgba(255, 183, 76, 0) 75%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.05s ease;
    transform: translate(-50%, -50%);
    z-index: 1;
    mix-blend-mode: screen; /* optional: helps the "light" blend nicely */
}

.landing-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding-top: 5rem;
    padding-bottom: 5rem;
    position: relative;
}
@media (max-width: 425px) {
    .landing-container {
        padding-top: 3.5rem;
    }
}

.landing-container img {
    width: 40vh;
    height: auto;
    margin-top: 3rem;
    /*margin-bottom: 1rem;*/
}

.landing-text {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    align-items: center;
    border-radius: 10px;
    padding: 0 1rem 1rem 1rem;
}
.landing-text h1 {
    padding-top: 2rem;
}
@media (max-width: 425px) {
    .landing-text {
        padding-top: 2.5rem;
    }
    .landing-text h1 {
        padding-top: 0;
    }
}
.landing-text p {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.image-accordion {
    display: flex;
    height: 60vh;
    width: 100vh;
    overflow: hidden;
    border-radius: 10px;
}

.panel {
    flex: 1;
    transition: flex 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.panel:hover {
    flex: 4; /* Hover scale */
}

.panel img {
    height: 100%;
    width: auto;
    object-fit: cover;
    display: block;
    transition: all 0.4s ease;
}

.swiper-container {
    width: 90%;
    max-width: 100vw;
    height: auto;
    overflow: hidden;
    border-radius: 10px;
}

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

.swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.swiper-pagination {
    bottom: auto !important;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(37, 37, 37, 0.9);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.modal-image {
    max-width: 90%;
    max-height: 80vh;
    margin-bottom: 1rem;
}

.modal-caption {
    color: #f7f7f7;
    font-size: 1.2rem;
    text-align: center;
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 2rem;
    color: #f7f7f7;
    cursor: pointer;
}

.contact-form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    width: 30vw;
    height: auto;
    margin-bottom: 5rem;
    padding: 1rem 1rem 2rem 1rem;
    background: #00000083;
    border-radius: 10px;
}
@media (max-width: 425px) {
    .contact-form-container {
        width: 90%;
    }
}
.contact-form-container form {
    display: inherit;
    flex-direction: inherit;
    align-items: inherit;
    justify-content: inherit;
    gap: 0.5rem;
}
.contact-form-container textarea {
    width: 100%;
    height: 10rem;
    color: #f7f7f7;
    background-color: #00000083;
    border: none;
}
.contact-form-container input {
    height: 2rem;
    color: #f7f7f7;
    background-color: #00000083;
    border: none;
}
.contact-form-container button {
    height: 2rem;
    width: 100%;
    color: #f7f7f7;
    background-color: #00000083;
    border: none;
}

.contact-form-container button:hover {
    background-color: #15151583;
}
.contact-form-container button:active {
    background-color: #1c1c1c83;
}

.gradient-rounded-box {
    border-radius: 20px;
    background: radial-gradient(
            circle at center,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0) 70%
    );
    background-color: #222;
    mask-image: radial-gradient(circle, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: radial-gradient(circle, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.0) 100%);
}
