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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    overflow-x: hidden;
}

/* Banner Section with Paw Background */
.banner {
    height: 60vh;
    min-height: 400px;
    background-image: url('assets/paws-background.jpg');
    background-size: 400px 400px;
    background-repeat: repeat;
    background-color: #FFB6D9;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.banner-content {
    animation: fadeInUp 1s ease-out;
}

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

.title {
    font-size: 4em;
    color: white;
    text-shadow: 3px 3px 6px rgba(232, 129, 150, 0.5);
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

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

.back-btn {
    display: inline-block;
    background: linear-gradient(135deg, #FFBFD6 0%, #FFA3CA 100%);
    color: white;
    padding: 15px 35px;
    border-radius: 32px;
    text-decoration: none;
    font-size: 1.2em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(255, 191, 214, 0.4),
                0 0 0 0 rgba(182, 149, 252, 0.5);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.back-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.back-btn:hover::before {
    width: 300px;
    height: 300px;
}

.back-btn:hover {
    background: linear-gradient(135deg, #B695FC 0%, #9575D8 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 32px rgba(182, 149, 252, 0.5),
                0 0 20px rgba(255, 191, 214, 0.3);
}

/* Scrollable Sections */
.tos-wrapper {
    background: linear-gradient(180deg, #FFB6D9 0%, #FFCCE5 50%, #E5D4FF 100%);
    padding: 80px 20px;
    min-height: 60vh;
    position: relative;
    overflow: hidden;
}

.tos-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 191, 214, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(182, 149, 252, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.prices-wrapper {
    background: linear-gradient(180deg, #E5D4FF 0%, #FFCCE5 50%, #FFB6D9 100%);
    padding: 80px 20px;
    min-height: 60vh;
    position: relative;
    overflow: hidden;
}

.prices-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 20%, rgba(182, 149, 252, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 30% 80%, rgba(255, 191, 214, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.gallery-wrapper {
    background: linear-gradient(180deg, #FFB6D9 0%, #FFCCE5 50%, #E5D4FF 100%);
    padding: 80px 20px;
    min-height: 60vh;
    position: relative;
    overflow: hidden;
}

.gallery-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 191, 214, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.content-container {
    max-width: 1000px;
    margin: 0 auto;
    animation: fadeIn 0.8s ease-out;
    position: relative;
    z-index: 1;
}

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

/* Scroll Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

.scroll-reveal-delay-1 {
    transition-delay: 0.15s;
}

.scroll-reveal-delay-2 {
    transition-delay: 0.3s;
}

.scroll-reveal-delay-3 {
    transition-delay: 0.45s;
}

.scroll-reveal-delay-4 {
    transition-delay: 0.6s;
}

.section-title {
    font-size: 2.5em;
    color: white;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(255, 163, 202, 0.3),
                 0 0 20px rgba(255, 163, 202, 0.2);
    font-weight: bold;
    letter-spacing: 1px;
    animation: titleFloat 3s ease-in-out infinite;
}

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

/* TOS Section */
.tos-content {
    color: #666;
    line-height: 1.8;
    background: rgba(255, 250, 252, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 32px;
    box-shadow: 0 8px 32px rgba(232, 129, 150, 0.2),
                0 0 0 1px rgba(255, 191, 214, 0.2) inset;
    border: 3px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.tos-content:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(232, 129, 150, 0.25),
                0 0 0 1px rgba(255, 191, 214, 0.3) inset;
}

.tos-content p {
    margin-bottom: 20px;
    font-size: 1.1em;
}

/* Prices Section */
.payment-note {
    color: #FFA3CA;
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: none;
}

.price-category {
    margin-bottom: 40px;
    background: rgba(255, 250, 252, 0.95);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 32px;
    box-shadow: 0 8px 32px rgba(232, 129, 150, 0.2),
                0 0 0 1px rgba(255, 191, 214, 0.2) inset;
    border: 3px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.price-category:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(232, 129, 150, 0.25),
                0 0 0 1px rgba(255, 191, 214, 0.3) inset;
}

.price-category h3 {
    color: #FFA3CA;
    font-size: 2em;
    margin-bottom: 20px;
    text-shadow: none;
    font-weight: bold;
}

.price-table {
    background: rgba(255, 191, 214, 0.15);
    border-radius: 24px;
    padding: 20px;
    border: 2px solid rgba(255, 191, 214, 0.3);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid rgba(255, 191, 214, 0.2);
    transition: all 0.25s ease;
}

.price-row:last-child {
    border-bottom: none;
}

.price-row:hover {
    background: rgba(255, 191, 214, 0.25);
    border-radius: 16px;
}

.price-item {
    color: #666;
    font-size: 1.2em;
    flex: 1;
}

.price-item small {
    display: block;
    font-size: 0.85em;
    color: #888;
    margin-top: 5px;
}

.price-amount {
    color: #FFA3CA;
    font-size: 1.5em;
    font-weight: bold;
    margin-left: 20px;
    text-shadow: none;
}

.price-note {
    color: #666;
    font-size: 1.1em;
    line-height: 1.7;
    padding: 20px;
    background: rgba(255, 191, 214, 0.2);
    border-radius: 16px;
    border-left: 4px solid #FFBFD6;
    margin-top: 15px;
}

/* Gallery Section */
.gallery {
    column-count: 3;
    column-gap: 20px;
    margin-top: 30px;
}

.gallery-img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
    border-radius: 16px;
    border: 4px solid white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    break-inside: avoid;
    background: white;
    padding: 8px;
    position: relative;
}

.gallery-img::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 4px;
    background: linear-gradient(135deg, #FFBFD6, #B695FC, #FFA3CA);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.gallery-img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 163, 202, 0.4);
    border-color: #FFA3CA;
}

.gallery-img:hover::before {
    opacity: 1;
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

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

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 50px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 300;
    line-height: 1;
    user-select: none;
    z-index: 10001;
}

.lightbox-close:hover {
    color: #FFA3CA;
    transform: rotate(90deg);
}

/* Footer */
.footer {
    background-color: #E88196;
    color: white;
    padding: 30px 20px;
    text-align: center;
    font-size: 1em;
}

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

    .section-title {
        font-size: 2em;
    }

    .tos-content,
    .price-category {
        padding: 25px 20px;
    }

    .tos-content p {
        font-size: 1em;
    }

    .price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .price-amount {
        margin-left: 0;
    }

    .gallery {
        column-count: 2;
        column-gap: 15px;
    }

    .gallery-img {
        margin-bottom: 15px;
    }

    .tos-wrapper,
    .prices-wrapper,
    .gallery-wrapper {
        padding: 60px 15px;
    }

    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 40px;
    }

    .lightbox-content {
        max-width: 95%;
        max-height: 85%;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2em;
    }

    .section-title {
        font-size: 1.5em;
    }

    .banner {
        min-height: 300px;
    }

    .price-category h3 {
        font-size: 1.5em;
    }

    .gallery {
        column-count: 2;
        column-gap: 10px;
    }

    .gallery-img {
        margin-bottom: 10px;
    }

    .lightbox-close {
        font-size: 35px;
        top: 10px;
        right: 15px;
    }
}
