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

:root {
    --primary-blue: #4A90E2;
    --light-blue: #87CEEB;
    --lime-green: #B8E986;
    --dark-green: #7ED321;
    --text-dark: #1A1A1A;
    --text-light: #666666;
    --bg-white: #FFFFFF;
    --gradient-start: #1A1A2E;
    --gradient-end: #16213E;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.header {
    padding: 30px 0;
    position: sticky;
    top: 0;
    background: var(--bg-white);
    z-index: 100;
    border-bottom: 1px solid transparent;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-dark);
}

.nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.plus-icon {
    font-size: 18px;
    font-weight: 300;
    line-height: 1;
}

/* Hero Section */
.hero {
    padding: 80px 0 120px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 500px;
}

.cta-button {
    background: var(--light-blue);
    color: var(--text-dark);
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.cta-button:hover {
    background: var(--primary-blue);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.arrow-icon {
    font-size: 20px;
    font-weight: 400;
}

/* Hero Right - Photo Section */
.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.photo-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
}

.photo-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: linear-gradient(135deg, var(--lime-green), var(--light-blue));
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(40px);
    z-index: 0;
}

.designer-photo {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-img {
    width: 70%;
    height: 70%;
    object-fit: cover;
    border-radius: 20px;
    border: 4px solid white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
}

.skill-tag {
    position: absolute;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.tag-webflow {
    background: var(--light-blue);
    top: 20%;
    left: -10%;
    transform: rotate(-5deg);
}

.tag-uiux {
    background: var(--lime-green);
    top: 10%;
    right: -5%;
    transform: rotate(5deg);
}

.tag-product {
    background: var(--dark-green);
    bottom: 20%;
    right: -10%;
    transform: rotate(-3deg);
}

/* Gradient Strip */
.gradient-strip {
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    padding: 30px 0;
    overflow: hidden;
    position: relative;
}

.strip-content {
    display: flex;
    align-items: center;
    gap: 20px;
    white-space: nowrap;
    animation: scroll 30s linear infinite;
}

.strip-text {
    color: white;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
}

.strip-star {
    color: white;
    font-size: 14px;
    opacity: 0.8;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--bg-white);
}

.about-title {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.about-content {
    max-width: 900px;
    margin: 0 auto 60px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    text-align: left;
}

.social-section {
    text-align: center;
    margin-top: 60px;
}

.social-label {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 500;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 50%;
}

.social-icon:hover {
    color: var(--primary-blue);
    transform: translateY(-3px);
    background: rgba(74, 144, 226, 0.1);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--bg-white);
}

.contact-title {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.contact-subtitle {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    transition: all 0.3s ease;
    background: var(--bg-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    background: var(--light-blue);
    color: var(--text-dark);
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    margin-top: 10px;
}

.submit-button:hover:not(:disabled) {
    background: var(--primary-blue);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-right {
        order: -1;
    }

    .photo-container {
        max-width: 400px;
    }
}

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

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .about-title {
        font-size: 32px;
    }

    .contact-title {
        font-size: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .nav {
        gap: 20px;
    }

    .nav-link {
        font-size: 14px;
    }

    .skill-tag {
        font-size: 12px;
        padding: 8px 14px;
    }

    .tag-webflow {
        left: -5%;
    }

    .tag-product {
        right: -5%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .about-title {
        font-size: 24px;
    }

    .contact-title {
        font-size: 24px;
    }

    .nav {
        gap: 15px;
    }

    .nav-link {
        font-size: 13px;
    }

    .plus-icon {
        display: none;
    }
}
