/* Global Styles - Light Culinary Theme */
:root {
    --primary-color: #ff6b35;
    --secondary-color: #f7931e;
    --accent-color: #4ecdc4;
    --success-color: #45b7d1;
    --light-bg: #fefefe;
    --lighter-bg: #f8f9fa;
    --card-bg: rgba(255, 255, 255, 0.95);
    --text-color: #2c3e50;
    --text-muted: #6c757d;
    --border-color: rgba(255, 107, 53, 0.2);
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px rgba(255, 107, 53, 0.3);
    --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    --gradient-secondary: linear-gradient(135deg, #4ecdc4 0%, #45b7d1 100%);
    --gradient-accent: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
    --gradient-bg: linear-gradient(135deg, #fefefe 0%, #f8f9fa 50%, #f1f3f4 100%);
    --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
    --font-script: 'Dancing Script', cursive;
}

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

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-color);
    background: var(--gradient-bg);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Modern Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: var(--gradient-bg);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    animation: float 15s ease-in-out infinite;
    opacity: 0.1;
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
}

.element-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    background: var(--gradient-primary);
}

.element-2 {
    width: 80px;
    height: 80px;
    top: 65%;
    right: 20%;
    animation-delay: 2s;
    background: var(--gradient-secondary);
}

.element-3 {
    width: 100px;
    height: 100px;
    bottom: 25%;
    left: 30%;
    animation-delay: 4s;
    background: var(--gradient-accent);
}

.element-4 {
    width: 60px;
    height: 60px;
    top: 35%;
    right: 15%;
    animation-delay: 6s;
    background: var(--gradient-primary);
}

.element-5 {
    width: 90px;
    height: 90px;
    bottom: 60%;
    right: 55%;
    animation-delay: 8s;
    background: var(--gradient-secondary);
}

.element-6 {
    width: 70px;
    height: 70px;
    top: 80%;
    left: 75%;
    animation-delay: 10s;
    background: var(--gradient-accent);
}

/* Light Particles */
.light-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: sparkle 8s linear infinite;
    box-shadow: 0 0 15px var(--primary-color);
}

.particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
    animation-duration: 6s;
}

.particle:nth-child(2) {
    top: 40%;
    right: 30%;
    animation-delay: 1s;
    animation-duration: 8s;
}

.particle:nth-child(3) {
    bottom: 40%;
    left: 25%;
    animation-delay: 2s;
    animation-duration: 7s;
}

.particle:nth-child(4) {
    top: 70%;
    right: 20%;
    animation-delay: 3s;
    animation-duration: 9s;
}

.particle:nth-child(5) {
    bottom: 30%;
    right: 50%;
    animation-delay: 4s;
    animation-duration: 5s;
}

.particle:nth-child(6) {
    top: 60%;
    left: 70%;
    animation-delay: 5s;
    animation-duration: 10s;
}

/* Gradient Overlay */
.gradient-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(78, 205, 196, 0.05) 0%, transparent 50%);
    animation: overlayPulse 12s ease-in-out infinite;
}

/* Animation Keyframes */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.2;
    }
}

@keyframes sparkle {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }
    50% {
        transform: scale(1) rotate(180deg);
        opacity: 1;
    }
    100% {
        transform: scale(0) rotate(360deg);
        opacity: 0;
    }
}

@keyframes overlayPulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

/* Coming Soon Container */
.coming-soon-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero-section {
    text-align: center;
    margin-bottom: 4rem;
}

.brand-logo {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
}

.logo-container {
    position: relative;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-main {
    width: 140px;
    height: 140px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft), 0 0 40px rgba(255, 107, 53, 0.3);
    animation: logoPulse 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.logo-main i {
    font-size: 4rem;
    color: white;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    animation: iconGlow 3s ease-in-out infinite;
}

.logo-rings {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ring {
    position: absolute;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: ringRotate 20s linear infinite;
    opacity: 0.3;
}

.ring-1 {
    width: 160px;
    height: 160px;
    top: 10px;
    left: 10px;
    animation-delay: 0s;
    border-color: var(--primary-color);
}

.ring-2 {
    width: 180px;
    height: 180px;
    top: 0;
    left: 0;
    animation-delay: 5s;
    border-color: var(--secondary-color);
}

.ring-3 {
    width: 200px;
    height: 200px;
    top: -10px;
    left: -10px;
    animation-delay: 10s;
    border-color: var(--accent-color);
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes iconGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    }
    50% {
        text-shadow: 0 0 40px rgba(255, 255, 255, 1);
    }
}

@keyframes ringRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: titleFadeIn 2s ease-out;
}

.hero-subtitle {
    font-family: var(--font-script);
    font-size: 2.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    animation: subtitleSlideIn 2s ease-out 0.5s both;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    animation: descriptionFadeIn 2s ease-out 1s both;
}

@keyframes titleFadeIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes subtitleSlideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes descriptionFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Section */
.contact-section {
    margin-bottom: 4rem;
}

.contact-container {
    background: var(--gradient-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 3rem;
    max-width: 500px;
    margin: 0 auto;
    transition: all 0.5s ease;
    box-shadow: var(--shadow-soft);
    animation: containerSlideUp 2s ease-out 1.5s both;
}

.contact-container:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(255, 107, 53, 0.4);
}

