* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    background-color: #000;
    color: #fff;
    font-family: 'Archivo', sans-serif;
    overflow-x: hidden;
}
h1, h2, h3 {
    font-family: 'Archivo', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    background: rgba(0, 0, 0, 0.3); 
    backdrop-filter: blur(10px); 
    z-index: 1000;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
#navbar.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none; 
}
.brand-name {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
    text-decoration: none;
}
.cta-btn {
    font-family: 'Archivo', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.5);
    padding: 8px 16px;
    transition: all 0.3s ease;
}
.cta-btn:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}
.hero-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
    background-color: #000;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-content-wrapper {
    position: relative; 
    z-index: 100;       
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none; 
}
.hero-title {
    font-size: 2.5rem;
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
    opacity: 0;
    animation: simpleFadeIn 0.8s ease-out forwards;
    animation-delay: 0.2s;
}
.masonry-grid {
    position: absolute;
    display: flex;
    gap: 15px;
    width: 140%; 
    height: 120%;
    justify-content: center;
    align-items: center;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(125deg, rgb(0, 0, 0) 0%, rgb(15, 15, 15) 100%);
    animation: epicEntrance 2.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.m-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0; 
}
.m-item {
    width: 100%;
}
.m-item img {
    width: 100%;
    min-height: 250px; 
    object-fit: cover;
    opacity: 0.6;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 2; 
    pointer-events: none; 
}
.hero-cta {
    pointer-events: auto !important; 
    cursor: pointer !important;
    font-family: 'Archivo', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.8);
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    opacity: 0;
    animation: simpleFadeIn 0.8s ease-out forwards;
    animation-delay: 0.7s;
}
.hero-cta:hover {
    background: #fff;
    color: #000;
}
@keyframes simpleFadeIn {
    from { 
        opacity: 0; 
        filter: blur(10px); 
    }
    to { 
        opacity: 1; 
        filter: blur(0); 
    }
}
.col-1 { 
    margin-top: -8%;
    animation: col1-entrance 1.8s ease forwards, 
               driftUpCol1 6s ease-in-out 1.8s infinite alternate; 
}
.col-2 { 
    margin-top: 12%;
    animation: col2-entrance 1.8s ease forwards, 
               driftDownCol2 8s ease-in-out 1.8s infinite alternate; 
}
.col-3 { 
    margin-top: -2%;
    animation: col3-entrance 1.8s ease forwards, 
               driftUpCol3 7s ease-in-out 1.8s infinite alternate; 
}
.col-4 { 
    margin-top: 15%;
    animation: col4-entrance 1.8s ease forwards, 
               driftDownCol4 9s ease-in-out 1.8s infinite alternate; 
}
.col-5 { 
    margin-top: -12%;
    animation: col5-entrance 1.8s ease forwards, 
               driftUpCol5 10s ease-in-out 1.8s infinite alternate; 
}
@keyframes col1-entrance {
    from { opacity: 0; transform: translateY(100px); }
    to { opacity: 1; transform: translateY(-30px); }
}
@keyframes col2-entrance {
    from { opacity: 0; transform: translateY(-100px); }
    to { opacity: 1; transform: translateY(50px); }
}
@keyframes col3-entrance {
    from { opacity: 0; transform: translateY(80px); }
    to { opacity: 1; transform: translateY(30px); }
}
@keyframes col4-entrance {
    from { opacity: 0; transform: translateY(-120px); }
    to { opacity: 1; transform: translateY(70px); }
}
@keyframes col5-entrance {
    from { opacity: 0; transform: translateY(90px); }
    to { opacity: 1; transform: translateY(-60px); }
}
@keyframes driftUpCol1 { from { transform: translateY(-30px); opacity: 1; } to { transform: translateY(-60px); opacity: 1; } }
@keyframes driftDownCol2 { from { transform: translateY(50px); opacity: 1; } to { transform: translateY(80px); opacity: 1; } }
@keyframes driftUpCol3 { from { transform: translateY(30px); opacity: 1; } to { transform: translateY(-10px); opacity: 1; } }
@keyframes driftDownCol4 { from { transform: translateY(70px); opacity: 1; } to { transform: translateY(100px); opacity: 1; } }
@keyframes driftUpCol5 { from { transform: translateY(-60px); opacity: 1; } to { transform: translateY(-90px); opacity: 1; } }
@keyframes epicEntrance {
    0% { transform: translateX(-10%) translateZ(-500px) rotateY(15deg); }
    100% { transform: translateX(0) translateZ(0) rotateY(0deg); }
}
@media (min-width: 769px) {
    .masonry-grid {
        width: 110%; 
    }
}
.spacer {
    height: 100vh; 
    width: 100%;
}
.content-layer {
    background-color: #000;
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1.2fr 1.8fr; 
    grid-template-areas: "content slider";
    padding: 100px 0; 
    min-height: 50vh;
    overflow: hidden;
}
.slider-container {
    grid-area: slider;
    width: 100%;
    z-index: 10; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.slider-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.slide {
    flex-shrink: 0;
    width: 80%; 
    padding-right: 40px; 
    box-sizing: border-box;
}
.slide img {
    width: 100%;
    max-width: 100%; 
    max-height: 70vh; 
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}
.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 30;
}
.nav-dash {
    width: 45px;
    height: 2px;
    background: #333;
    cursor: pointer;
    transition: background 0.4s;
}
.nav-dash.active {
    background: #fff;
}
@media (max-width: 1024px) {
    .content-layer {
        display: flex; 
        flex-direction: column; 
        height: auto;
        min-height: auto;
    }
    .slider-container {
        order: 1; 
        height: auto;
        margin-top: 40px;
    }
    .slide {
        width: 85vw; 
    }
    .slide img {
        aspect-ratio: 1 / 1; 
    }
    .slider-track {
        
        padding-left: 20px; 
    }
    .slider-nav {
        order: 2; 
        position: relative;
        bottom: 0;
        left: 0;
        transform: none;
        margin: 20px 0;
        justify-content: center;
    }
    .content-text-area {
        order: 3; 
        padding: 20px 8% 60px 8%;
        text-align: left; 
        background: transparent;
    }
    .dest-title, .dest-subtitle {
        text-align: left; 
    }
}
.dest-body-text a {
    color: #fff;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3); 
    transition: border-color 0.3s ease;
}
.dest-body-text a:hover {
    border-bottom: 1px solid rgba(255, 255, 255, 1); 
}
.dest-title {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-family: 'Archivo', sans-serif;
}
.dest-subtitle {
    font-style: italic;
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 40px;
}
.content-text-area {
    grid-area: content;
    background-color: #000;
    z-index: 20;
    padding: 80px 10% 80px 15%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.content-text-area p:not(.dest-subtitle) {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #ccc;
    max-width: 450px; 
}
.content-text-area h3:not(.dest-title) {
    font-size: 2rem;
    margin-bottom: 20px;
}
#contact {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    width: 100%;
    background-image: url('/img/krzysztof-dubiel-hQBIJsBtyBw-unsplash.webp');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 140px;
    padding-bottom: 80px;
}
@media (max-width: 1024px) {
    #contact {
        position: relative;
        clip-path: inset(0 0 0 0); 
        -webkit-clip-path: inset(0 0 0 0);
        background-image: none !important;
        isolation: isolate;
        z-index: 1;
    }
    #contact::before {
        content: "";
        position: fixed; 
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('/img/krzysztof-dubiel-hQBIJsBtyBw-unsplash.webp');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: -1;
        transform: translateZ(0);
        backface-visibility: hidden;
    }
}
#subcategory-select {
    display: none; 
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    margin-bottom: 0;
    z-index: 99;
}
#subcategory-select.visible {
    display: block; 
    opacity: 1;
    transform: translateY(0);
    margin-bottom: 30px;
}
.form-container {
    position: relative;
    z-index: 20;
    width: 90%;          
    max-width: 600px;    
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    padding: 60px 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0 auto;      
}
.form-title {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #fff;
}
.form-subtitle {
    font-family: 'Archivo', sans-serif;
    color: #aaa;
    margin-bottom: 40px;
    font-size: 0.9rem;
    letter-spacing: 1px;
}
.input-row {
    display: flex;
    gap: 20px;
    margin-bottom: 10px; 
}
.input-group {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    text-align: left;
}
input, textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 0;
    color: #fff;
    font-family: 'Archivo', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
    border-radius: 0;
}
input:focus, textarea:focus {
    border-bottom-color: #fff;
}
.input-group label {
    position: absolute;
    top: 10px;
    left: 0;
    color: #666;
    pointer-events: none;
    transition: 0.3s ease all;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
input:focus ~ label,
input:not(:placeholder-shown) ~ label,
textarea:focus ~ label,
textarea:not(:placeholder-shown) ~ label {
    top: -20px;
    font-size: 0.7rem;
    color: #fff;
}
.custom-select-wrapper {
    position: relative;
    z-index: 100; 
    user-select: none;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    margin-bottom: 30px;
}
.custom-select-trigger {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-family: 'Archivo', sans-serif;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}
.custom-select-trigger:hover {
    border-bottom-color: #fff;
}
.custom-select-trigger .arrow {
    width: 0; 
    height: 0; 
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #fff;
    transition: 0.3s;
}
.custom-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.1);
    z-index: 999 !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    max-height: 250px;
    overflow-y: auto;
}
.custom-select-wrapper.open .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
}
.custom-select-wrapper.open .arrow {
    transform: rotate(180deg);
}
.custom-option {
    display: block;
    padding: 15px;
    font-family: 'Archivo', sans-serif;
    font-size: 0.9rem;
    color: #aaa;
    cursor: pointer;
    transition: 0.2s;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.custom-option:hover {
    color: #fff;
    background: rgba(255,255,255,0.05);
}
.submit-btn {
    margin-top: 20px;
    display: block;      
    margin-left: auto;   
    margin-right: auto;
    width: auto;         
    min-width: 200px;    
    padding: 12px 35px;  
    background: transparent;
    border: 1px solid rgba(255,255,255,0.5);
    color: #fff;
    font-family: 'Archivo', sans-serif;
    font-size: 0.85rem;  
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
}
.submit-btn:hover {
    background: #fff;
    color: #000;
}
@media(max-width: 768px) {
    .input-row { flex-direction: column; gap: 0; }
    .form-container {
        margin-top: 20px;
        padding: 30px 20px; 
        width: 92%;         
    }
    .form-title {
        font-size: 1.6rem;  
    }
    .submit-btn {
        width: 100%;
        max-width: max-content; 
    }
}
.message-group {
    position: relative;
    z-index: 1; 
}
.dual-selects {
    display: flex !important; 
    flex-direction: row !important; 
    gap: 20px;
    width: 100%;
    margin-bottom: 10px;
}
.dual-selects .custom-select-wrapper {
    flex: 1; 
    min-width: 0; 
}
textarea {
    resize: none; 
}
.input-group:nth-child(1) { z-index: 100; }
.input-row.dual-selects { z-index: 90; }
#category-select { z-index: 80; }
#subcategory-select { z-index: 70; }
.message-group { z-index: 10; }
@media (max-width: 800px) {
    .dual-selects {
        gap: 10px; 
    }
    .dual-selects .custom-select-trigger span {
        font-size: 0.9rem; 
    }
}
footer {
    position: relative;
    z-index: 10;
    background: #000;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-links a:link{
    color: rgb(165, 165, 165);
    text-decoration: none;
    font-size: 0.8rem;
    margin: 0 10px;
    text-transform: uppercase;
    transition: color 0.3s;
}
.footer-links a:visited{
    color: rgb(165, 165, 165);
    text-decoration: none;
    font-size: 0.8rem;
    margin: 0 10px;
    text-transform: uppercase;
    transition: color 0.3s;
}
.footer-links a:hover { color: #fff; }
.copyright {
    color: #444;
    font-size: 0.7rem;
    margin-top: 20px;
}
.custom-select-wrapper.error, 
.input-group input.error, 
.input-group textarea.error {
    border-bottom: 1px solid #ff4d4d !important;
    transition: border-color 0.3s ease;
}
#error-message {
    color: #ff4d4d;
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 15px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    height: 10px; 
}
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}
#error-message.visible {
    opacity: 1;
    animation: shake 0.3s ease-in-out;
}
#fname.error, #lname.error, #email.error, textarea.error {
    border-bottom: 1px solid #ff4d4d !important;
}
.error {
    border-bottom: 1px solid #ff4d4d !important;
}
input.error {
    border-bottom: 2px solid #ff4d4d !important;
}
textarea[name="message"].error {
    border-bottom: 1px solid #ff4d4d !important;
}
.legal-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('/img/krzysztof-dubiel-hQBIJsBtyBw-unsplash.webp');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}
.legal-section {
    padding-top: 140px; 
    padding-bottom: 80px;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}
