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

:root {
    --primary: #20a4ba;
    --secondary: #c06c84;
    --accent: #f86944;
    --purple: #9b59b6;
    --blue: #3498db;
    --green: #2ecc71;
    --yellow: #ffffaa;
    --orange: #e67e22;
    --dark: #323232;
	--white: #fff;
    --light: #fff5f8;
    --shadow: rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Noto Sans HK", sans-serif;
	font-weight: 400;
    background: linear-gradient(180deg, #fff 0%, #fff 100%);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    position: relative;
	
}

/* White border overlay */
body::before {
    content: '';
    position: fixed;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid var(--primary);
    pointer-events: none;
    z-index: 9999;
    border-radius: 0;
	transition: all 0.3s ease;
}

body.scrolled::before {
	content: '';
    position: fixed;
    border: 2px solid var(--primary);
	top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
	pointer-events: none;
    z-index: 9999;
    border-radius: 0;
}

.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/bg.gif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1; /* Keep it behind content */
}

/* Cat Cursor */
.cat-cursor {
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: none;
    opacity: 0;
}

.cat-cursor.visible {
    opacity: 1;
}

.cat-cursor .cat-gif {
    width: 250px;
    height: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transition: none;
}

/* Circle Transition Animations */
.circle-transition {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: white;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    opacity: 0;
    transition: none;
}

/* Initial loading circle - starts big and shrinks */
.circle-transition.initial {
    width: 300vmax;
    height: 300vmax;
    opacity: 1;
    animation: shrinkCircle 0.8s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

/* Navigation circle - starts small and grows */
.circle-transition.active {
    opacity: 1;
    animation: growCircle 0.8s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes shrinkCircle {
    0% {
        width: 300vmax;
        height: 300vmax;
        opacity: 1;
    }
    100% {
        width: 0;
        height: 0;
        opacity: 1;
    }
}

@keyframes growCircle {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 300vmax;
        height: 300vmax;
        opacity: 1;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Floating Decorative Shapes */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 1;
    animation: float 20s infinite ease-in-out;
}

.shape-2 {
    top: 70%;
    right: 10%;
    animation-delay: 0.2s;
}

.shape-2 img{
    width: 25vw;
}

.shape-4 {
    top: 50%;
    left: -10%;
    animation-delay: 0.6s;
}

.shape-4 img{
    width: 30vw;
}

.shape-5 {
    top: 10%;
    right: -10%;
    animation-delay: 0.8s;
}

.shape-5 img{
    width: 20vw;
}

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    backdrop-filter: blur(10px);
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 0px 0px var(--shadow);
    transition: all 0.3s ease;
    border-radius: 0px;
    margin: 15px;
	background-image: url("../images/top_bar.jpg");
	background-position: top;
	background-repeat: no-repeat;
	background-size: cover;

}

.nav.scrolled {
    padding: 0.5rem 1rem;
    box-shadow: 0 0px 0px var(--shadow);
	margin: 0px;
}

.nav-logo {
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 30px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
	font-size: 0.9rem;
    text-decoration: none;
    color: var(--white);
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--yellow), var(--yellow));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--yellow);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 6rem 2rem 4rem;
    overflow: hidden;
    z-index: 2;
}

.hero-content {
    text-align: center;
    z-index: 10;
}

/* Hero Logo */
.hero-logo-container {
    margin-bottom: 2rem;
    perspective: 1000px;
}

.hero-logo {
    max-width: 450px;
    width: 70%;
    height: auto;
    display: block;
    margin: 0 auto;
    cursor: pointer;
    transition: all 0.4s ease;
    
}

.hero-logo:hover {
    transform: scale(1.05) rotate(-2deg);
    
}

.hero-logo:active {
    transform: scale(0.98) rotate(2deg);
}

