/* ===========================================
   TAKE YOUR TIME
   Premium Gothic Luxury Theme
=========================================== */

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

:root{

    --red:#8f0000;
    --red2:#b30000;
    --dark:#050505;
    --black:#000;
    --white:#fff;
    --glass:rgba(255,255,255,.05);
    --border:rgba(255,255,255,.12);

}

html{

    overflow-x:hidden;

}

body{

    background:#000;
    color:white;
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
    -webkit-user-select: none; /* Chrome, Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* Régi Edge */
    user-select: none;
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    display: none;
}

/* Firefox */
html {
    scrollbar-width: none;
}

/* Régebbi IE/Edge */
body {
    -ms-overflow-style: none;
}

/* Background */

body::before{

content:"";

position:fixed;

top:0;
left:0;

width:100%;
height:100%;

background:

radial-gradient(circle at top,#8f000055,transparent 60%),
radial-gradient(circle at bottom,#300000,black);

z-index:-3;

}

/* Animated background */

body::after{

content:"";

position:fixed;

width:250%;

height:250%;

top:-70%;

left:-70%;

background:

repeating-radial-gradient(circle,

rgba(255,0,0,.05),

rgba(255,0,0,.05) 2px,

transparent 3px,

transparent 60px);

animation:rotateBackground 60s linear infinite;

z-index:-2;

opacity:.35;

}

@keyframes rotateBackground{

0%{

transform:rotate(0deg);

}

100%{

transform:rotate(360deg);

}

}

/* Loader */

#loader{

position:fixed;

width:100%;
height:100vh;

background:black;

display:flex;

justify-content:center;

align-items:center;

z-index:999999;

transition:1s;

}

.loader-text{

font-family:"Cinzel",serif;

font-size:4rem;

letter-spacing:10px;

color:white;

text-shadow:

0 0 20px red,

0 0 40px red;

animation:pulse 2s infinite;

}

@keyframes pulse{

0%{

opacity:.4;
transform:scale(.9);

}

50%{

opacity:1;
transform:scale(1);

}

100%{

opacity:.4;
transform:scale(.9);

}

}

/* Cursor */

.cursor{

position:fixed;

width:22px;
height:22px;

border:2px solid crimson;

border-radius:50%;

pointer-events:none;

transform:translate(-50%,-50%);

box-shadow:

0 0 20px crimson,
0 0 40px crimson;

z-index:999999;

transition:.08s;

}

/* HERO */

#home{

height:100vh;

display:flex;

justify-content:center;

align-items:center;

position:relative;

overflow:hidden;

}

.overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        180deg,
        rgba(0, 0, 0, 0),
        rgba(0, 0, 0, 0)
    );
}

.hero{

position:relative;

text-align:center;

z-index:10;

}

.hero h1{

font-size:7rem;

font-family:"Cinzel",serif;

font-weight:900;

letter-spacing:8px;

text-shadow:

0 0 25px crimson,

0 0 60px crimson,

0 0 120px red;

animation:heroGlow 4s infinite;

}

@keyframes heroGlow{

0%,100%{

text-shadow:

0 0 20px crimson,
0 0 60px crimson;

}

50%{

text-shadow:

0 0 40px white,
0 0 100px crimson,
0 0 200px red;

}

}

.hero p{

margin-top:25px;

font-size:1.3rem;

opacity:.85;

letter-spacing:3px;

}

.btn{

display:inline-block;

margin-top:45px;

padding:18px 60px;

border:1px solid crimson;

color:white;

text-decoration:none;

letter-spacing:4px;

background:rgba(255,255,255,.05);

backdrop-filter:blur(15px);

transition:.4s;

overflow:hidden;

position:relative;

}

.btn:hover{

background:crimson;

transform:translateY(-6px);

box-shadow:

0 0 35px crimson,
0 0 70px crimson;

}

/*=========================================
    ABOUT
=========================================*/

section{
    padding:120px 10%;
    position:relative;
}

.container{
    max-width:1200px;
    margin:auto;
}

