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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-family: 'Poppins', sans-serif;

    color: #f5f5f5;

    line-height: 1.6;

    background:

        linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)),

        url("../img/background.jpeg");

    background-size: cover;

    background-position: center;
    color: #f5f5f5;
    line-height: 1.6;
}

/* HEADER */
.header {
    position: sticky;
    top: 0;

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

    padding: 20px 10%;

    background-color: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(10px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    z-index: 1000;
}

.logo h2 {
    font-size: 1.5rem;
    font-weight: 700;

    color: #ff2d8d;
}

.navbar {
    display: flex;
    gap: 25px;
}

.navbar a {
    text-decoration: none;
    color: #f5f5f5;
    font-weight: 500;

    transition: color 0.3s ease;
}

.navbar a:hover {
    color: #ff2d8d;
}

/* HERO */
.hero {
    min-height: 100vh;

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

    text-align: center;

    padding: 120px 10%;

    background:
        linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)),
        url("../img/hero.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;

    line-height: 1.1;

    margin-bottom: 25px;

    color: #ff2d8d;
}

.hero p {
    font-size: 1.2rem;

    margin-bottom: 40px;

    color: #c7c7c7;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;

    flex-wrap: wrap;
}

/* BUTTONS */
.btn {
    display: inline-block;

    padding: 14px 28px;

    border-radius: 50px;

    text-decoration: none;
    font-weight: 600;

    background-color: #ff2d8d;
    color: white;

    transition: transform 0.3s ease,
                background-color 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
    background-color: #e60073;
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;

    border: 2px solid rgba(255, 255, 255, 0.2);

    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background-color: #ff2d8d;
    color: white;

    border-color: #ff2d8d;
}

/* SECTIONS */
section {
    padding: 100px 10%;
}

.section-title {
    text-align: center;

    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;

    margin-bottom: 10px;

    color: #ff2d8d;
}

.section-title p {
    color: #bdbdbd;
}

/* PORTFOLIO */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.portfolio-item {
    background-color: #151515;

    border-radius: 20px;

    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);

    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.video-placeholder {
    height: 350px;

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

    background: linear-gradient(
        135deg,
        #ff2d8d,
        #ff7ab8
    );

    color: white;
    font-weight: 600;
}

/* PHONE MOCKUP PORTFOLIO */
.phone-frame {
    position: relative;

    width: 100%;
    max-width: 320px;

    margin: 0 auto;

    aspect-ratio: 9 / 19;

    background-color: #fff5f5;

    border-radius: 40px;

    padding: 9px;

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

    overflow: hidden;

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

.phone-camera {
    position: absolute;

    top: 10px;
    left: 50%;
    transform: translateX(-50%);

    width: 80px;
    height: 18px;

    background-color: #111;

    border-radius: 20px;

    z-index: 5;
}

.portfolio-video {
    width: 100%;
    height: 100%;

    object-fit: contain;

    border-radius: 30px;

    background-color: black;
}

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    position: relative;

    overflow: hidden;

    padding: 40px 30px;

    background-color: #151515;

    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);

    transform: translateY(0);

    transition: transform 0.3s ease;

    will-change: transform;
}


.service-card:hover {
    transform: translateY(-10px);
}


.service-card h3 {
    font-size: 1.8rem;
    font-weight: 700;

    margin-bottom: 15px;

    color: #ff2d8d;
}

.service-card p {
    margin-bottom: 20px;

    color: #c7c7c7;
}

/* SERVICE FEATURES */
.service-features {
    list-style: none;

    display: flex;
    flex-direction: column;
    gap: 14px;

    margin-bottom: 30px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #f5f5f5;
}

.valid-icon {
    color: #22c55e;
}

.invalid-icon {
    color: #ef4444;
}

/* PRICE */
.price {
    font-size: 2.2rem;
    font-weight: 700;

    color: #ff2d8d !important;

    margin-bottom: 25px;
}

/* STRIPE BUTTON */
.service-button {
    display: inline-block;

    width: 100%;

    text-align: center;
    text-decoration: none;

    padding: 16px 20px;

    border-radius: 50px;

    background-color: #ff2d8d;
    color: white;

    font-weight: 600;

    transition: transform 0.3s ease,
                background-color 0.3s ease;
}

.service-button:hover {
    background-color: #e60073;

    transform: translateY(-2px);
}

/* POPULAR CARD */
.popular-card {
    border: 2px solid #ff2d8d;

    transform: scale(1.03);

    transition: transform 0.3s ease;
}

.popular-card:hover {
    transform: scale(1.03) translateY(-5px);
}

/* POPULAR BADGE */
.popular-badge {
    position: absolute;
    top: 40px;
    right: -55px;

    background-color: #ff2d8d;
    color: white;

    padding: 10px 50px;

    font-size: 0.9rem;
    font-weight: 600;

    transform: rotate(45deg);

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* ABOUT */
.about-content {
    max-width: 800px;

    margin: 0 auto;

    text-align: center;
}

.about-content img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(255, 45, 141, 0.4);
    transition: transform 0.3s ease;
}

.about-content img:hover {
    transform: scale(1.05);
}

.about-content p {
    margin-bottom: 20px;
    color: #c7c7c7;
    font-size: 1.1rem;
}

/* CONTACT */

.contact-links {
    display: flex;
    justify-content: center;
    gap: 20px;

    flex-wrap: wrap;

    margin-bottom: 50px;
}

.contact-links a {
    text-decoration: none;

    color: #ff2d8d;
    font-weight: 600;

    transition: opacity 0.3s ease;
}

.contact-links a:hover {
    opacity: 0.7;
}

.contact-cta-button {
    text-decoration: none;

    color: #ff2d8d;
    font-weight: 600;

    transition: opacity 0.3s ease;
}

.contact.contact-cta-button:hover {
    opacity: 0.7;
}

/* FORM */



.contact-form {
    max-width: 700px;

    margin: 0 auto;

    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 18px;

    border: 1px solid rgba(255, 255, 255, 0.08);
    background-color: #151515;
    border-radius: 12px;

    font-family: inherit;
    font-size: 1rem;
    color: white;

    outline: none;

    transition: border-color 0.3s ease,
                box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ff2d8d;

    box-shadow: 0 0 10px rgba(255, 45, 141, 0.2);
}

.contact-form textarea {
    min-height: 180px;

    resize: vertical;
}

.contact-form button {
    padding: 16px;

    border: none;
    border-radius: 50px;

    background-color: #ff2d8d;

    color: white;
    font-size: 1rem;
    font-weight: 600;

    cursor: pointer;

    transition: background-color 0.3s ease,
                transform 0.3s ease;
}

.contact-form button:hover {
    background-color: #e60073;
    transform: translateY(-2px);
}

/* SCROLL ANIMATIONS */
.hero-content,
.section-title,
.portfolio-item,
.service-card,
.about-content,
.contact-form,
.contact-links {
    animation: fadeUp 1s ease forwards;
}

.portfolio-item:nth-child(2) {
    animation-delay: 0.2s;
}

.portfolio-item:nth-child(3) {
    animation-delay: 0.4s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media screen and (max-width: 900px) {


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

    .header {
        flex-direction: column;
        gap: 20px;
    }

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

    .popular-card {
        transform: none;
    }

    .popular-card:hover {
        transform: translateY(-5px);
    }
}

@media screen and (max-width: 600px) {

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

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

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

    .navbar {
        flex-wrap: wrap;
        justify-content: center;
    }

    section {
        padding: 80px 7%;
    }
}