/* Hero Logo Bounce Animation */
@keyframes logoBounce {
    0% {
        transform: scale(1);
    }
    30% {
        transform: scale(1.15) rotate(-5deg);
    }
    50% {
        transform: scale(0.95) rotate(5deg);
    }
    70% {
        transform: scale(1.08) rotate(-3deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

.hero-title {
    font-family: "Noto Sans HK", sans-serif;
	font-weight: 700;
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 700;
    line-height: 0.9;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hero-title-word {
    background: linear-gradient(135deg, 
        var(--primary) 0%, 
        var(--purple) 25%, 
        var(--blue) 50%, 
        var(--green) 75%, 
        var(--yellow) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 3s ease infinite, bounce 2s ease-in-out infinite;
    display: inline-block;
}

.hero-title-word:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 0rem;
}

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

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

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--accent);
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.downarrow{
		width:25px;
	}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--blue));
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.hero-cats {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.cat-float {
    position: absolute;
    font-size: 4rem;
    animation: catFloat 8s ease-in-out infinite;
    opacity: 1;
}

.cat-float2 {
    position: absolute;
    font-size: 4rem;
    animation: catFloat2 6s ease-in-out infinite;
    opacity: 1;
}

.cat-1 {
    bottom: -10%;
    left: 0%;
    animation-delay: 0s;
}

.cat-1 img{
    width: 25vw;
}

.cat-2 {
    bottom: -12%;
    right: 3%;
    animation-delay: 0.2s;
}

.cat-2 img{
    width: 25vw;
}

.cat-3 {
    top: 20%;
    left: 15%;
    animation-delay: 0.4s;
}


.cat-3 img{
    width: 13vw;
}

.cat-5 {
    top: 5%;
    right: 15%;
    animation-delay: 0.8s;
}

.cat-5 img{
    width: 16vw;
}

@keyframes catFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-10px) rotate(5deg) scale(1.1);
    }
    50% {
        transform: translateY(-20px) rotate(-5deg) scale(1);
    }
    75% {
        transform: translateY(-10px) rotate(5deg) scale(0.9);
    }
}

@keyframes catFloat2 {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-15px) rotate(-3deg) scale(0.9);
    }
    50% {
        transform: translateY(-25px) rotate(3deg) scale(1);
    }
    75% {
        transform: translateY(-15px) rotate(-3deg) scale(1.1);
    }
}

