/* Hero Section Layout */
.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.hero-left {
    text-align: center;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.template-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 25px;
    width: 100%;
    max-width: 480px;
    transform-style: preserve-3d;
    animation: gentleFloat 8s ease-in-out infinite;
}

@keyframes gentleFloat {
    0%, 100% {
        transform: translateY(0px) rotateX(2deg);
    }
    50% {
        transform: translateY(-15px) rotateX(-2deg);
    }
}

.template-img-small {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(155, 89, 182, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 20px rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.1), rgba(255, 182, 193, 0.1));
    backdrop-filter: blur(10px);
}

.template-img-small::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.template-img-small:hover::before {
    opacity: 1;
}

.template-img-small:first-child {
    grid-row: 1;
    animation: slideInTop 1s ease-out;
}

.template-img-small:last-child {
    grid-row: 2;
    animation: slideInBottom 1.2s ease-out;
}

.template-img-large {
    grid-column: 2;
    grid-row: 1 / 3;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 
        0 30px 60px rgba(155, 89, 182, 0.35),
        0 0 0 2px rgba(255, 255, 255, 0.15),
        inset 0 0 30px rgba(255, 255, 255, 0.08);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.15), rgba(255, 182, 193, 0.15));
    backdrop-filter: blur(15px);
    animation: slideInRight 1.1s ease-out;
}

.template-img-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.template-img-large:hover::before {
    opacity: 1;
}

@keyframes slideInTop {
    from {
        opacity: 0;
        transform: translateY(-30px) rotateX(-15deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

@keyframes slideInBottom {
    from {
        opacity: 0;
        transform: translateY(30px) rotateX(15deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px) rotateY(10deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotateY(0);
    }
}

.template-img-small img,
.template-img-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: inherit;
    filter: brightness(1.08) contrast(1.15) saturate(1.1);
}

.template-img-small:hover {
    transform: translateY(-8px) scale(1.03) rotateX(5deg);
    box-shadow: 
        0 35px 70px rgba(155, 89, 182, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 0 25px rgba(255, 255, 255, 0.1);
}

.template-img-large:hover {
    transform: translateY(-10px) scale(1.02) rotateX(3deg);
    box-shadow: 
        0 45px 90px rgba(155, 89, 182, 0.5),
        0 0 0 2px rgba(255, 255, 255, 0.25),
        inset 0 0 35px rgba(255, 255, 255, 0.15);
}

.template-img-small:hover img,
.template-img-large:hover img {
    transform: scale(1.08);
    filter: brightness(1.15) contrast(1.25) saturate(1.2);
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-left {
        text-align: center;
    }
    
    .template-images {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .template-img-large {
        grid-column: 1;
        grid-row: 1;
    }
    
    .template-img-small:first-child {
        grid-row: 2;
        grid-column: 1;
    }
    
    .template-img-small:last-child {
        grid-row: 3;
        grid-column: 1;
    }
}

/* Price Highlight in Hero */
.price-highlight {
    margin: 30px 0;
    text-align: center;
}

.price-start {
    display: inline-block;
    background: linear-gradient(135deg, var(--deep-purple), var(--dark-purple));
    color: var(--white);
    padding: 20px 40px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(155, 89, 182, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(155, 89, 182, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(155, 89, 182, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(155, 89, 182, 0.3);
    }
}

.price-label {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 5px;
}

.price-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.price-detail {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Template Showcase Section */
.template-showcase {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--baby-blue) 0%, var(--light-purple) 100%);
}

.showcase-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.template-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.template-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.template-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.template-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.template-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.template-item:hover .template-image img {
    transform: scale(1.1);
}

.template-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.template-item:hover .template-overlay {
    opacity: 1;
}

.template-overlay h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.template-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.template-btn {
    background: var(--deep-purple);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.template-btn:hover {
    background: var(--dark-purple);
    transform: translateY(-2px);
}

.showcase-cta {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.showcase-cta p {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.showcase-cta strong {
    color: var(--deep-purple);
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-purple) 0%, var(--baby-pink) 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 3px solid var(--deep-purple);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--deep-purple);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--dark-purple);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-size: 1.2rem;
    color: var(--gray);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--deep-purple);
}

.pricing-features ul {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features .fa-check {
    color: #27ae60;
}

.pricing-features .fa-times {
    color: #e74c3c;
}

.pricing-features .fa-gift {
    color: var(--deep-purple);
}

.pricing-footer {
    text-align: center;
}

/* Why Website Section */
.why-website {
    padding: 80px 0;
    background: var(--white);
}

.importance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.importance-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.importance-item:hover {
    background: var(--light-gray);
    transform: translateY(-5px);
}

.importance-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--baby-blue), var(--baby-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.importance-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-purple);
}

.importance-item p {
    color: var(--gray);
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-us {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--baby-pink) 0%, var(--light-purple) 100%);
}

.reasons-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-top: 50px;
    align-items: start;
}

.reason-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.reason-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.reason-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--deep-purple), var(--dark-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.reason-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark-purple);
}

.reason-content p {
    color: var(--gray);
    line-height: 1.6;
}

.stats-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: sticky;
    top: 20px;
}

.stats-card h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--dark-purple);
}

.stat-item {
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, var(--baby-blue), var(--baby-pink));
    border-radius: 15px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-purple);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    color: var(--dark);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .importance-grid {
        grid-template-columns: 1fr;
    }
    
    .reasons-content {
        grid-template-columns: 1fr;
    }
    
    .stats-card {
        position: static;
        margin-top: 30px;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 10px;
    }
}

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

