@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap');

:root {
    --color-text: white;
    --color-accent: hsl(39, 100%, 45%);
    --color-accent-shadow: hsl(39, 80%, 20%);
}

html, body {
    margin: 0;
    padding: 0;
    font-family: "Abril Fatface", serif;
    font-weight: 400;
    font-style: normal;
    color: var(--color-text);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

nav, #nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    flex-flow: row;
    align-items: center;
    justify-content: flex-end;
    height: 150px;
    background-color: black;
}

#nav a {
    font-size: 1.4rem;
    margin: 0 25px 0 0;
    padding: 15px;
    color: var(--color-text);
    text-decoration: none;
    transition: .25s;
}

#nav a:hover {
    color: var(--color-accent);
}

nav div {
    flex-grow: 1;
    height: 150px;
}

nav div img {
    margin-left: auto;
    margin-right: auto;
    display: block;
    height: calc(150px - 20px);
    width: calc(500px - 20px);
    max-width: 100vw;
}

section {
    min-height: 400px;
    padding: 150px 75px;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    overflow-x: hidden;
}

#sec-logo {
    background-image: url("assets/zdj2.jpg");
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    color: var(--color-accent);
}

#sec-logo img {
    height: 500px;
}

#sec-services {
    background-image: url("assets/zdj3.jpg");
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 200px 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px; 
}

#sec-services-header {
    grid-area: 1 / 1 / 2 / 3;
    text-align: center;
}

#sec-services h2 {
    color: var(--color-accent);
    text-shadow: 0px 0px 20px var(--color-accent-shadow);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

#sec-services-drummer {
    grid-area: 2 / 1 / 3 / 2;
    text-shadow: 0px 0px 30px black;
}

#sec-services-dj {
    grid-area: 2 / 2 / 3 / 3;
    text-shadow: 0px 0px 30px black;
}

#sec-services img {
    width: 60%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#sec-services p {
    padding: 20px 100px;
    text-align: justify;
    font-size: 1.2rem;
}

#sec-aboutme {
    background-image: url("assets/zdj1.jpg");
    display: flex;
    justify-content: space-around;
    align-items: stretch;
}

#sec-aboutme p {
    padding: 50px;
    text-align: justify;
}

#sec-aboutme img {
    height: 800px;
}

#sec-aboutme p {
    color: var(--color-text);
    font-size: 1.5rem;
    text-shadow: 0px 0px 30px black;
}

#sec-aboutme video {
    height: 350px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

#sec-dj {
    background-image: url("assets/dj-bg.jpg");
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    color: white;
    column-gap: 50px;
    padding-bottom: 0;
}

#sec-dj h1 {
    font-size: 3rem;
}

#sec-dj video {
    width: 450px;
}

#sec-dj p {
    color: var(--color-text);
    font-size: 1.5rem;
    text-shadow: 0px 0px 30px black;
    text-align: justify;
}

#sec-dj a {
    color: white;
    cursor: pointer;
    text-decoration: none;
    font-size: 1.5rem;
}

#sec-dj a:hover {
    color: #ccc;
}

#sec-reviews {
    padding-top: 0;
    background-image: url("assets/dj-bg.jpg");
    color: white;
}

#sec-new-review {
    background-image: url("assets/photos-bg.jpg");
    color: white;
}

#review-flexbox {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

#sec-reviews h1, #sec-new-review h1 {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 0;
}

#sec-reviews .review {
    width: max(40%, 300px);
    box-shadow: 0 0 5px black;
    border-radius: 5px;
    padding: 10px;
    height: fit-content;
}

#sec-reviews img {
    max-width: 100%;
    max-height: 300px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

#sec-reviews .review p {
    margin: 0;
}

#sec-reviews .review > .author {
    display: block;
    width: 100%;
    text-align: right;
}

#sec-calendar {
    background-image: url("assets/calendar-bg.jpg");
    padding-top: 50px;
}

#sec-calendar h1 {
    text-shadow: 0px 0px 20px var(--color-accent-shadow);
    text-align: center;
    margin-top: 0;
    margin-bottom: 10px;
}

#sec-calendar iframe {
    margin-left: auto;
    margin-right: auto;
    display: block;
}

#sec-photos {
    background-image: url("assets/photos-bg.jpg");
    backdrop-filter: blur(20px);
    padding-top: 20px;
}

#sec-photos h1 {
    margin-top: 0;
    text-align: center;
}

#photos-flexbox {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    text-align: center;
}

#photos-flexbox img {
    height: 350px;
}

#photos-flexbox video {
    height: 350px;
}

#sec-contact {
    background-image: url("assets/contact-bg.jpg");
    font-size: 2.5rem;
    min-height: 600px;
}

#sec-contact h1 {
    color: white;
    text-shadow: 0px 0px 5px black;
    margin-bottom: 30px;
    margin-top: 0;
}

#sec-contact div {
    padding: 50px 100px;
    background-color: #0008;
    width: fit-content;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

#sec-contact a {
    color: white;
    cursor: pointer;
    text-decoration: none;
}

#sec-contact a:hover {
    color: #ccc;
}

#sec-contact i {
    color: var(--color-accent);
    text-shadow: 0px 0px 10px var(--color-accent-shadow);
}

h1 {
    color: var(--color-accent);
    text-shadow: 0px 0px 10px var(--color-accent-shadow);
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 0;
}

#sec-logo div {
    font-size: 3rem;
}

footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr 50px;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    background-color: black;
    text-align: center;
    color: var(--color-text);
    padding: 50px 25px 0px 25px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.25rem;
    line-height: 2rem;
}

#footer-logo {
    grid-area: 1 / 1 / 2 / 2;
}

#footer-logo img {
    height: 250px;
}

#footer-social {
    grid-area: 1 / 2 / 2 / 3;
}

#footer-social a {
    color: white;
    cursor: pointer;
    text-decoration: none;
}

#footer-social a:hover {
    color: #ccc;
}

#footer-contact a {
    color: white;
    cursor: pointer;
    text-decoration: none;
}

#footer-contact a:hover {
    color: #ccc;
}

#footer-contact {
    grid-area: 1 / 3 / 2 / 4;
}

#footer-copy {
    grid-area: 2 / 1 / 3 / 4;
}

#hamburger-icon {
    padding: 20px 100px;
    cursor: pointer;
    font-size: 3rem;
}

#lang-selector {
    background-color: black;
    border: none;
    color: white;
    border-bottom: 2px solid white;
    padding: 10px 20px;
}

#lang-selector:focus-visible {
    outline: none;
}

label[for=lang-selector] {
    font-size: 1rem;
}

form {
    width: max-content;
    margin: 0 auto;
}

input[type=text], textarea {
    width: 500px;
    resize: vertical;
    background-color: transparent;
    border: 2px solid var(--color-text);
    border-radius: 10px;
    color: var(--color-text);
}

input[type=submit] {
    color: black;
    background-color: var(--color-accent);
    box-shadow: 0px 0px 10px var(--color-accent-shadow);
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    float: right;
    cursor: pointer;
    user-select: none;
}

input[type=submit]::after {
    clear: both;
}

/* For dev purposes :)
*[data-loca]::before {
    content: attr(data-loca);
} */