/* Section Styles */
section {
    padding: 3rem 0;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title {
    font-family: "Noto Sans HK", serif;
	font-weight: 700;
    font-size: clamp(2.0rem, 5vw, 4rem);
    background: linear-gradient(135deg, var(--primary), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.title-decoration {
    font-size: 2rem;
    color: var(--accent);
    letter-spacing: 0.5rem;
}

/* About Section */
.about {
    background: white;
    border-radius: 30px;
    margin: 0 3rem 3rem 3rem;
    box-shadow: 0 10px 50px var(--shadow);
}

.about-text {
    max-width: 100%;
}

.about-intro {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-text p {
	text-align: justify;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    align-items: start;
}

.about-photo {
    position: relative;
}

.about-image {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.about-image:hover {
    transform: translateY(-5px) rotate(-2deg);
    box-shadow: 0 15px 40px var(--shadow);
}


.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}



.feature-item {
    text-align: center;
    padding: 2rem;
    background: var(--light);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: spin 3s ease-in-out infinite;
}

@keyframes spin {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.feature-item h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--dark);
    margin: 0;
}

/* Gallery Section */
.gallery {
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.85) 0%, 
        rgba(224, 233, 248, 0.55) 100%);
    overflow: hidden;
    padding: 6rem 0 8rem 0;
    position: relative;
}

/* Cloud Overlays */
.cloud-overlays {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10;
}

.cloud-overlay {
    position: absolute;
    opacity: 1;
    will-change: transform; /* Optimize for scroll animation */
    transition: transform 0.1s linear; /* Smooth scroll effect */
}

.cloud-1 {
    top: 10%;
    left: 5%;
}

.cloud-1 img{
    width: 22vw;
}

.cloud-2 {
    top: 35%;
    right: -18%;
}

.cloud-2 img{
    width: 35vw;
}

.cloud-5 {
    top: 45%;
    left: 15%;
}

.cloud-5 img{
    width: 27vw;
}

.cloud-3 {
    top: 50%;
    left: 10%;
}

.cloud-3 img{
    width: 20vw;
}

.cloud-6 {
    top: 65%;
    right: -25%;
}

.cloud-6 img{
    width: 45vw;
}

.cloud-4 {
    top: 100%;
    left: 15%;
}

.cloud-4 img{
    width: 30vw;
}

.cloud-7 {
    top: 145%;
    right: 10%;
}

.cloud-7 img{
    width: 35vw;
}

.gallery-grid {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    min-height: 4200px;
    padding: 2rem;
}

.gallery-item {
    position: absolute;
    border-radius: 10px;
	border: 0px white solid;
    overflow: hidden;
    transition: all 0.5s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    animation: floatGallery 6s ease-in-out infinite;
    aspect-ratio: 1;
}

/* Bigger square sizes - all items are square */


/* Random rows with 1-2 images each, allowing overflow */

/* Row 1 - 2 images */
.gallery-item:nth-child(1) {
    top: 60px;
    left: 0%;
    width: 35vw;
	max-width: 500px;
	min-width: 400px;
    transform: rotate(-6deg);
    z-index: 3;
    animation-delay: 0s;
}

.gallery-item:nth-child(2) {
    top: 120px;
    right: -5%;
    width: 35vw;
	max-width: 550px;
	min-width: 450px;
    transform: rotate(8deg);
    z-index: 2;
    animation-delay: 0.8s;
}

/* Row 2 - 1 image */
.gallery-item:nth-child(3) {
    top: 620px;
    left: 35%;
    width: 33vw;
	max-width: 500px;
	min-width: 400px;
    transform: rotate(-5deg);
    z-index: 4;
    animation-delay: 1.6s;
}

/* Row 3 - 2 images */
.gallery-item:nth-child(4) {
    top: 1100px;
    left: 8%;
    width: 28vw;
	max-width: 400px;
	min-width: 3;
    transform: rotate(7deg);
    z-index: 2;
    animation-delay: 2.4s;
}

.gallery-item:nth-child(5) {
    top: 1180px;
    right: 0%;
    width: 35vw;
	max-width: 550px;
	min-width: 450px;
    transform: rotate(-4deg);
    z-index: 5;
    animation-delay: 3.2s;
}

/* Row 4 - 1 image */
.gallery-item:nth-child(6) {
    top: 1720px;
    left: 0%;
    width: 35vw;
	max-width: 450px;
	min-width: 350px;
    transform: rotate(-6deg);
    z-index: 3;
    animation-delay: 4s;
}

/* Row 5 - 2 images */
.gallery-item:nth-child(7) {
    top: 2220px;
    left: 20%;
    width: 28vw;
	max-width: 400px;
	min-width: 300px;
    transform: rotate(-7deg);
    z-index: 4;
    animation-delay: 4.8s;
}

.gallery-item:nth-child(8) {
    top: 1940px;
    right: 0%;
    width: 35vw;
	max-width: 550px;
	min-width: 400px;
    transform: rotate(5deg);
    z-index: 2;
    animation-delay: 0.4s;
}

/* Row 6 - 1 image */
.gallery-item:nth-child(9) {
    top: 2700px;
    right: 5%;
    width: 25vw;
	max-width: 400px;
	min-width: 300px;
    transform: rotate(-3deg);
    z-index: 3;
    animation-delay: 1.2s;
}

/* Row 7 - 2 images */
.gallery-item:nth-child(10) {
    top: 2900px;
    left: 6%;
    width: 35vw;
	max-width: 550px;
	min-width: 450px;
    transform: rotate(6deg);
    z-index: 5;
    animation-delay: 2s;
}

.gallery-item:nth-child(11) {
    top: 3180px;
    right: 0%;
    width: 30vw;
	max-width: 450px;
	min-width: 350px;
    transform: rotate(-5deg);
    z-index: 2;
    animation-delay: 2.8s;
}

/* Row 8 - 1 image */
.gallery-item:nth-child(12) {
    top: 3540px;
    left: 30%;
    width: 36vw;
	max-width: 500px;
	min-width: 400px;
    transform: rotate(4deg);
    z-index: 4;
    animation-delay: 3.6s;
}

@keyframes floatGallery {
    0%, 100% {
        transform: translateY(0) rotate(var(--rotate));
    }
    50% {
        transform: translateY(-20px) rotate(calc(var(--rotate) + 3deg));
    }
}

.gallery-item:nth-child(1) { --rotate: -6deg; }
.gallery-item:nth-child(2) { --rotate: 8deg; }
.gallery-item:nth-child(3) { --rotate: -5deg; }
.gallery-item:nth-child(4) { --rotate: 7deg; }
.gallery-item:nth-child(5) { --rotate: -4deg; }
.gallery-item:nth-child(6) { --rotate: 6deg; }
.gallery-item:nth-child(7) { --rotate: -7deg; }
.gallery-item:nth-child(8) { --rotate: 5deg; }
.gallery-item:nth-child(9) { --rotate: -3deg; }
.gallery-item:nth-child(10) { --rotate: 6deg; }
.gallery-item:nth-child(11) { --rotate: -5deg; }
.gallery-item:nth-child(12) { --rotate: 4deg; }

.gallery-item:hover {
    transform: scale(1.08) rotate(0deg) !important;
    /* z-index: 100 !important; */
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.02);
}

