/* Aura Curry - Style Sheet */

/* CSS Reset & Variables */
:root {
    --primary: #1c1917; /* Warm dark stone */
    --primary-dark: #0c0a09;
    --primary-light: #fafaf9; /* Stone light cream background */
    --accent: #ea580c; /* Warm bright orange */
    --accent-hover: #c2410c;
    --accent-light: rgba(234, 88, 12, 0.08);
    --border-color: #e7e5e4;
    --text-dark: #1c1917;
    --text-muted: #78716c;
    --text-white: #ffffff;
    --font-sans: 'Outfit', 'Prompt', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-premium: 0 10px 25px -5px rgba(28, 25, 23, 0.08), 0 8px 10px -6px rgba(28, 25, 23, 0.08);
    --shadow-hover: 0 20px 25px -5px rgba(234, 88, 12, 0.1), 0 10px 10px -6px rgba(234, 88, 12, 0.05);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--primary-light);
    color: var(--text-dark);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.3;
    color: var(--primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

/* Header & Navbar */
.curry-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.spoon-icon {
    color: var(--accent);
    animation: bounceSpoon 4s infinite ease-in-out;
}

@keyframes bounceSpoon {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-4px) rotate(15deg); }
}

.accent-text {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 5px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

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

/* Language Switcher */
.lang-switch {
    background: white;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    display: flex;
    gap: 4px;
}

.lang-switch:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.active-lang {
    color: var(--accent);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-family: 'Prompt', sans-serif;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1.05rem;
}

.btn-accent {
    background-color: var(--accent);
    color: var(--text-white);
    border: none;
}

.btn-accent:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.4);
}

.btn-outline-dark {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline-dark:hover {
    background-color: var(--primary);
    color: white;
}

.btn-full-width {
    width: 100%;
}

.pulse-button {
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(234, 88, 12, 0.5); }
    70% { box-shadow: 0 0 0 10px rgba(234, 88, 12, 0); }
    100% { box-shadow: 0 0 0 0 rgba(234, 88, 12, 0); }
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 160px 0 100px 0;
    background-color: white;
    min-height: 90vh;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    padding: 6px 14px;
    background-color: var(--accent-light);
    border: 1px solid rgba(234, 88, 12, 0.3);
    color: var(--accent);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.hero-content h1 {
    font-size: 2.85rem;
    margin-bottom: 24px;
    color: var(--primary);
}

.hero-content p {
    font-size: 1.05rem;
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-food-img {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 50%;
    border: 12px solid white;
    box-shadow: 0 20px 40px -15px rgba(28, 25, 23, 0.25);
    animation: rotatePlate 120s infinite linear;
}

@keyframes rotatePlate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Section Header */
.section-title {
    margin-bottom: 50px;
}

.section-title.text-center {
    text-align: center;
}

.sub-title {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    display: block;
}

.section-title h2 {
    font-size: 2.25rem;
    margin-bottom: 15px;
}

/* Highlights Section */
.highlights-section {
    padding: 100px 0;
    background-color: var(--primary-light);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.highlight-card {
    background-color: white;
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    border-radius: 12px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-premium);
}

.highlight-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: var(--shadow-hover);
}

.icon-box {
    width: 64px;
    height: 64px;
    background-color: var(--accent-light);
    border: 1px solid rgba(234, 88, 12, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--accent);
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.highlight-card:hover .icon-box {
    background-color: var(--accent);
    color: var(--text-white);
}

.highlight-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.highlight-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Menu Section */
.menu-section {
    padding: 100px 0;
    background-color: white;
}

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

.menu-card {
    background-color: var(--primary-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-smooth);
}

.menu-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    background-color: white;
    box-shadow: var(--shadow-premium);
}

.menu-badge {
    position: absolute;
    top: -15px;
    left: 20px;
    background-color: var(--accent);
    color: var(--text-white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

.menu-card h3 {
    font-size: 1.2rem;
    margin-top: 5px;
    margin-bottom: 10px;
}

.menu-price {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--accent);
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.menu-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Combo Builder Section */
.combo-section {
    padding: 100px 0;
    background-color: var(--primary-light);
}

.combo-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
}

.combo-controls h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--primary);
    border-left: 4px solid var(--accent);
    padding-left: 10px;
}

.control-group {
    margin-bottom: 40px;
}

/* Rice Selector Cards */
.rice-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.rice-option {
    cursor: pointer;
    position: relative;
    user-select: none;
}

.rice-option input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.option-card-inner {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
    text-align: center;
    box-shadow: var(--shadow-premium);
}