:root {
    --baby-blue: #B8E6F5;
    --baby-pink: #FFD1DC;
    --light-purple: #E6E6FA;
    --deep-purple: #9B59B6;
    --dark-purple: #8E44AD;
    --white: #FFFFFF;
    --dark: #2C3E50;
    --gray: #7F8C8D;
    --light-gray: #ECF0F1;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

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

/* Pixel Text Effect */
.pixel-text {
    font-family: 'Space Mono', monospace;
    background: linear-gradient(45deg, var(--baby-blue), var(--baby-pink), var(--light-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.3);
    position: relative;
}

.pixel-text::before {
    content: attr(data-text);
    position: absolute;
    top: 2px;
    left: 2px;
    z-index: -1;
    background: linear-gradient(45deg, var(--deep-purple), var(--dark-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(155, 89, 182, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--deep-purple);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--baby-blue), var(--baby-pink), var(--light-purple));
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--baby-blue) 0%, var(--baby-pink) 50%, var(--light-purple) 100%);
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: pixelFloat 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, var(--deep-purple), var(--dark-purple));
    color: var(--white);
}

.btn-secondary {
    background: var(--white);
    color: var(--deep-purple);
    border: 2px solid var(--deep-purple);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(155, 89, 182, 0.3);
}

/* Pixel Background Animation */
.pixel-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.pixel-background::before,
.pixel-background::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 20px, rgba(255, 255, 255, 0.1) 20px, rgba(255, 255, 255, 0.1) 21px),
        repeating-linear-gradient(90deg, transparent, transparent 20px, rgba(255, 255, 255, 0.1) 20px, rgba(255, 255, 255, 0.1) 21px);
    animation: pixelMove 20s linear infinite;
}

.pixel-background::after {
    animation-delay: -10s;
    opacity: 0.5;
}

@keyframes pixelMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(21px, 21px); }
}

@keyframes pixelFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Section Styles */
section {
    padding: 80px 0;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark);
}

/* About Section */
.about {
    background: var(--white);
    margin-top: -1px;
    position: relative;
    z-index: 2;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--gray);
    font-size: 1.1rem;
}

.contact-info {
    margin-top: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--gray);
}

.info-item i {
    color: var(--deep-purple);
    width: 20px;
}

.about-image {
    display: flex;
    justify-content: center;
}

.pixel-avatar {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, var(--baby-blue), var(--baby-pink), var(--light-purple));
    border-radius: 10px;
    position: relative;
    box-shadow: 0 20px 40px rgba(155, 89, 182, 0.2);
}

.pixel-avatar::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, var(--deep-purple), var(--dark-purple));
    border-radius: 10px;
    z-index: -1;
}

/* Portfolio Section */
.portfolio {
    background: linear-gradient(135deg, var(--light-purple) 0%, var(--baby-blue) 100%);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(155, 89, 182, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(155, 89, 182, 0.2);
}

.portfolio-image {
    height: 250px;
    overflow: hidden;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--baby-blue), var(--baby-pink));
    position: relative;
}

.template-1 { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.template-2 { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.template-3 { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.template-4 { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
.template-5 { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
.template-6 { background: linear-gradient(135deg, #30cfd0 0%, #330867 100%); }

.placeholder-image::after {
    content: '🚀';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    opacity: 0.7;
}

.portfolio-info {
    padding: 1.5rem;
}

.portfolio-info h3 {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.portfolio-info p {
    color: var(--gray);
    margin-bottom: 1rem;
}

.view-btn {
    background: linear-gradient(45deg, var(--deep-purple), var(--dark-purple));
    color: var(--white);
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-btn:hover {
    transform: scale(1.05);
}

/* Contact Section */
.contact {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-text p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--baby-blue), var(--light-purple));
    border-radius: 10px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(155, 89, 182, 0.2);
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--deep-purple);
}

.contact-form {
    background: linear-gradient(135deg, var(--light-purple), var(--baby-pink));
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(155, 89, 182, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(155, 89, 182, 0.2);
}

/* Form Notice */
.form-notice {
    background: linear-gradient(135deg, var(--light-purple), var(--baby-pink));
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(155, 89, 182, 0.1);
    text-align: center;
}

.form-notice p {
    color: var(--dark);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-notice i {
    color: var(--deep-purple);
    font-size: 1.3rem;
}
.footer {
    background: linear-gradient(135deg, var(--deep-purple), var(--dark-purple));
    color: var(--white);
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--baby-pink);
    transform: translateY(-3px);
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .about-content {
        gap: 2rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 200px;
        text-align: center;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .contact-methods {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .contact-method {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }

    .pixel-avatar {
        width: 200px;
        height: 200px;
    }

    .contact-methods {
        align-items: stretch;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .about-text p,
    .contact-text p {
        font-size: 0.95rem;
    }
    
    .form-notice {
        padding: 1.5rem;
    }
    
    .form-notice p {
        font-size: 1rem;
    }
    
    .info-item {
        font-size: 0.9rem;
    }
    
    .portfolio-info {
        padding: 1rem;
    }
    
    .portfolio-info h3 {
        font-size: 1.1rem;
    }
    
    .portfolio-info p {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .btn {
        width: 180px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .pixel-avatar {
        width: 150px;
        height: 150px;
    }
}