.legal-box {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 90%;
    max-width: 800px;
    padding: 0; 
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.legal-header {
    position: -webkit-sticky;
    position: sticky;
    top: 70px;
    z-index: 100;
    background: transparent; 
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 25px 40px;
    background: linear-gradient(to bottom,rgba(0,0,0,0.8) 0%,rgba(0,0,0,0.8) 60%,rgba(0,0,0,0) 100%);
}
.legal-body {
    padding: 40px;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.legal-body h1.dest-title {
    color: #fff;
    margin-bottom: 20px;
    font-size: 2rem;
    padding-left: 0;
    margin-top: 0;
}
.legal-content {
    white-space: normal;
    color: #ccc;
    line-height: 1.8;
    font-size: 0.95rem;
}
.back-nav {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-family: 'Archivo', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}
.back-nav:hover {
    color: #fff;
}
.arrow-left {
    width: 0; 
    height: 0; 
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 8px solid currentColor;
}
.legal-content ul {
    white-space: normal; 
    margin: 10px 0 20px 20px;
    padding: 0;
    list-style-type: square;
}
.legal-content h2 {
    margin-top: 15px;
    margin-bottom: 10px;
}
.legal-content li {
    margin-bottom: 5px;
    margin-left: 10px;
    color: #ccc;
}
.legal-content a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: opacity 0.3s;
}
.legal-content a:hover {
    opacity: 0.7;
}
.privacy-note{
    color:rgb(145, 145, 145);
    font-size:12px;
    margin-top: 20px;
}
.privacy-note a:link{
    color: rgb(165, 165, 165);
}
.privacy-note a:visited{
    color: rgb(165, 165, 165);
}
.privacy-note a:hover{
    transition: all 0.2s ease;
    color: #fff;
}
.info-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('/img/krzysztof-dubiel-hQBIJsBtyBw-unsplash.webp');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}
.info-section {
    padding-top: 140px; 
    padding-bottom: 80px;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}
.info-box {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 90%;
    max-width: 800px;
    padding: 0; 
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.info-header {
    position: -webkit-sticky;
    position: sticky;
    top: 70px;
    z-index: 100;
    background: transparent; 
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 25px 40px;
    background: linear-gradient(to bottom,rgba(0,0,0,0.8) 0%,rgba(0,0,0,0.8) 60%,rgba(0,0,0,0) 100%);
}
.info-body {
    padding: 40px;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.info-body h1.dest-title {
    color: #fff;
    margin-bottom: 20px;
    font-size: 2rem;
    padding-left: 0;
    margin-top: 0;
}
.info-content {
    white-space: normal;
    color: #ccc;
    line-height: 1.8;
    font-size: 0.95rem;
}
.info-content ul {
    white-space: normal; 
    margin: 10px 0 20px 20px;
    padding: 0;
    list-style-type: square;
}
.info-content h2 {
    margin-top: 15px;
    margin-bottom: 10px;
}
.info-content li {
    margin-bottom: 5px;
    margin-left: 10px;
    color: #ccc;
}
.info-content a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: opacity 0.3s;
}
.info-content a:hover {
    opacity: 0.7;
}