/* Shop Section */
.shop {
    padding: 4rem 0rem;
    background: white;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.container-fluid {
    width: 100%;
    padding:0;
}

.shop-intro {
    text-align: justify;
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.shop-slider-wrapper {
    width: 100%;
    overflow: hidden;
    cursor: grab;
    position: relative;
	padding: 4rem  1rem;
}

.shop-slider-wrapper:active {
    cursor: grabbing;
}

.shop-slider {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.shop-slider.dragging {
    transition: none;
}

.shop-slider.auto-scroll {
    transition: transform 0.5s linear;
}

.shop-slide {
    flex-shrink: 0;
    width: 300px;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shop-slide:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

.shop-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}

/* Video Section */
.video {
    background: linear-gradient(0deg, 
        rgba(235, 234, 220, 0.5) 0%, 
        rgba(235, 234, 220, 0.5) 100%);
}

.video-wrapper {
    max-width: 300px;
	max-height: 300px;
    margin: 0 auto 3rem;
    border-radius: 15px;
    overflow: hidden;
    
}

.video-placeholder {
    background: var(--white);
    aspect-ratio: 1/1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 0rem;
    text-align: center;
}

.video-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

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

.video-placeholder p {
    font-size: 1.3rem;
    margin: 0.5rem 0;
}

.video-placeholder img {
    width: 100%
}

.video-hint {
    font-size: 1rem;
    opacity: 0.8;
}

.video-wrapper video {
    width: 100%;
    display: block;
}

.video-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.mingnque{
	border-radius: 15px;
	width: 100%;
	
}

/* Contact Section */
.contact {
    color: white;
    text-align: center;
    padding: 6rem 1rem 4rem 1rem;
	background-image: url("../images/bg2.png");
	background-position: top;
	background-repeat: repeat;
	background-size: cover;

}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
	margin-top: 50px;
}

.contact-title {
	font-family: "Noto Sans HK", serif;
	font-weight: 700;
    font-size: clamp(2.0rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.contact-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: nowrap; /* Keep in one row on desktop */
    margin-bottom: 3rem;
}

.caterpillar{
	position: absolute;
	top: 0px;
	right: 5%;
}

.caterpillar img{
	width: 20vw;
	min-width: 170px;
}

.ig-button,
.shop-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: white;
    color: var(--primary);
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    min-width: 280px;
}

.ig-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    transition: width 0.6s ease, height 0.6s ease, top 0.6s ease, left 0.6s ease;
    z-index: 0;
}

.shop-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(45deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    transition: width 0.6s ease, height 0.6s ease, top 0.6s ease, left 0.6s ease;
    z-index: 0;
}

.ig-button:hover::before,
.shop-button:hover::before {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
}

.ig-button:hover,
.shop-button:hover {
    transform: scale(1.0) rotate(-3deg);
    color: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}


.ig-icon,
.ig-text,
.ig-sparkle,
.shop-icon,
.shop-text,
.shop-sparkle {
    position: relative;
    z-index: 1;
}

.ig-icon img {
    width: 20px;
}

.shop-icon img {
    width: 30px;
}

.ig-sparkle,
.shop-sparkle{
    animation: sparkle 1.5s ease-in-out infinite;
}

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

.contact-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 0;
}

