:root {
    --primary: #FF7043; /* Warm Orange */
    --secondary: #FFCC80; /* Soft Orange */
    --accent: #D32F2F; /* Deep Red */
    --bg-color: #FFF3E0; /* Very light orange/cream */
    --text-color: #5D4037; /* Brownish text for softer look */
    --white: #FFFFFF;
    --shadow: 0 10px 30px rgba(255, 112, 67, 0.2);
    --radius: 20px;
}

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

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, .logo {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.logo {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 900;
}

.btn-nav {
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 50px;
    background: var(--secondary);
    transition: transform 0.2s;
}

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

/* Hero Section */
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 40px 5%;
    min-height: 80vh;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    padding-right: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-color);
}

.hero .highlight {
    color: var(--primary);
    background: linear-gradient(120deg, rgba(255, 204, 128, 0.5) 0%, rgba(255, 204, 128, 0.5) 100%);
    background-repeat: no-repeat;
    background-size: 100% 40%;
    background-position: 0 80%;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #795548;
}

.btn-cta {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 112, 67, 0.4);
}

.hero-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 30px;
    /* Floating animation */
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Order Section */
.order-section {
    padding: 80px 5%;
    background: var(--white);
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

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

.subtitle {
    text-align: center;
    color: #999;
    margin-bottom: 40px;
}

/* Form Styles */
.order-form {
    background: var(--bg-color);
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid transparent;
    border-radius: 15px;
    background: var(--white);
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 112, 67, 0.1);
}

/* Customization Cards */
.customization-group {
    margin-bottom: 30px;
}

.customization-group h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
}

.option-card {
    cursor: pointer;
    position: relative;
}

.option-card input {
    position: absolute;
    opacity: 0;
}

.card-content {
    background: var(--white);
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.option-card input:checked + .card-content {
    border-color: var(--primary);
    background: #FFF8F5;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 112, 67, 0.15);
}

.emoji {
    font-size: 2rem;
}

.label {
    font-weight: 700;
}

.price {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 700;
}

.btn-submit {
    width: 100%;
    padding: 20px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
    box-shadow: var(--shadow);
}

.btn-submit:hover {
    background: #F4511E;
    transform: scale(1.02);
}

footer {
    text-align: center;
    padding: 40px;
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .hero { flex-direction: column-reverse; text-align: center; padding-top: 100px; }
    .hero-content { padding-right: 0; margin-top: 40px; }
    .hero-image { width: 100%; }
    .order-section { padding: 40px 5%; }
}
