@font-face {
    font-family: 'ESPA';
    src: url('Espa/espa.otf') format('opentype');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    cursor: url('cursor.png'), auto;
}

img:hover {
    transform: translate(2px, 5px);
    transition: all 0.3s ease;
}

section:hover{
    transition: none;
}

a, button, .hamburger {
    cursor: url('cursor.png'), pointer;
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-image: url('images/light-background.png');
    background-size: contain;
}

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 2rem;
    background: transparent;
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hamburger {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 2;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #000;
    margin: 6px 0;
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-family: 'ESPA', sans-serif;
}

.nav-links a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ffed00;
}

.instagram-link {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    color: #000;
    font-size: 1.8rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.instagram-link:hover {
    color: #ffed00;
}

section {
    min-height: 100vh;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: repeat-y;
    padding: 2rem;
    width: 100vw;
}

img {
    max-width: 100%;
    height: auto;
}

.hero{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.doodles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.doodle {
    position: absolute;
    max-width: 150px;
    transition: transform 0.1s ease-out;
}

.doodle:nth-child(1) {
    top: 15%;
    left: 10%;
}

.doodle:nth-child(2) {
    top: 60%;
    right: 15%;
}

.doodle:nth-child(3) {
    bottom: 20%;
    left: 20%;
}

.doodle:nth-child(4) {
    top: 30%;
    right: 25%;
}

.hero-card {
    position: relative;
    z-index: 1;
    width: 50%;    
}

.why-need-us{
    padding: 4rem;
    background-color: #ffed00;
    background-image: url('images/yellow-background.png');
    background-size:contain;
    display: grid;
    grid-template-columns: 60% 40%;
    align-items: center;
    justify-content: center;
}

.why-need-us-title{
    margin-left: 10px;
}

.brands-start{
    padding: 4rem;
    background-color: #ffed00;
    background-image: url('images/yellow-background.png');
    background-size:contain;
    display: grid;
    grid-template-columns: 60% 40%;
    align-items: center;
    justify-content: center;
}

.share-brand{
    padding: 4rem;
    background-image: url('images/light-background.png');
    background-size:contain;
    display: grid;
    grid-template-columns: 40% 60%;
    align-items: center;
    justify-content: center;
}

.get-managed{
    padding: 6rem;
    background-color: #ffed00;
    background-image: url('images/yellow-background.png');
    background-size:contain;
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
    justify-content: center;
}

.get-managed-card{
    align-self: first baseline;
}

.till-now{
    padding: 6rem;
    background-image: url('images/light-background.png');
    background-size:contain;
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
    justify-content: center;
}

.till-now-card{
    height: 70%;
}

.contact-us{
    padding: 4rem;
    background-image: url('images/light-background.png');
    background-size:contain;
    display: grid;
    grid-template-columns: 60% 40%;
    align-items: center;
    justify-content: center;
}

.contact-us-title{
    width: 90%;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    section {
        /* padding: 3rem 1.5rem; */
    }

    .hero-card {
        width: 70%;
    }

    .why-need-us,
    .brands-start,
    .share-brand,
    .get-managed,
    .till-now,
    .contact-us {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .doodle {
        max-width: 100px;
    }

    .till-now-card{
        height: auto;
    }

    .till-now-svg{
        scale: 1.4;
    }
        

@media screen and (max-width: 768px) {
    .navbar {
        padding: 1rem;
        background: transparent;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        padding: 2rem;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .navbar {
        padding: 1rem;
    }

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .nav-links a {
        font-size: 1rem;
    }

    .hero-card {
        width: 90%;
    }

    section {
        /* padding: 2rem 1rem; */
    }

    .doodle {
        max-width: 80px;
    }

    img {
        max-width: 100%;
    }

    .instagram-link {
        right: 1rem;
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .navbar {
        padding: 0.5rem;
    }

    .nav-links {
        gap: 0.5rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .hero-card {
        width: 95%;
    }

    section {
        /* padding: 1.5rem 0.75rem; */
    }

    .doodle {
        max-width: 60px;
    }

    .instagram-link {
        right: 0.75rem;
        font-size: 1.3rem;
    }
}
