/* 
  AMOV GROUP - Creative Agency Coming Soon Page
  Color Palette:
  Primary Background: Navy Blue
  Accents: Teal, Green, Yellow, Turquoise, Coral/Red
*/

:root {
    --bg-primary: #0C3A53;
    --color-teal: #00B4D8;
    --color-green: #2EC4B6;
    --color-yellow: #FFD166;
    --color-turquoise: #06D6A0;
    --color-coral: #EF476F;
    --color-text: #FFFFFF;
}

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

body {
    background-color: var(--bg-primary);
    color: var(--color-text);
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

/* 
  Subtle film noise for poster aesthetic
*/
.noise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 20;
    opacity: 0.04;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
}

/* --- BACKGROUND SHAPES --- */
.background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

/* General Shape Styles */
.shape {
    position: absolute;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
    transform-origin: center;
}

/* Blurred Blobs */
.shape-blob-1 {
    width: 50vw;
    height: 50vw;
    max-width: 600px;
    max-height: 600px;
    background: var(--color-coral);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    top: -10%;
    right: -5%;
    opacity: 0.8;
    filter: blur(40px);
    animation: float-blob-1 18s infinite alternate ease-in-out;
}

.shape-blob-2 {
    width: 45vw;
    height: 45vw;
    max-width: 500px;
    max-height: 500px;
    background: var(--color-teal);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    bottom: -15%;
    left: -10%;
    opacity: 0.7;
    filter: blur(50px);
    animation: float-blob-2 22s infinite alternate ease-in-out;
}

/* Geometric Circles */
.shape-circle-1 {
    width: 150px;
    height: 150px;
    background: transparent;
    border: 15px solid var(--color-yellow);
    border-radius: 50%;
    top: 20%;
    left: 15%;
    opacity: 0.9;
    animation: float-circle-1 15s infinite alternate ease-in-out;
}

.shape-circle-2 {
    width: 80px;
    height: 80px;
    background: var(--color-green);
    border-radius: 50%;
    bottom: 25%;
    right: 20%;
    opacity: 0.9;
    animation: float-circle-2 12s infinite alternate ease-in-out;
}

/* Geometric Abstract Polygons */
.shape-geo-1 {
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 173.2px solid var(--color-turquoise);
    top: 55%;
    left: 5%;
    opacity: 0.8;
    animation: float-geo-1 17s infinite alternate ease-in-out;
}

.shape-geo-2 {
    width: 120px;
    height: 120px;
    background: transparent;
    border: 4px solid var(--color-coral);
    bottom: 15%;
    right: 5%;
    opacity: 0.6;
    transform: rotate(45deg);
    animation: float-geo-2 20s infinite alternate ease-in-out;
}

/* Curved Lines */
.shape-curve-1 {
    width: 300px;
    height: 150px;
    border-top: 15px solid var(--color-yellow);
    border-radius: 150px 150px 0 0;
    top: 10%;
    right: 20%;
    opacity: 0.7;
    animation: float-curve-1 14s infinite alternate ease-in-out;
}

.shape-curve-2 {
    width: 250px;
    height: 80px;
    border-bottom: 20px solid var(--color-turquoise);
    border-radius: 0 0 150px 150px;
    bottom: 40%;
    left: 25%;
    opacity: 0.5;
    animation: float-curve-2 19s infinite alternate ease-in-out;
    transform: rotate(-25deg);
}

/* --- SHAPE KEYFRAMES --- */
@keyframes float-blob-1 {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }

    100% {
        transform: translateY(50px) rotate(45deg) scale(1.1);
        border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
    }
}

@keyframes float-blob-2 {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    100% {
        transform: translateY(-60px) rotate(-35deg) scale(1.15);
        border-radius: 40% 60% 50% 50% / 60% 40% 60% 40%;
    }
}

@keyframes float-circle-1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(40px, -30px) scale(0.9);
    }
}

@keyframes float-circle-2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-50px, -50px) scale(1.2);
    }
}

@keyframes float-geo-1 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(30px, -40px) rotate(120deg);
    }
}

@keyframes float-geo-2 {
    0% {
        transform: translate(0, 0) rotate(45deg);
    }

    100% {
        transform: translate(-40px, -20px) rotate(135deg);
    }
}

@keyframes float-curve-1 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(20px, 40px) rotate(15deg);
    }
}

@keyframes float-curve-2 {
    0% {
        transform: translate(0, 0) rotate(-25deg);
    }

    100% {
        transform: translate(-30px, 30px) rotate(-10deg);
    }
}

/* --- CONTENT CONTAINER --- */
.content-container {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    width: 90%;
    padding: 3rem 2rem;
    text-align: center;

    /* Subtle dark poster overlay/container so text stays readable */
    background: rgba(12, 58, 83, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);

    animation: container-fade-in 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes container-fade-in {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.98);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* --- LOGO --- */
.logo-wrapper {
    margin-bottom: 2rem;
    animation: element-fade-in 1.5s 0.2s forwards;
    opacity: 0;
}

.logo {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

/* --- HEADLINE --- */
.headline {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.95;
    margin-bottom: 2rem;
    letter-spacing: -2px;
    color: var(--color-text);
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: element-fade-in 1.5s 0.4s forwards;
    opacity: 0;
}

.headline .word-1 {
    display: block;
}

.headline .word-2 {
    display: block;
    color: var(--color-yellow);
    font-style: italic;
    padding-left: clamp(20px, 5vw, 60px);
}

/* --- TEXT CONTENT --- */
.text-content {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    line-height: 1.6;
    margin: 0 auto 3rem;
    max-width: 750px;
    color: rgba(255, 255, 255, 0.9);
    animation: element-fade-in 1.5s 0.6s forwards;
    opacity: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.text-content p {
    margin-bottom: 1.2rem;
}

.text-content p:last-child {
    margin-bottom: 0;
}

.text-content strong {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: var(--color-turquoise);
}

/* --- SERVICES --- */
.services {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: element-fade-in 1.5s 0.8s forwards;
    opacity: 0;
}

.service-item {
    position: relative;
    transition: all 0.3s ease;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

.service-item:hover {
    transform: translateY(-5px) scale(1.05);
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    cursor: default;
}

.service-amenagement {
    color: var(--color-turquoise);
}

.service-digital {
    color: var(--color-coral);
}

.service-impression {
    color: var(--color-yellow);
}

.dot {
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.5rem;
    line-height: 1;
}

/* --- REUSABLE FADE IN ANIMATION --- */
@keyframes element-fade-in {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 768px) {
    .headline .word-2 {
        padding-left: 0;
        transform: translateX(5%);
    }

    .services {
        flex-direction: column;
        gap: 0.8rem;
    }

    .dot {
        display: none;
    }

    .content-container {
        padding: 2.5rem 1.5rem;
    }
}