/* Reset */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body{
    background-color: #000000;
    font-family: Arial, Helvetica, sans-serif;
    overflow: hidden;
    color: #ffffff;
}

/* Header */
.top-header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 200;
    background-color: #000000;
    padding: 40px 2vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Logo */
.logo-section{
    width: 100%;
    max-width: 1200px;                  /* Zabezpiecza na ultra szerokie ekrany */
    display: flex;
    justify-content: center; 
}

.logo-section img{
    width: 96vw;                        /* Prawie na cala szerokosc ekranu */
    max-width: 1600px;                  /* Zabezpieczenie na ultra-wide */
    height: auto;
}

/* Burger */
.burger-section{
    margin-top: 40px;
}

.burger{
    background: none;
    border: none;
    cursor: pointer;
    width: 42px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.burger span{
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: 0.4s ease;
}

/* Burger -> X */
.burger.active span:nth-child(1){
    transform: translateY(13px) rotate(45deg);
}
.burger.active span:nth-child(2){
    opacity: 0;
}
.burger.active span:nth-child(3){
    transform: translateY(-13px) rotate(-45deg);
}

/* Fullscreen menu */
.fullscreen-menu{
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.96);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
    z-index: 300;
}

/* Active */
.fullscreen-menu.active{
    transform: translateY(0);
    opacity: 1;
}

/* Menu list */
.fullscreen-menu ul{
    list-style: none;
    text-align: center;
}

.fullscreen-menu li{
    margin: 20px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Animacja sekwencyjna */
.fullscreen-menu.active li:nth-child(1) {transition-delay: 0s;}
.fullscreen-menu.active li:nth-child(2) {transition-delay: 0.1s;}

.fullscreen-menu.active li{
    opacity: 1;
    transform: translateY(0);
}

/* Links */
.fullscreen-menu a{
    text-decoration: none;
    color: #c5a059;
    font-size: 32px;
    letter-spacing: 2px;
}

.fullscreen-menu a:hover{
    opacity: 0.7;
    color: #f1d592;
}

main {
    padding-top: 400px;
}


.hero{
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 10vw;
    background-color: #000000;
}

.hero h2 {
    font-size: clamp(36px, 5vw, 30px);
    font-weight: 60;
    letter-spacing: 1px;
    margin-bottom: 24px;
    color: #c5a059;
}

.hero p {
    font-size: clamp(16px, 2vw, 20px);
    max-width: 900px;
    line-height: 1.6;
    opacity: 0.85;
}

/* Contact Section*/
#contact {
    background-color: #000000;
    padding-top: 150px;
    padding-bottom: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
}

/* Naglowek */
#contact h1 {
    font-size: 48px;
    color: #c5a059;
    margin-bottom: 20px;
}

/* Intro / Opis */
#contact .intro {
    font-size: 18px;
    line-height: 1.6;
    color: #f1d592;
    max-width: 700px;
    margin-bottom: 40px;
}

/* Kontakt info */
.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

/* Selekt dla uslugi */
.contact-select {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 400px;
}

.service-select label {
    font-weight: bold;
    color: #c5a059;
    margin-bottom: 10px;
}

.service-select select {
    width: 100%;
    max-width: 400px;
    padding: 5px 10px;
    border-radius: 8px;
    border: 1px solid #a6a6a6;
    background-color: #000000;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    outline: none;
    transition: all 0.3s ease;
    appearance: none;
    text-align: center;
}

/* hover / focus */
.service-select select:hover,
.service-select select:focus{
    border-color: #c5a059;
    background-color: #3f2c3f;
    cursor: pointer;
}

/* Footer /About Us */
.page-footer{
    background-color: #000000;
    width: 100%;
    text-align: center;
    padding: 80px 10vw;
    color: #fff;
    font-size: 18px;
}
.page-footer h2 {
    color: #c5a059;
}
#aboutus{
    margin-top: 220px;
}