section h2{

    font-size:4rem;
    font-family:"Cinzel",serif;
    letter-spacing:8px;
    margin-bottom:35px;
    text-align:center;

    text-shadow:
    0 0 25px crimson,
    0 0 60px crimson;

}

section{
    padding:50px 10%;
    position:relative;
    background:transparent;
}

/* smooth section blending */
section::before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background:linear-gradient(
        180deg,
        rgba(0, 0, 0, 0),
        transparent 40%,
        transparent 60%,
        rgba(0, 0, 0, 0)
    );
    z-index:-1;
}

#about p{

    font-size:1.15rem;
    line-height:2.2;
    text-align:center;
    color:#ddd;
    max-width:950px;
    margin:auto;

}

#about strong{

    color:crimson;

}

#about strong2{

    color:#ffffff;
    font-weight: bold;

}

/*=========================================
    GALLERY
=========================================*/

.cards{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(320px,1fr));

gap:40px;

margin-top:80px;

}

.card{

height:280px;

border-radius:20px;

overflow:hidden;

cursor:pointer;

position:relative;

background:
linear-gradient(
145deg,
#160000,
#000);

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

transition:.6s;

box-shadow:
0 20px 60px rgba(0, 0, 0, 0);

}

.card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.card::before{

content:"";

position:absolute;

inset:0;

background:
linear-gradient(
45deg,
transparent,
rgba(255,255,255,.08),
transparent);

transform:translateX(-120%);

transition:.8s;

}

.card:hover::before{

transform:translateX(120%);

}

.card:hover{

transform:

translateY(-20px)
rotateX(5deg)
rotateY(-5deg);

box-shadow:

0 0 30px crimson,
0 0 80px rgba(255,0,0,.45);

}

.card::after{

content:"This image was partially edited using AI.";

position:absolute;

bottom:10px;
left:35px;

font-size:0.5rem;

font-family:"Cinzel",serif;

letter-spacing:2px;

opacity:.70;

}

/*=========================================
    INSTAGRAM
=========================================*/

#instagram{

text-align:center;

}

.insta{
    margin:auto;
    max-width:700px;
    padding:40px;
    border-radius:35px;
    background:rgba(255,255,255,0);
    backdrop-filter:blur(30px);
    border:1px solid rgba(255,255,255,.08);
    transition:.5s;

    text-decoration:none;
    color:white;
    cursor:pointer;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    align-items:flex-start;
    gap:20px;
}

.small-card h4{
    line-height:1.8;
    color:#ddd;
    font-weight:400;
}

.small-card .btn{
    margin-top:auto;
}

.insta:hover{

transform:translateY(-12px);

box-shadow:

0 0 30px crimson,
0 0 80px rgba(255,0,0,.4);

}

.insta i{

font-size:6rem;

color:crimson;

margin-bottom:25px;

}

.insta h3{

font-size:2.5rem;

margin-bottom:35px;

letter-spacing:3px;

}

/*=========================================
    CONTACT
=========================================*/

.socials{

display:flex;

justify-content:center;

gap:35px;

margin-top:50px;

}

.socials a{

width:50px;

height:60px;

display:flex;

justify-content:center;

align-items:center;

border-radius:50%;

background:rgba(255, 255, 255, 0);

color:white;

font-size:2rem;

transition:.45s;

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

}

.socials a:hover{

background:crimson;

transform:
translateY(-12px)
rotate(360deg);

box-shadow:

0 0 30px crimson,
0 0 70px crimson;

}

.social-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
    margin-top:20px;
}

/* kisebb card */
.small-card{
    padding:40px;
    max-width:100%;
}

.small-card i{
    font-size:4rem;
}

.small-card h3{
    font-size:1.6rem;
}
/*=========================================
    FLOATING GLOW
=========================================*/

body .glow{

position:absolute;

width:500px;
height:500px;

background:crimson;

filter:blur(220px);

opacity:.18;

animation:floating 15s infinite ease-in-out;

}

@keyframes floating{

0%{

transform:
translate(-100px,-50px);

}

50%{

transform:
translate(200px,100px);

}

100%{

transform:
translate(-100px,-50px);

}

}

