* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    background: #fffaf0;
    overflow: hidden;
}

.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
}

.img {
    width: 75%;
    height: 100%;
    object-fit: cover;
}

/* 🍎 Apple-style fade-in */
.fade {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 1s cubic-bezier(0.4, 0, 0.2, 1),
        transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Parallax performance hint */
.bg-pulse,
.content {
    will-change: transform;
}

/* Mobile-ում անջատում ենք parallax-ը */
@media (max-width: 768px) {
    .bg-pulse {
        transform: none !important;
    }
}


/* 🔥 Background pulse */
.bg-pulse {
    position: absolute;
    inset: 0;
    background: url('../images/RR.svg') center/cover no-repeat;
    animation: pulse 8s ease-in-out infinite;
    z-index: 1;
    margin-top: 80px;
}

@keyframes pulse {
    0%   { transform: scale(1); filter: blur(0px); }
    50%  { transform: scale(1.04); filter: blur(2px); }
    100% { transform: scale(1); filter: blur(0px); }
}

.content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    padding: clamp(1.5rem, 5vw, 4rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #111;
}

/* ✨ Typography */
.logo {
    font-size: clamp(3rem, 9vw, 6rem);
    font-weight: 700;
    color: #ff6a00;
}

.subtitle {
    margin-top: 0.75rem;
    letter-spacing: 0.3em;
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    font-family: "Montserrat", sans-serif;
}

.description {
    max-width: 520px;
    margin: clamp(1rem, 3vw, 2rem) auto;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    line-height: 1.6;
    font-family: "Montserrat", sans-serif;
}

/* ⏳ Countdown */
.countdown {
    display: grid;
    grid-template-columns: repeat(4, minmax(70px, 1fr));
    gap: clamp(1rem, 3vw, 2.5rem);
    margin: clamp(2rem, 5vw, 3rem) 0;
}

.time-box span {
    font-size: clamp(2rem, 6vw, 3.2rem);
    font-weight: 300;
    display: block;
    font-family: "Montserrat", sans-serif;
}

.time-box small {
    margin-top: 0.3rem;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    font-family: "Montserrat", sans-serif;
}

/* 🔗 Socials */
.socials {
    display: flex;
    gap: clamp(1.2rem, 4vw, 2.5rem);
    font-size: 0.85rem;
    font-family: "Montserrat", sans-serif;
}

.socials a {
    color: #000;
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
    transition: border 0.3s ease;
}

.socials a:hover {
    border-color: #000;
}

/* 📱 Tablet */
@media (max-width: 900px) {
    .countdown {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 2rem;
    }
}

/* 📱 Mobile */
@media (max-width: 480px) {
    body {
        overflow-y: auto;
    }

    .bg-pulse {
        animation-duration: 12s;
        filter: blur(3px);
    }

    .content {
        justify-content: flex-start;
        padding-top: 4rem;
    }

    .socials {
        margin-top: auto;
        padding-bottom: 2rem;
    }
}
