* {
    margin: 0; padding: 0;
}


:root{
    --bg:#0d0b0f;
}

h1, h2, h3, p {
    cursor: default;
    user-select: none;
}

body{
    font-family:'Inter',sans-serif;
    min-height:100vh;

    background:var(--bg);

    position:relative;
    overflow-x:hidden;
}

body::before{
    content:"";

    position:fixed;

    top:100px;
    left:50%;

    transform:translateX(-50%);

    width:700px;
    height:500px;

    background:
    radial-gradient(
        ellipse at center,
        #e8449a 0%,
        #a020a0 50%,
        transparent 80%
    );

    opacity:.2;

    filter:blur(120px);

    pointer-events:none;

    z-index:-1;
}
.section-divider{
    height:1px;
    margin-top: 10px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(232,68,154,0.4),
        transparent
    );
}

body::after{
    content:"";

    position: absolute;

    bottom: 0;
    left: 50%;

    transform:translateX(-50%);

    width:600px;
    height:300px;

    background:
    radial-gradient(
        ellipse,
        #e8449a 0%,
        #7c3aed 60%,
        transparent 80%
    );

    opacity:.25;

    filter:blur(100px);

    pointer-events:none;

    z-index:-1;
}

.container {
    min-height: 100vh;
    margin-bottom:0;
    padding-bottom:0;
}

.container.main{
    min-height:100vh;
    display:flex;
    flex-direction:column;
}


.navbar {
    display:flex;
    justify-content:space-between;
    padding:40px 60px;
}

.logo {
    color: white;
    font-size: 1.5em;
    font-weight: bolder;
}

.nav-links {
    
    display: flex;
    gap: 10px;
}

ul, li, a {
    color: white;
    text-decoration: none;
    list-style-type: none;
}

.btn {
    
    font-family: "DM Mono", monospace;
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 12px;
    padding: 8px 16px;
    color: #8A7494;
    border: 0.5px solid #da3e8f47;
    transition: all 0.3s ease;
}

.btn:hover {
    opacity: 100%;
    border-color: #E8449A;
    color: white;
}



.hero{
    flex:1;
    display:flex;
    align-items:center;
    justify-content:start;
}

.hero-text{
    padding-left: 60px;
}

.text {
    font-family: "Playfair Display", serif;
    font-size: 10rem;
    font-weight: 100;
    line-height: 0.8;
}

.text.top {
    color: white;
}

.text.bottom {
    color: pink;
    font-style: italic;
    background: radial-gradient(
        circle at center,
        #c07cff 0%,
        #bb73ff 20%,
        #F472B6 90%
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.album-scroll {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 0px 5px 25px 60px;
}

.album-scroll #p {
    font-size: 12px;
    
    color: #8A7494;
    font-family: "DM Mono", monospace;
    letter-spacing: 2px;
    cursor: pointer;
}

.icon {
    color: #E8449A;
    transition: transform 0.25s ease;
}

#p:hover + .icon{
    transform: translateY(4px);
}


.section-header {
    display:flex;
    justify-content:space-between;
    padding:40px 60px;
}

.section-title {
    font-family: "DM Mono", monospace;
    letter-spacing: 2px;
    justify-items: start;
    color: #E8449A;
    font-size: 12px;
}

#numberOfPht {
    font-family: "DM Mono", monospace;
    font-size: 12px;
    letter-spacing: 2px;
    justify-items: end;
    color: #8A7494;
}

#description {
    font-family: "DM Mono", monospace;
    font-size: 12px;
    letter-spacing: 2px;
    justify-items: end;
    color: #8A7494;
}

.photo-album{
    column-count: 6;
    column-gap: 10px;
    padding: 0 60px;
}

.photo-item{
    width: 100%;
    display: block;
    margin-bottom: 10px;
    break-inside: avoid;
    opacity: 0.5;
    transition: opacity 0.5s ease;
    transition: transform 0.3s ease;

}

.photo-item:hover{
    opacity: 1;
    transform: scale(1.03);
}

.container.about{
    min-height:75vh;
    padding-top: 75px;
}

.about-content {
    padding-left: 60px; 
}

.break {
    display: block;
}

#abouth {
    font-family: "Playfair Display", serif;
    color: white; font-size: 48px;
    font-weight: 100; max-width: 500px;
    margin: 0 0 40px;
}