/*=========================================
    GLASS EFFECT
=========================================*/

.glass{

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

backdrop-filter:blur(20px);

box-shadow:

0 15px 45px rgba(0,0,0,.4);

}

/*=========================================
    ANIMATIONS
=========================================*/

.fade-up{

opacity:0;

transform:translateY(80px);

transition:1s;

}

.fade-up.active{

opacity:1;

transform:translateY(0);

}

.scale{

transform:scale(.8);

opacity:0;

transition:1s;

}

.scale.active{

transform:scale(1);

opacity:1;

}

.rotate{

transform:rotate(-10deg);

opacity:0;

transition:1s;

}

.rotate.active{

opacity:1;

transform:rotate(0deg);

}

/*=========================================
    RESPONSIVE
=========================================*/

@media(max-width:1100px){

.hero h1{

font-size:5rem;

}

}

@media(max-width:768px){

header{

padding:20px;

}

.hero h1{

font-size:3.2rem;
letter-spacing:3px;

}

.hero p{

font-size:1rem;

}

section{

padding:90px 7%;

}

section h2{

font-size:2.5rem;

}

.cards{

grid-template-columns:1fr;

}

.insta{

padding:40px 25px;

}

.socials{

flex-wrap:wrap;

}

.social-grid{
    grid-template-columns:1fr;
}

.small-card{
    padding:30px;
}

.small-card i{
    font-size:3rem;
}

.small-card h3{
    font-size:1.4rem;
}

.small-card h4{
    font-size:.95rem;
}

.hero h1{
    font-size:2.7rem;
}

.hero p{
    font-size:.95rem;
}


@media (hover:none){

.card:hover,
.insta:hover{

transform:none;
box-shadow:none;

}

}

}

/*=========================================
        POPUP NOTIFICATION
=========================================*/

.notification{

    position:fixed;

    left:30px;
    bottom:35px;

    width:360px;

    display:flex;
    align-items:center;
    gap:18px;

    padding:20px 22px;

    background:linear-gradient(135deg,#bb0000c9,#000000);

    border-radius:24px;

    border:1px solid rgba(255,255,255,.08);

    box-shadow:
        0 15px 45px rgba(0,0,0,.55),
        0 0 30px rgba(255,0,0,.35);

    backdrop-filter:blur(18px);

    z-index:999999;

    opacity:0;

    transform:translateX(-420px);

    pointer-events:none;

}

.notification.show{

    animation:popupIn .7s cubic-bezier(.18,.89,.32,1.28) forwards;

}

.notification.hide{

    animation:popupOut .45s ease forwards;

}

.notification-icon{

    width:20px;
    height:20px;

    border-radius:14px;

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

    background:rgba(255, 255, 255, 0);

    color:white;

    font-size:1.2rem;

    flex-shrink:0;

}

.notification-content h4{

    color:white;

    font-weight:700;

    margin-bottom:4px;

    font-size:1rem;

}

.notification-content p{

    color:white;

    font-weight:600;

    font-size:.92rem;

    line-height:1.5;

}

#closeNotification{

    position:absolute;

    top:10px;
    right:12px;

    width:24px;
    height:24px;

    border:none;

    background:none;

    color:white;

    font-size:18px;

    cursor:pointer;

    opacity:.75;

    transition:.25s;

    pointer-events:auto;

}

#closeNotification:hover{

    opacity:1;

    transform:scale(1.15);

}

@keyframes popupIn{

    0%{

        opacity:0;

        transform:translateX(-80px) scale(.9);

    }

    70%{

        transform:translateX(8px) scale(1.03);

    }

    100%{

        opacity:1;

        transform:translateX(0) scale(1);

    }

}

@keyframes popupOut{

    from{

        opacity:1;

        transform:translateX(0);

    }

    to{

        opacity:0;

        transform:translateX(-80px);

    }

}

@media(max-width:768px){

.notification{

    left:15px;
    right:15px;

    width:auto;

    bottom:20px;

}

}