/* ===== Global Styles ===== */
:root {
    /* Pastel Color Palette */
    --pastel-pink: #FFD1DC;
    --pastel-peach: #FFECD2;
    --pastel-lavender: #E8D5F2;
    --pastel-mint: #D4F1E4;
    --pastel-blue: #D4E6F1;
    --pastel-yellow: #FFF9C4;

    /* Text Colors */
    --text-primary: #5D4E6D;
    --text-secondary: #8B7BA3;
    --text-light: #A89BBE;

    /* Accent Colors */
    --accent-coral: #FF9A8B;
    --accent-purple: #D4A5FF;
    --accent-teal: #7FDBDA;
}

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

body {
    font-family: 'Kanit', 'Nunito', sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg,
            var(--pastel-pink) 0%,
            var(--pastel-peach) 25%,
            var(--pastel-lavender) 50%,
            var(--pastel-mint) 75%,
            var(--pastel-blue) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* ===== Background Decorations ===== */
.background-decorations {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.paw-print {
    position: absolute;
    font-size: 2rem;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}

.paw-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.paw-2 {
    top: 20%;
    right: 10%;
    animation-delay: 1s;
}

.paw-3 {
    top: 60%;
    left: 8%;
    animation-delay: 2s;
}

.paw-4 {
    top: 80%;
    right: 15%;
    animation-delay: 3s;
}

.paw-5 {
    top: 40%;
    left: 3%;
    animation-delay: 4s;
}

.paw-6 {
    top: 70%;
    right: 5%;
    animation-delay: 5s;
}

.floating-pet {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.2;
    animation: floatPet 8s ease-in-out infinite;
}

.pet-1 {
    top: 15%;
    right: 20%;
    animation-delay: 0s;
}

.pet-2 {
    bottom: 20%;
    left: 15%;
    animation-delay: 2s;
}

.pet-3 {
    top: 50%;
    right: 8%;
    animation-delay: 4s;
}

.pet-4 {
    bottom: 30%;
    right: 25%;
    animation-delay: 6s;
}

.heart {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.2;
    animation: heartbeat 2s ease-in-out infinite;
}

.heart-1 {
    top: 25%;
    left: 20%;
    animation-delay: 0s;
}

.heart-2 {
    bottom: 35%;
    right: 30%;
    animation-delay: 0.5s;
}

.heart-3 {
    top: 45%;
    left: 10%;
    animation-delay: 1s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

@keyframes floatPet {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-15px) scale(1.05);
    }
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* ===== Main Container ===== */
.container {
    text-align: center;
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 40px;
    box-shadow:
        0 20px 60px rgba(147, 112, 219, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset,
        0 0 80px rgba(255, 182, 193, 0.3);
    max-width: 550px;
    width: 100%;
    position: relative;
    z-index: 1;
    animation: containerPop 0.8s ease-out;
}

@keyframes containerPop {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ===== Logo Section ===== */
.logo-section {
    margin-bottom: 25px;
}

.logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
    border-radius: 50%;
    box-shadow:
        0 10px 30px rgba(212, 165, 255, 0.4),
        inset 0 2px 10px rgba(255, 255, 255, 0.6);
    animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.house-icon {
    font-size: 3rem;
    position: absolute;
}

.pet-icon {
    font-size: 1.8rem;
    position: absolute;
    bottom: 15px;
    right: 15px;
}

/* ===== Shop Name ===== */
.shop-name {
    margin-bottom: 10px;
    line-height: 1.3;
}

.name-main {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-primary);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.name-petshop {
    display: block;
    font-size: 2.2rem;
    font-weight: 600;
    background: linear-gradient(90deg, var(--accent-coral), var(--accent-purple), var(--accent-teal));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGradient 3s linear infinite;
}

@keyframes textGradient {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.location {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
    font-weight: 400;
}

/* ===== Coming Soon Section ===== */
.coming-soon-section {
    padding: 30px 0;
    margin: 20px 0;
    position: relative;
}

.coming-soon-section::before,
.coming-soon-section::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-purple), transparent);
}

.coming-soon-section::before {
    top: 0;
}

.coming-soon-section::after {
    bottom: 0;
}

.coming-soon {
    font-family: 'Nunito', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 4px;
    text-transform: uppercase;
    animation: comingSoonPulse 2s ease-in-out infinite;
    text-shadow:
        3px 3px 0 var(--pastel-pink),
        6px 6px 0 rgba(212, 165, 255, 0.3);
}

@keyframes comingSoonPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.02);
        opacity: 0.9;
    }
}

.dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    background: var(--accent-coral);
    border-radius: 50%;
    animation: dotBounce 1.5s ease-in-out infinite;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
    background: var(--accent-purple);
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
    background: var(--accent-teal);
}

@keyframes dotBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ===== Tagline ===== */
.tagline {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: 25px;
    font-weight: 400;
}

/* ===== Pet Icons ===== */
.pet-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.pet-emoji {
    font-size: 2.2rem;
    padding: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 209, 220, 0.5));
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: default;
}

.pet-emoji:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 30px rgba(147, 112, 219, 0.25);
}

/* ===== Footer ===== */
.footer {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 2px dashed var(--pastel-lavender);
}

.footer p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.contact-placeholder {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.contact-placeholder span {
    font-size: 1.8rem;
    padding: 12px;
    background: var(--pastel-peach);
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-placeholder span:nth-child(2) {
    background: var(--pastel-mint);
}

.contact-placeholder span:nth-child(3) {
    background: var(--pastel-blue);
}

.contact-placeholder span:hover {
    transform: scale(1.15) rotate(10deg);
}

/* ===== Feasibility Button ===== */
.feasibility-btn {
    margin-top: 20px;
    padding: 8px 16px;
    font-size: 0.75rem;
    background: linear-gradient(135deg, var(--pastel-lavender), var(--pastel-mint));
    border: none;
    border-radius: 20px;
    color: var(--text-primary);
    cursor: pointer;
    font-family: 'Kanit', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.feasibility-btn:hover {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(147, 112, 219, 0.3);
}

/* ===== Password Modal ===== */
.password-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.password-modal-content {
    background: white;
    padding: 35px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 350px;
    width: 90%;
    animation: modalPop 0.3s ease-out;
}

@keyframes modalPop {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.password-modal-content h3 {
    color: var(--text-primary);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.password-modal-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.password-modal-content input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--pastel-lavender);
    border-radius: 10px;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 15px;
    font-family: 'Kanit', sans-serif;
    transition: border-color 0.3s ease;
}

.password-modal-content input:focus {
    outline: none;
    border-color: var(--accent-purple);
}

.password-modal-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.password-modal-buttons button {
    padding: 10px 25px;
    border: none;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    font-family: 'Kanit', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

.password-modal-buttons button:first-child {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-teal));
    color: white;
}

.password-modal-buttons button:first-child:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(147, 112, 219, 0.4);
}

.password-modal-buttons .cancel-btn {
    background: var(--pastel-pink);
    color: var(--text-primary);
}

.password-modal-buttons .cancel-btn:hover {
    background: #ffb8c6;
}

.password-error {
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 10px;
    min-height: 20px;
}

/* ===== Responsive Design ===== */
@media (max-width: 600px) {
    .container {
        padding: 35px 25px;
        border-radius: 30px;
    }

    .name-main {
        font-size: 2.2rem;
    }

    .name-petshop {
        font-size: 1.8rem;
    }

    .coming-soon {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .logo-icon {
        width: 80px;
        height: 80px;
    }

    .house-icon {
        font-size: 2.5rem;
    }

    .pet-icon {
        font-size: 1.4rem;
    }

    .pet-emoji {
        font-size: 1.8rem;
        padding: 10px;
    }

    .floating-pet,
    .paw-print {
        display: none;
    }
}

@media (max-width: 400px) {
    .coming-soon {
        font-size: 2rem;
    }

    .name-main {
        font-size: 1.8rem;
    }

    .name-petshop {
        font-size: 1.5rem;
    }
}