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

:root {
    --teal: #2a9d8f;
    --teal-dark: #1f7a6f;
    --teal-light: #3dbdad;
    --rose: #c4506e;
    --rose-light: #d4728a;
    --brick: #b85c38;
    --brick-light: #d4845a;
    --charcoal: #1a1a2e;
    --charcoal-mid: #16213e;
    --slate: #2d3446;
    --cream: #f0e6d3;
    --cream-muted: #d4c5b0;
    --warm-white: #faf5ef;
}

body {
    font-family: 'Georgia', serif;
    background: linear-gradient(160deg, var(--charcoal) 0%, var(--charcoal-mid) 40%, var(--slate) 100%);
    background-attachment: fixed;
    color: var(--cream);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: fadeIn 1.5s ease-in;
}

.logo {
    max-width: 420px;
    width: 85%;
    height: auto;
    margin-bottom: 2rem;
    border-radius: 16px;
    filter: drop-shadow(0 10px 40px rgba(42, 157, 143, 0.3));
    animation: float 4s ease-in-out infinite;
}

/* Grand Opening Banner */
.grand-opening {
    background: linear-gradient(135deg, var(--rose) 0%, var(--brick) 100%);
    padding: 1rem 2.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 25px rgba(196, 80, 110, 0.35);
    animation: pulse 2.5s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.opening-badge {
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.25rem;
    color: var(--cream);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.opening-date {
    font-size: 2rem;
    font-weight: bold;
    color: var(--warm-white);
    margin-top: 0.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

h1 {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 0.3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    background: linear-gradient(45deg, var(--cream), var(--teal-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--cream-muted);
    margin-bottom: 3rem;
}

/* Info Section */
.info-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 900px;
    margin-top: 2rem;
}

.info-card {
    background: rgba(42, 157, 143, 0.06);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(42, 157, 143, 0.15);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(42, 157, 143, 0.15);
    background: rgba(42, 157, 143, 0.1);
    border-color: rgba(42, 157, 143, 0.25);
}

.info-card .icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
    color: var(--teal);
    stroke-width: 1.5;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--cream);
    font-weight: 400;
    letter-spacing: 0.1rem;
}

.info-card p {
    color: var(--cream-muted);
    line-height: 1.8;
    margin: 0.3rem 0;
}

.store-name {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--teal-light) !important;
    margin-bottom: 0.5rem;
}

.mall-info {
    font-style: italic;
    color: #8a8a8a !important;
    margin-top: 0.8rem;
}

.email-link {
    display: inline-block;
    color: var(--teal-light);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    background: rgba(42, 157, 143, 0.1);
    border: 1px solid rgba(42, 157, 143, 0.2);
    border-radius: 10px;
    margin: 1rem 0;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.email-link:hover {
    background: rgba(42, 157, 143, 0.2);
    border-color: rgba(42, 157, 143, 0.4);
    transform: scale(1.05);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--warm-white);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--rose) 0%, var(--brick) 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    font-weight: 500;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(196, 80, 110, 0.35);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

/* Instagram Section */
.instagram-section {
    margin-top: 4rem;
    width: 100%;
    max-width: 900px;
}

.instagram-section h2 {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--cream);
    text-transform: uppercase;
}

.instagram-embed-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.instagram-media {
    margin: 0 auto !important;
    max-width: 540px !important;
}

footer {
    padding: 2rem 0;
    text-align: center;
    color: #6a6a7a;
    font-size: 0.9rem;
}

/* Decorative alley brick pattern at bottom */
footer::before {
    content: '';
    display: block;
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--teal), var(--rose), var(--brick), transparent);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
        letter-spacing: 0.2rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .logo {
        max-width: 320px;
    }

    .info-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .opening-date {
        font-size: 1.5rem;
    }

    .opening-badge {
        font-size: 1rem;
    }

    .instagram-section h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
        letter-spacing: 0.1rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .logo {
        max-width: 260px;
    }

    .grand-opening {
        padding: 0.8rem 1.5rem;
    }

    .opening-date {
        font-size: 1.3rem;
    }

    .opening-badge {
        font-size: 0.9rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .info-card h3 {
        font-size: 1.2rem;
    }

    .email-link,
    .social-link {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }
}