.contact-link {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-link:hover {
    transform: translateY(-3px);
    text-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.contact-link span {
    font-size: 1.5rem;
}

/* Footer */
.footer {
    background: #206e7b;
    color: white;
    text-align: center;
    padding: 2rem;

}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 1rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.mobile-break {
  display: none;
}


/* Modal - Removed (not needed for gallery) */

/* Responsive Design */

@media (max-width: 1300px) {
	.gallery-grid {
		max-width: 900px;
		min-height: 4000px;
	}
	.about-content {
		grid-template-columns: 300px 1fr;
	}
}



@media (max-width: 1000px) {
	.gallery-grid {
		max-width: 700px;
		height: 4000px;
		min-height: 4000px;
	}
	.about-content {
		grid-template-columns: 250px 1fr;
	}
}



@media (max-width: 768px) {
	.mobile-break {
		display: block; /* or display: inline; */
	}
    body::before {
        top: 11px;
        left: 11px;
        right: 11px;
        bottom: 11px;
    }
    .nav {
        margin: 11px;
		padding: 0.5rem 1.5rem;
    }
    
	.nav.scrolled {
		padding: 0.5rem 1rem;
		box-shadow: 0 0px 0px var(--shadow);
	}
	
    .nav-menu {
        position: fixed;
        top: 48px;
        left: -105%;
		height: 100vh;
		opacity: 0.95;
        flex-direction: column;
		text-align: center;
        background: #206e7b;
        width: calc(100% - 0px);
        margin-left: 0px;
        padding: 2rem;
        box-shadow: 0 0px 0px #000;
        transition: left 0.3s ease;
        gap: 1rem;
        border-radius: 0px;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .cat-cursor {
        display: none;
    }
    
    .nav-logo-img {
        height: 30px;
    }
    
    .hero-logo {
        max-width: 350px;
        width: 75%;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-cta {
		justify-content: center;
    }
    
    .cat-float {
        font-size: 2.5rem;
    }
    
	.downarrow{
		width:20px;
	}
	
	.shape-2 {
		top: 90%;
		right: 5%;
		animation-delay: 0.2s;
	}

	.shape-2 img{
		width: 35vw;
	}

	.shape-4 {
		top: 65%;
		left: -10%;
		animation-delay: 0.6s;
	}

	.shape-4 img{
		width: 30vw;
	}

	.shape-5 {
		top: 10%;
		right: -5%;
		animation-delay: 0.8s;
	}

	.shape-5 img{
		width: 30vw;
	}
	
	.cat-1 {
		top: 70%;
		left: 0%;
		animation-delay: 0s;
	}

	.cat-1 img{
		width: 45vw;
	}

	.cat-2 {
		top: 70%;
		right: 3%;
		animation-delay: 0.2s;
	}

	.cat-2 img{
		width: 35vw;
	}

	.cat-3 {
		top: 10%;
		left: 10%;
		animation-delay: 0.4s;
	}


	.cat-3 img{
		width: 25vw;
	}

	.cat-5 {
		top: 10%;
		right: 5%;
		animation-delay: 0.8s;
	}

	.cat-5 img{
		width: 25vw;
	}
	
	
    /* Mobile cloud sizes - scale down to 50% of desktop */
    .cloud-1 {
		top: 15%;
		left: -15%;
	}

	.cloud-1 img{
		width: 50vw;
	}

	.cloud-2 {
		top: 35%;
		right: -8%;
	}

	.cloud-2 img{
		width: 45vw;
	}

	.cloud-5 {
		top: 40%;
		left: 5%;
	}

	.cloud-5 img{
		width: 47vw;
	}

	.cloud-3 {
		top: 50%;
		left: -10%;
	}

	.cloud-3 img{
		width: 55vw;
	}

	.cloud-6 {
		top: 65%;
		right: -25%;
	}

	.cloud-6 img{
		width: 45vw;
	}

	.cloud-4 {
		top: 95%;
		left: 15%;
	}

	.cloud-4 img{
		width: 50vw;
	}

	.cloud-7 {
		top: 135%;
		right: 10%;
	}

	.cloud-7 img{
		width: 45vw;
	}
    
	.about {
		border-radius: 30px;
		margin: 0 1.5rem 3rem 1.5rem;
		box-shadow: 0 10px 50px var(--shadow);
	}
	
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-photo {
        display: flex;
        justify-content: center;
    }
    
    .about-image {
        width: 100%;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
   
    .shop {
        margin: 0;
        border-radius: 0px;
    }
    

	
    /* Mobile gallery - random rows with 1-2 images, maintain square ratio */
	
    .gallery-grid {
        height: 3900px;
		min-height: 3900px;
        padding: 1rem 0;
        position: relative;
    }
    
    .gallery-item {
        position: absolute !important;
        width: 70vw !important;
        height: 70vw !important;
        max-width: 400px !important;
        max-height: 400px !important;
    }
    
    /* Row 1 - 2 images */
		.gallery-item:nth-child(1) {
			top: 10px;
			left: -5%;
			min-width: 200px;
			width: 45vw;
			transform: rotate(-6deg);
			z-index: 3;
			animation-delay: 0s;
		}

		.gallery-item:nth-child(2) {
			top: 250px;
			right: -5%;
			width: 35vw;
			min-width: 300px;
			transform: rotate(8deg);
			z-index: 2;
			animation-delay: 0.8s;
		}

		/* Row 2 - 1 image */
		.gallery-item:nth-child(3) {
			top: 620px;
			left: 5%;
			width: 50vw;
			min-width: 350px;
			min-height: 350px;
			transform: rotate(-5deg);
			z-index: 4;
			animation-delay: 1.6s;
		}

		/* Row 3 - 2 images */
		.gallery-item:nth-child(4) {
			top: 950px;
			left: 28%;
			width: 28vw;
			min-width: 300px;
			min-height: 300px;
			transform: rotate(7deg);
			z-index: 2;
			animation-delay: 2.4s;
		}

		.gallery-item:nth-child(5) {
			top: 1280px;
			left: 0%;
			width: 35vw;
			min-width: 250px;
			min-height: 250px;
			transform: rotate(-4deg);
			z-index: 5;
			animation-delay: 3.2s;
		}

		/* Row 4 - 1 image */
		.gallery-item:nth-child(6) {
			top: 1580px;
			left: 30%;
			width: 35vw;
			min-width: 250px;
			min-height: 250px;
			transform: rotate(-6deg);
			z-index: 3;
			animation-delay: 4s;
		}

		/* Row 5 - 2 images */
		.gallery-item:nth-child(7) {
			top: 2220px;
			left: 20%;
			width: 5vw;
			min-width: 250px;
			min-height: 250px;
			transform: rotate(-7deg);
			z-index: 4;
			animation-delay: 4.8s;
		}

		.gallery-item:nth-child(8) {
			top: 1840px;
			left: 0%;
			width: 5vw;
			min-width: 50px;
			min-height: 50px;
			transform: rotate(5deg);
			z-index: 2;
			animation-delay: 0.4s;
		}

		/* Row 6 - 1 image */
		.gallery-item:nth-child(9) {
			top: 2500px;
			right: 20%;
			width: 5vw;
			min-width: 350px;
			min-height: 350px;
			transform: rotate(-3deg);
			z-index: 3;
			animation-delay: 1.2s;
		}

		/* Row 7 - 2 images */
		.gallery-item:nth-child(10) {
			top: 2900px;
			left: 26%;
			width: 35vw;
			min-width: 250px;
			min-height: 250px;
			transform: rotate(6deg);
			z-index: 5;
			animation-delay: 2s;
		}

		.gallery-item:nth-child(11) {
			top: 3180px;
			left: 0%;
			width: 10vw;
			min-width: 200px;
			min-height: 200px;
			transform: rotate(-5deg);
			z-index: 2;
			animation-delay: 2.8s;
		}

		/* Row 8 - 1 image */
		.gallery-item:nth-child(12) {
			top: 3450px;
			left: 15%;
			width: 36vw;
			min-width: 350px;
			min-height: 350px;
			transform: rotate(4deg);
			z-index: 4;
			animation-delay: 3.6s;
		}
    
    /* Set minimum height for gallery grid on mobile */
    .gallery {
        min-height: calc(565vw + 800px);
    }
    
    .shop-slide {
        width: 300px;
        height: 300px;
    }
    
    .contact-buttons {
        flex-direction: column;
        gap: 1rem;
		width: 80%;
		margin: auto;
    }
    
    .ig-button,
    .shop-button {
        font-size: 1.2rem;
        padding: 1.2rem 2rem;
        min-width: 200px;
    }
    
    .contact-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
	body::before {
        top: 7px;
        left: 7px;
        right: 7px;
        bottom: 7px;
    }
    
    .nav {
        margin: 7px;
    }
}


/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Print Styles */
@media print {
    .nav,
    .floating-shapes,
    .hero-cats,
    .modal {
        display: none !important;
    }
}

