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

:root {
    /* Samarkand Blue - inspired by the famous blue-tiled mosques */
    --primary-blue-dark: #1E3A8A;
    --primary-blue: #3B82F6;

    /* Terracotta/Clay tones - traditional ceramics and spices */
    --terracotta-dark: #D97706;
    --terracotta: #F59E0B;

    /* Gold/Saffron - Silk Road wealth */
    --gold: #FCD34D;

    /* Background - Cream/Parchment */
    --cream-light: #FFFBEB;
    --cream: #FEF3C7;

    /* Text colors */
    --text-dark: #1F2937;
    --text-medium: #4B5563;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, var(--cream-light) 0%, var(--cream) 100%);
    color: var(--text-dark);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

/* Decorative background pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(30, 58, 138, 0.02) 35px, rgba(30, 58, 138, 0.02) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(217, 119, 6, 0.02) 35px, rgba(217, 119, 6, 0.02) 70px);
    z-index: -1;
}

/* Header Styles */
header {
    text-align: center;
    padding: 3rem 1rem 2rem;
    position: relative;
}

h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    color: var(--primary-blue-dark);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    animation: fadeInDown 0.8s ease-out;
}

.subtitle {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--terracotta-dark);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 0.3rem;
    animation: fadeInDown 0.8s ease-out 0.2s both;
}

.subtitle-uzbek {
    font-size: clamp(0.9rem, 2.5vw, 1.25rem);
    color: var(--text-medium);
    font-weight: 400;
    animation: fadeInDown 0.8s ease-out 0.3s both;
}

/* Decorative divider */
.divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--terracotta-dark), var(--gold), var(--terracotta-dark));
    margin: 2rem auto;
    border-radius: 2px;
    animation: fadeIn 1s ease-out 0.5s both;
}

/* Main Container */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeIn 1s ease-out 0.6s both;
}

.coming-soon {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 6vw, 3.5rem);
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.description {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.8;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Food Icons Container */
.food-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 3rem 0;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}

.icon-wrapper:hover {
    transform: translateY(-8px);
}

.food-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.15);
    border: 3px solid var(--gold);
    transition: all 0.3s ease;
}

.icon-wrapper:hover .food-icon {
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.25);
    border-color: var(--terracotta);
}

.food-icon svg {
    width: 40px;
    height: 40px;
}

.icon-label {
    font-size: 0.875rem;
    color: var(--text-medium);
    font-weight: 500;
}

/* Contact Section */
.contact {
    background: white;
    padding: 2rem 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--primary-blue);
    max-width: 500px;
    width: 100%;
    animation: fadeInUp 1s ease-out 1s both;
    position: relative;
    overflow: hidden;
}

/* Decorative corner pattern */
.contact::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, transparent 40%, var(--cream) 40%);
    opacity: 0.5;
}

.contact h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    color: var(--primary-blue-dark);
    margin-bottom: 1rem;
    position: relative;
}

.contact p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact a {
    color: var(--terracotta-dark);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
}

.contact a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.contact a:hover {
    color: var(--primary-blue);
}

.contact a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--text-medium);
    font-size: 0.875rem;
}

/* Decorative elements */
.ornament {
    position: fixed;
    opacity: 0.08;
    z-index: -1;
    pointer-events: none;
}

.ornament-top-left {
    top: 10%;
    left: 5%;
    width: 150px;
    height: 150px;
}

.ornament-bottom-right {
    bottom: 10%;
    right: 5%;
    width: 200px;
    height: 200px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

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

/* Responsive Design */
@media (max-width: 640px) {
    header {
        padding: 2rem 1rem 1rem;
    }

    .food-icons {
        gap: 1.5rem;
        margin: 2rem 0;
    }

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

    .food-icon svg {
        width: 30px;
        height: 30px;
    }

    .contact {
        padding: 1.5rem 2rem;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    main {
        padding: 3rem 2rem;
    }
}

@media (min-width: 1025px) {
    .icon-wrapper {
        animation: float 3s ease-in-out infinite;
    }

    .icon-wrapper:nth-child(2) {
        animation-delay: 0.5s;
    }

    .icon-wrapper:nth-child(3) {
        animation-delay: 1s;
    }

    .icon-wrapper:nth-child(4) {
        animation-delay: 1.5s;
    }

    .icon-wrapper:nth-child(5) {
        animation-delay: 2s;
    }
}
