:root {
    --primary-color: #ff914d;
    --primary-hover: #e87e3a;
    --bg-color: #fff9f5;
    --text-color: #2d3436;
    --card-bg: #ffffff;
    --section-spacing: 4rem;
    --border-radius: 16px;
    --shadow: 0 10px 30px rgba(255, 145, 77, 0.15);
}

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

body {
    font-family: 'Plus+Jakarta+Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    background-image: radial-gradient(#ff914d11 1px, transparent 1px);
    background-size: 20px 20px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

header {
    background: white;
    padding: 4rem 0;
    text-align: left;
    border-bottom: 1px solid #ffe8d9;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

header h1 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    line-height: 1.1;
}

header p {
    font-size: 1.25rem;
    color: #636e72;
    max-width: 500px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 20px 20px 60px rgba(255, 145, 77, 0.2);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-image:hover img {
    transform: scale(1.02);
}

.hero-image::after {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    bottom: -10px;
    left: -10px;
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    opacity: 0.1;
    z-index: -1;
}

.section {
    padding: var(--section-spacing) 0;
}

.section.secondary {
    background: #fff0e6;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 700;
}

.upload-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.file-input {
    padding: 2rem;
    border: 3px dashed var(--primary-color);
    border-radius: var(--border-radius);
    background: #fff9f5;
    width: 100%;
    max-width: 400px;
    cursor: pointer;
}

.style-select {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 2px solid #ffe8d9;
    font-size: 1.1rem;
    width: 100%;
    max-width: 400px;
    outline: none;
}

.style-select:focus {
    border-color: var(--primary-color);
}

.btn-generate {
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 145, 77, 0.3);
}

.btn-generate:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 145, 77, 0.4);
}

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

.card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.card.highlight {
    padding: 0 0 2rem 0;
}

.style-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #ffe8d9;
}

.card.highlight h3 {
    padding: 0 1.5rem;
}

.card.highlight p {
    padding: 0 1.5rem;
}

.card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.card p {
    color: #636e72;
}

footer {
    padding: 3rem 0;
    text-align: center;
    background: white;
    border-top: 1px solid #ffe8d9;
    color: #b2bec3;
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    header h1 {
        font-size: 3rem;
    }
    header p {
        margin: 0 auto;
    }
    .hero-image img {
        height: 350px;
    }
}

@media (max-width: 600px) {
    header h1 {
        font-size: 2.5rem;
    }
    .section {
        padding: 3rem 0;
    }
}