#colorsh {
    font-style: italic;
    background: radial-gradient(
        circle at center,
        #c07cff 0%,
        #bb73ff 20%,
        #F472B6 90%
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#aboutp1 {
    font-family: "DM Sans", sans-serif;
    color: #8A7494; font-size: 16px;
    margin: 0 0 16px;
}
#aboutp2 {
    font-family: "DM Sans", sans-serif;
    color: #8A7494; font-size: 16px;
}





.container.contact {
    display: inline-flexbox;
    justify-content: center;
    align-content: center;
}

.section-contacthead {
    display: block;
    justify-self: center;
}

.section-contactext {
    text-align: center;
    font-family: "DM Mono", monospace;
    font-size: 15px;
    font-weight: 100;
    letter-spacing: 2px;
    justify-items: start;
    color: #E8449A;
}

.contact-info {
    display: block;
    text-align: center;
    padding-top: 50px;
    justify-self: center;
}

#h1, #h2 {
    font-family:"Playfair Display", serif;
    font-weight: 100;
}

#h1 {
    font-size: 120px;
    color: white;
       line-height: 0.5
}
#h2 {
    text-align: center;
    font-size: 120px;
    font-style: italic;
    background: radial-gradient(
        circle at center,
        #c07cff 0%,
        #bb73ff 20%,
        #F472B6 90%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-form {
    padding-top: 25px;
}

#contactp {
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    text-align: center;
    color: #8A7494;
}


.contact-button {
    padding-top: 50px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.contact-button {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px;
}

/* karta */
.btn-purchase {
  width: 220px;
  padding: 20px;
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);

  color: white;
  text-align: center;

  transition: 0.25s ease;
  position: relative;
  overflow: hidden;
}

/* glow efekt */
.btn-purchase::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(157, 0, 255, 0.15), transparent 60%);
  transform: rotate(25deg);
  opacity: 0;
  transition: 0.3s;
}

.btn-purchase:hover::before {
  opacity: 1;
}

.btn-purchase:hover {
  transform: translateY(-8px);
  border-color: rgba(191, 0, 255, 0.5);
}

/* title */
.btn-purchase h2 {
  font-family:"Playfair Display", serif;
  margin-bottom: 10px;
  font-size: 2.5em;
  font-weight: bolder;
  font-style: italic;
  letter-spacing: 7px;
  background: radial-gradient(
        circle at center,
        #dc7cff 0%,
        #bb73ff 20%,
        #F472B6 90%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.active {
    background: linear-gradient(
        145deg,
        rgba(234, 0, 255, 0.25),
        rgba(124, 58, 237, 0.18),
        rgba(0, 0, 0, 0.4)
    );

    border: 1px solid rgba(234, 0, 255, 0.8);

    transform: translateY(-10px) scale(1.03);

    box-shadow:
        0 0 25px rgba(234, 0, 255, 0.35),
        0 0 60px rgba(124, 58, 237, 0.25);

    color: white;
}

/* text */
.describ{
  font-family: "DM Sans", sans-serif;
  margin: 6px 0;
  line-height: 25px;
  opacity: 0.85;
  font-size: 15px;
}

/* cena */
.price {
  font-size: 1.5em;
  padding-top: 75px;
  font-weight: bold;
  color: hwb(300 99% 0%);
}

/* tlačítko */
.btn-purchase-btn {
  margin-top: 10px;
  padding: 10px 25px;
  border: none;
  border-radius: 10px;

  background: #d259c6;
  color: #0f0f14;
  font-weight: bold;
  cursor: pointer;

  transition: 0.2s;
}

.btn-purchase-btn:hover {
  background: #00cfa3;
  transform: scale(1.05);
  cursor: pointer;
}

.footer {
    background-color: #0d0b0f;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 65px;
    width: 100%;
    border-top: 0.5px solid #e8449942;
}

#leftp, #rightp {
    font-family: "DM Mono", monospace;
    letter-spacing: 1px;
    font-size: 12px;
    padding: 12px; margin: 0 60px;
}

#leftp {
    color: #8A7494;
}

#rightp {
    color: #c73882;
}





.modal{
    position: fixed;
    inset: 0;
    transform:translateX(-0px);

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    pointer-events: none;
}

.modal::before{
    content:"";
    position: fixed;
    transform: translateX(0px);
    inset: 0;

    backdrop-filter: blur(1px);
    background: rgba(81, 37, 82, 0.343);

    pointer-events: none;
    z-index: 0;
}

