/* CSS Variables */
:root {
    --yellow-bg: #FFD700;
    --yellow-bg-alt: #FFEB3B;
    --black-text: #000000;
    --magenta-text: #FF00FF;
    --magenta-alt: #E91E63;
    --white: #FFFFFF;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background-color: var(--yellow-bg);
    color: var(--black-text);
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Header */
.header {
    padding: 30px 0;
    position: relative;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    height: 60px;
    width: auto;
    transition: var(--transition);
    animation: logoFadeIn 1s ease-out;
}

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

@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Hero Section */
.hero {
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    width: 100%;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--black-text);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-title {
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 900;
    color: var(--magenta-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 40px;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(30px);
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.hero-title.animate-fade-up,
.hero-subtitle.animate-fade-up,
.branding.animate-fade-up {
    opacity: 1 !important;
}

.hero-title:hover {
    transform: scale(1.02);
    text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.15);
    opacity: 1 !important;
}

/* Branding Section */
.branding {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 50px;
    opacity: 0;
    transform: translateY(30px);
}

.geometric-shapes {
    display: flex;
    align-items: center;
    gap: 12px;
}

.shape {
    background-color: var(--black-text);
    transition: var(--transition);
}

.shape:hover {
    transform: scale(1.2) rotate(5deg);
}

.shape-square {
    width: 20px;
    height: 20px;
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 20px solid var(--black-text);
    background: none;
    transform: rotate(90deg);
}

.shape-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.brand-name {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: normal;
    color: var(--black-text);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: var(--transition);
}

.branding:hover .brand-name {
    transform: translateX(5px);
    color: var(--magenta-text);
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
    color: var(--black-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0;
    transform: translateY(30px);
}

.services-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.service-item {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 700;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--black-text);
    opacity: 0;
    transform: translateX(-30px);
    transition: var(--transition);
}

.service-item:hover {
    transform: translateX(10px);
    color: var(--magenta-text);
}

.bullet {
    font-size: 1.2em;
    flex-shrink: 0;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 700px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.contact-item:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    stroke: var(--black-text);
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    stroke: var(--magenta-text);
    transform: scale(1.1);
}

.contact-link,
.contact-text {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 700;
    color: var(--black-text);
    text-decoration: none;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--magenta-text);
    text-decoration: underline;
}

/* Social Section */
.social {
    padding: 60px 0;
    background-color: rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background-color: var(--black-text);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.social-link:hover {
    background-color: var(--magenta-text);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 0, 255, 0.3);
}

.social-icon {
    width: 24px;
    height: 24px;
    transition: var(--transition);
}

.social-link:hover .social-icon {
    transform: rotate(5deg) scale(1.1);
}

/* Footer */
.footer {
    padding: 40px 0;
    background-color: var(--black-text);
    color: var(--white);
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer .logo {
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Animation Classes */
.animate-fade-up {
    animation: fadeUp 0.8s ease-out forwards;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeUp {
    to {
        opacity: 1 !important;
        transform: translateY(0);
    }
}

/* Ensure hero elements stay visible at all times after animation */
.hero-title.animate-fade-up,
.hero-title,
.hero-subtitle.animate-fade-up,
.branding.animate-fade-up {
    opacity: 1 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 20px 0;
    }

    .logo {
        height: 45px;
    }

    .hero {
        min-height: 40vh;
        padding: 40px 0;
    }

    .hero-subtitle {
        margin-bottom: 15px;
    }

    .hero-title {
        margin-bottom: 30px;
    }

    .branding {
        flex-direction: column;
        gap: 10px;
        margin-top: 30px;
    }

    .geometric-shapes {
        gap: 10px;
    }

    .services,
    .contact {
        padding: 60px 0;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

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

    .social-link {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .service-item {
        font-size: 1rem;
    }

    .contact-item {
        padding: 20px;
    }
}

/* Smooth page load animation */
body {
    animation: pageLoad 0.5s ease-out;
}

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