.rice-icon {
    font-size: 2.25rem;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.rice-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.price-tag {
    color: var(--accent);
    font-weight: 700;
}

.rice-option:hover .option-card-inner {
    border-color: var(--accent);
}

.rice-option input:checked + .option-card-inner {
    border-color: var(--accent);
    background-color: var(--accent-light);
}

.rice-option input:checked + .option-card-inner .rice-icon {
    color: var(--accent);
    transform: scale(1.1);
}

/* Curry Count Radios */
.curry-count-selector {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.curry-count-option {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-premium);
}

.curry-count-option input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.custom-radio {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    margin-right: 15px;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.curry-count-option:hover .custom-radio {
    border-color: var(--accent);
}

.curry-count-option input:checked ~ .custom-radio {
    border-color: var(--accent);
    background-color: var(--accent);
}

.curry-count-option input:checked ~ .custom-radio::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    width: 6px;
    height: 6px;
    background-color: white;
    border-radius: 50%;
}

.option-details {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-weight: 500;
}

.addon-cost {
    color: var(--accent);
    font-weight: 700;
}

.curry-count-option input:checked ~ .option-details {
    color: var(--primary);
}

/* Checkbox Toppings */
.toppings-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.topping-item {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-premium);
}

.topping-item:hover {
    border-color: var(--accent);
}

.checkbox-container {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    position: relative;
    user-select: none;
    width: 100%;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkmark {
    position: relative;
    height: 20px;
    width: 20px;
    background-color: white;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    margin-right: 15px;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.checkbox-container:hover input ~ .checkmark {
    border-color: var(--accent);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--accent);
    border-color: var(--accent);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 4px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.topping-details {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.topping-name {
    font-weight: 500;
}

.topping-price {
    font-weight: 700;
    color: var(--accent);
}

/* Plate Preview Card */
.combo-preview-card {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
    height: fit-content;
}

.combo-preview-card h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    text-align: center;
}

.virtual-plate {
    width: 100%;
    max-width: 260px;
    height: 260px;
    background-color: var(--primary-light);
    border: 8px solid white;
    outline: 1px solid var(--border-color);
    border-radius: 50%;
    margin: 0 auto 30px auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.05), 0 10px 20px -5px rgba(28, 25, 23, 0.1);
}

.plate-icon {
    font-size: 4rem;
    color: #e7e5e4;
    position: absolute;
    z-index: 1;
}

.plate-ingredients-list {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

.plate-item {
    font-size: 0.8rem;
    font-weight: 600;
    background-color: var(--accent);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    animation: popIn 0.3s ease-out;
}

.plate-item.rice-base {
    background-color: #78716c;
}

.plate-item.extra-topping {
    background-color: #b45309;
}

@keyframes popIn {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.breakdown-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 0.95rem;
}

.total-row {
    font-size: 1.15rem;
    font-weight: 700;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    margin-top: 10px;
}

.plate-total {
    color: var(--accent);
    font-size: 1.85rem;
    font-weight: 700;
    font-family: 'Prompt', sans-serif;
}

.preview-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.5;
    text-align: center;
}

/* Catering Section */
.catering-section {
    padding: 100px 0;
    background-color: white;
}

.catering-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.catering-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.catering-info p {
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.catering-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.feature-item i {
    color: #10b981;
    font-size: 1.25rem;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--primary-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}

.location-map .address {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.location-map .address i {
    color: var(--accent);
    font-size: 1.2rem;
    margin-top: 4px;
}

.map-card {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-premium);
}

.map-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.map-placeholder h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.map-placeholder p {
    font-size: 0.9rem;
    margin-bottom: 25px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

/* Hours List */
.hours-list {
    margin-bottom: 40px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.hours-row.closed {
    color: var(--accent);
    font-weight: 500;
}

.hours-row .time {
    font-weight: 600;
}

/* Quick Contact buttons */
.quick-contact h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.quick-contact p {
    font-size: 0.9rem;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-phone {
    background-color: var(--accent);
    color: white;
}

.btn-phone:hover {
    background-color: var(--accent-hover);
}

.btn-line {
    background-color: #06c755;
    color: white;
}

.btn-line:hover {
    background-color: #05b04b;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(6, 199, 85, 0.4);
}

/* Footer */
.curry-footer {
    background-color: white;
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
}

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

.footer-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.footer-socials a:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--text-white);
    transform: scale(1.1);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background-color: var(--accent);
    color: var(--text-white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 99;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
}

/* Mobile Menu Drawer */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: white;
    border-left: 1px solid var(--border-color);
    z-index: 1001;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.mobile-menu.open {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 25px;
    right: 25px;
    background: transparent;
    border: none;
    color: var(--primary);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.mobile-link {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 10px 0;
    border-bottom: 1px solid rgba(28, 25, 23, 0.05);
}

.mobile-link:hover {
    color: var(--accent);
}

.mobile-lang-switch {
    align-self: flex-start;
    margin-bottom: 20px;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(12, 10, 9, 0.4);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Media Queries */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        order: -1;
        margin-bottom: 20px;
    }
    
    .combo-grid, .contact-grid, .catering-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .catering-visual {
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.25rem;
    }
    
    .section-title h2 {
        font-size: 1.75rem;
    }
    
    .rice-selector {
        grid-template-columns: 1fr;
    }
}