.modal > *{
    position: relative;
    z-index: 1;
}

.modal.active::after{
    opacity: 1;
}

.modal.active{
    opacity: 1;
    pointer-events: all;
}

.photo-popup {
    user-select: none;
    width: 500px;
    height: auto;
    border: 1px solid rgba(255, 255, 255, 0.565);
}

.text-contentpopup {
    display: flexbox;
    
    padding-left: 100px;
}

.text-contentpopup h2{
    font-family:"Playfair Display", serif;
    font-weight: 100;
    color: white;
    font-size: 5em;
}
.text-contentpopup p {
    color: rgb(149, 71, 156);
    font-size: 12px;
    font-family: "DM Sans", sans-serif;
  
}


/* =========================
   TABLETY
   ========================= */

@media (max-width: 1024px) {

    .navbar {
        padding: 30px 40px;
    }

    .hero-text,
    .about-content {
        padding-left: 40px;
    }

    .text {
        font-size: clamp(4rem, 10vw, 7rem);
    }

    #h1,
    #h2 {
        font-size: clamp(4rem, 10vw, 6rem);
    }

    .photo-album {
        column-count: 3;
        padding: 0 40px;
    }

    .contact-button {
        gap: 20px;
    }

    .btn-purchase {
        width: 280px;
    }
}


/* =========================
   MOBILY
   ========================= */

@media (max-width: 768px) {

    body::before,
    body::after {
        width: 350px;
        height: 250px;
        filter: blur(80px);
    }

    .navbar {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 25px 20px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .btn {
        padding: 6px 12px;
        font-size: 11px;
    }

    .hero {
        justify-content: center;
        text-align: center;
        padding: 20px;
    }

    .hero-text {
        padding: 0;
    }

    .text {
        font-size: clamp(3rem, 14vw, 5rem);
        line-height: 0.9;
    }

    .album-scroll {
        justify-content: center;
        padding: 20px;
    }

    .section-header {
        padding: 25px 20px;
        flex-direction: column;
        gap: 10px;
    }

    .section-title,
    #description {
        text-align: center;
    }

    .photo-album {
        column-count: 2;
        padding: 0 20px;
    }

    .container.about {
        min-height: auto;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .about-content {
        padding: 20px;
    }

    #abouth {
        font-size: clamp(2rem, 8vw, 3rem);
        max-width: 100%;
    }

    #aboutp1,
    #aboutp2 {
        font-size: 15px;
        line-height: 1.7;
    }

    .contact-info {
    display: block;
    margin: 0 auto;
    text-align: center;
    padding-top: 50px;
}

    #h1,
    #h2 {
        font-size: clamp(3rem, 14vw, 5rem);
        line-height: 1;
    }

    .text-form {
        padding-top: 15px;
    }

    #contactp {
        font-size: 11px;
        line-height: 1.6;
    }

    .contact-button {
        flex-direction: column;
        align-items: center;
        padding: 25px 15px;
        gap: 20px;
    }

    .btn-purchase {
        width: 100%;
        max-width: 350px;
        box-sizing: border-box;
    }

    .btn-purchase h2 {
        font-size: 2rem;
        letter-spacing: 4px;
    }

    .price {
        padding-top: 40px;
    }

    .footer {
        flex-direction: column;
        justify-content: center;
        gap: 10px;
        height: auto;
        padding: 20px 0;
    }

    #leftp,
    #rightp {
        margin: 0;
        text-align: center;
        padding: 0;
    }

    .modal {
        padding: 15px;
        box-sizing: border-box;
    }

    .photo-popup {
        width: 100%;
        max-width: 90vw;
    }

    .text-contentpopup {
        padding: 20px;
    }

    .text-contentpopup h2 {
        font-size: 2.5rem;
    }
}


/* =========================
   MALÉ TELEFONY
   ========================= */

@media (max-width: 480px) {

    .navbar {
        padding: 20px 15px;
    }

    .text {
        font-size: 3rem;
    }

    #h1,
    #h2 {
        font-size: 2.5rem;
    }

    .photo-album {
        column-count: 1;
        padding: 0 15px;
    }

    .btn-purchase {
        max-width: 100%;
    }

    .btn-purchase h2 {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .describ {
        font-size: 14px;
    }

    .price {
        font-size: 1.3rem;
    }

    .btn-purchase-btn {
        width: 100%;
    }

    .text-contentpopup h2 {
        font-size: 2rem;
    }
}
