/* Variabile de culoare extrase din logo */
:root {
    --color-coral: #e58b76;
    --color-teal: #1a424b;
    --color-bg: #fdfdfd;
    --color-text: #4a4a4a;
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* Container-ul principal (800px max pe desktop) */
.wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 100vh;
}

/* Header & Logo */
header {
    margin-bottom: 40px;
    animation: fadeInDown 0.8s ease-out;
}

.logo {
    max-width: 160px;
    height: auto;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.03);
}

/* Textul Despre Noi */
.about {
    margin-bottom: 50px;
    animation: fadeIn 1s ease-out 0.3s both;
}

.about h1 {
    color: var(--color-teal);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}


/* Wrapper-ul Video */
.latest-release {
    width: 100%;
    margin-bottom: 60px;
    animation: fadeIn 1s ease-out 0.6s both;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Container responsiv 16:9 pentru YouTube */
.video-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(26, 66, 75, 0.15);
    margin-bottom: 35px;
    background-color: var(--color-teal);
}

.video-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    border: none;
}

/* Butonul principal */
/* Update pentru un contrast mai bun la textul gri */
.about p {
    font-size: 1.15rem;
    font-weight: 300;
    color: #4a4a4a; /* Schimbat din #666 pentru contrast mai mare */
    max-width: 650px;
    margin: 0 auto;
}

/* Update Buton: Fundal Teal, Text Alb (Trece testele de accesibilitate cu brio) */
.btn-primary {
    display: inline-block;
    background-color: var(--color-teal);
    color: white;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(26, 66, 75, 0.2);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.btn-primary:hover {
    background-color: var(--color-coral);
    color: var(--color-teal); /* Text închis pe fundal deschis */
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(229, 139, 118, 0.4);
}

/* Iconițe Social Media */
.social-links {
    margin-bottom: 60px;
    animation: fadeIn 1s ease-out 0.9s both;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: white;
    color: var(--color-teal);
    font-size: 1.3rem;
    text-decoration: none;
    margin: 0 12px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
}

.social-links a:hover {
    background-color: var(--color-coral);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(229, 139, 118, 0.4);
}

/* Footer */
footer {
    margin-top: auto;
    width: 100%;
    animation: fadeIn 1s ease-out 1.2s both;
}

.contact-email {
    color: var(--color-teal); /* Teal închis pentru contrast perfect */
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
}

.contact-email:hover {
    color: var(--color-teal);
    border-bottom: 2px solid var(--color-coral); /* Subliniere elegantă la hover */
}

.copyright {
    margin-top: 8px;
    font-size: 0.85rem;
    color: #555555; /* Gri închis, trece testul 4.5:1 */
}

/* Animații Keyframes */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsivitate pentru Mobile */
@media (max-width: 600px) {
    .wrapper { padding: 40px 15px 30px; }
    .about h1 { font-size: 1.8rem; }
    .about p { font-size: 1.05rem; }
    .btn-primary { padding: 14px 28px; font-size: 0.9rem; }
    .social-links a { width: 45px; height: 45px; font-size: 1.1rem; margin: 0 8px; }
}