.contact-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-header h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.contact-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.contact-item:hover {
    background: rgba(255, 107, 53, 0.05);
    transform: translateX(10px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.4s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.contact-icon i {
    color: white;
    font-size: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 600;
    font-family: var(--font-primary);
}

@keyframes containerSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Features Section */
.features-section {
    margin-top: 4rem;
}

.feature-card {
    background: var(--gradient-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.5s ease;
    box-shadow: var(--shadow-soft);
    height: 100%;
    animation: featureCardFadeIn 2s ease-out 2s both;
}

.feature-card:nth-child(2) {
    animation-delay: 2.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 2.4s;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(255, 107, 53, 0.4);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.3);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(15deg);
    box-shadow: 0 12px 35px rgba(78, 205, 196, 0.4);
}

.feature-icon i {
    color: white;
    font-size: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.feature-card h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

@keyframes featureCardFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Page Styles */
.contact-page-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}

.page-header {
    margin-bottom: 4rem;
}

.page-title {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: titleFadeIn 2s ease-out;
}

.page-subtitle {
    font-family: var(--font-script);
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    animation: subtitleSlideIn 2s ease-out 0.5s both;
}

.contact-info-card {
    background: var(--gradient-card);
    backdrop-filter: blur(30px);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.5s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.8s;
}

.contact-info-card:hover::before {
    left: 100%;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(255, 107, 53, 0.4);
}

.contact-form-card {
    background: var(--gradient-card);
    backdrop-filter: blur(30px);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    padding: 3.5rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.5s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.8s;
}

.contact-form-card:hover::before {
    left: 100%;
}

.contact-form-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(255, 107, 53, 0.4);
}

.contact-form {
    position: relative;
    z-index: 1;
}

.contact-form .form-group {
    margin-bottom: 2.5rem;
}

.contact-form .form-label {
    color: var(--text-color);
    font-weight: 700;
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
    font-family: var(--font-display);
    text-transform: uppercase;
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 1.8rem 2.5rem;
    font-size: 1.2rem;
    transition: all 0.5s ease;
    color: var(--text-color);
    backdrop-filter: blur(15px);
    font-weight: 500;
    font-family: var(--font-primary);
}

.contact-form .form-control:focus {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.4rem rgba(255, 107, 53, 0.2), var(--shadow-glow);
    outline: none;
    transform: translateY(-5px);
}

.contact-form .form-control::placeholder {
    color: var(--text-muted);
    font-family: var(--font-primary);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 160px;
}

.btn-submit {
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 20px;
    padding: 1.8rem 3rem;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-shadow: var(--shadow-soft);
    font-family: var(--font-display);
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: var(--shadow-glow);
}

.btn-submit i {
    margin-right: 1.5rem;
}

.success-message {
    background: rgba(78, 205, 196, 0.1);
    border: 1px solid rgba(78, 205, 196, 0.3);
    border-radius: 25px;
    padding: 3.5rem;
    text-align: center;
    margin-top: 2.5rem;
    backdrop-filter: blur(30px);
    position: relative;
    z-index: 1;
    box-shadow: 0 0 50px rgba(78, 205, 196, 0.3);
}

.success-icon {
    margin-bottom: 2.5rem;
}

.success-icon i {
    font-size: 6rem;
    color: var(--accent-color);
    animation: pulse 3s ease-in-out infinite;
    text-shadow: 0 0 40px rgba(78, 205, 196, 0.6);
}

.success-message h4 {
    color: var(--text-color);
    margin-bottom: 2rem;
    font-weight: 800;
    font-size: 2rem;
    letter-spacing: 3px;
    font-family: var(--font-display);
    text-transform: uppercase;
}

.success-message p {
    color: var(--text-muted);
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.8;
    font-weight: 500;
    font-family: var(--font-primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }

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

    .hero-description {
        font-size: 1rem;
    }

    .logo-container {
        width: 150px;
        height: 150px;
    }

    .logo-main {
        width: 120px;
        height: 120px;
    }

    .logo-main i {
        font-size: 3rem;
    }

    .contact-container {
        padding: 2rem;
    }

    .contact-header h3 {
        font-size: 1.5rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
    }

    .feature-icon i {
        font-size: 1.5rem;
    }

    .feature-card h4 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .logo-container {
        width: 120px;
        height: 120px;
    }

    .logo-main {
        width: 100px;
        height: 100px;
    }

    .logo-main i {
        font-size: 2.5rem;
    }

    .contact-container {
        padding: 1.5rem;
    }

    .contact-item {
        padding: 1.5rem;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
    }

    .contact-icon i {
        font-size: 1.2rem;
    }

    .contact-value {
        font-size: 1rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-icon i {
        font-size: 1.3rem;
    }

    .feature-card h4 {
        font-size: 1.2rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .page-title {
        font-size: 3rem;
    }

    .page-subtitle {
        font-size: 1.3rem;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 2rem;
    }

    .contact-form .form-control {
        padding: 1.2rem 1.5rem;
    }

    .btn-submit {
        padding: 1.2rem 2rem;
    }

    .success-message {
        padding: 2rem;
    }

    .success-icon i {
        font-size: 4rem;
    }

    .success-message h4 {
        font-size: 1.5rem;
    }

    .success-message p {
        font-size: 1rem;
    }
}