* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    overflow-x: hidden;
    background: #000;
    color: #fff;
}

/* Floating Confetti Background */
.confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    background: #f0f;
    position: absolute;
    animation: confetti-fall 8s linear infinite;
    z-index: 0;
}

@keyframes confetti-fall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Glowing particles */
.particle {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.6;
    animation: float 6s infinite ease-in-out;
    z-index: 0;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    25% {
        transform: translateY(-30px) translateX(20px);
    }

    50% {
        transform: translateY(-60px) translateX(-20px);
    }

    75% {
        transform: translateY(-30px) translateX(10px);
    }
}

/* Header */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(26, 25, 25, 0.938);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(255, 0, 128, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ff0080, #ff8c00, #40e0d0, #ff0080);
    background-size: 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: all 0.3s;
    font-size: 0.95rem;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff0080, #ff8c00);
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    transform: translateY(-3px);
    color: #ff0080;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ff0080;
    transition: all 0.3s;
}

/* Hero Section - Fixed padding to prevent header overlap */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    /* background: linear-gradient(135deg, #1a0033 0%, #330033 50%, #1a0033 100%); */
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    width: 300%;
    height: 300%;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 0, 128, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(64, 224, 208, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 140, 0, 0.3) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 2rem;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff0080, #ff8c00, #40e0d0, #ff0080);
    background-size: 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 3s ease infinite, bounce 2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.5s both;
    text-shadow: 0 0 20px rgba(255, 0, 128, 0.5);
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(45deg, #ff0080, #ff8c00);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(255, 0, 128, 0.6);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 30px rgba(255, 0, 128, 0.6);
    }

    50% {
        box-shadow: 0 0 50px rgba(255, 0, 128, 1);
    }
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 50px rgba(255, 0, 128, 0.8);
}

/* About Section */
.about {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #1a0033 0%, #0a0015 100%);
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 4rem;
    background: linear-gradient(45deg, #ff0080, #ff8c00, #40e0d0);
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 3s ease infinite;
    font-weight: 900;
}

.about-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    animation: slideInLeft 1s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-text h3 {
    font-size: 2.2rem;
    color: #ff0080;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(255, 0, 128, 0.5);
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.9;
    color: #ccc;
}

.about-image {
    position: relative;
    animation: slideInRight 1s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(255, 0, 128, 0.3);
    transition: all 0.5s;
    border: 3px solid rgba(255, 0, 128, 0.3);
}

.about-image img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 30px 80px rgba(255, 0, 128, 0.6);
}

/* Owner Section */
.owner {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #0a0015 0%, #1a0033 100%);
    position: relative;
}

.owner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.owner-image-wrapper {
    position: relative;
    animation: fadeInLeft 1s ease;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.owner-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid rgba(255, 0, 128, 0.5);
    box-shadow: 0 20px 60px rgba(255, 0, 128, 0.4);
    position: relative;
    margin: 0 auto;
    transition: all 0.5s;
}

.owner-image:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 30px 80px rgba(255, 0, 128, 0.7);
}

.owner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.owner-text {
    animation: fadeInRight 1s ease;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.owner-text h3 {
    font-size: 2.5rem;
    color: #ff8c00;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 140, 0, 0.5);
}

.owner-text .title {
    font-size: 1.3rem;
    color: #40e0d0;
    margin-bottom: 2rem;
    font-style: italic;
}

.owner-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #ccc;
    margin-bottom: 1.5rem;
}

.owner-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: #ff0080;
    padding: 1.5rem;
    border-left: 4px solid #ff0080;
    background: rgba(255, 0, 128, 0.1);
    border-radius: 10px;
    margin-top: 2rem;
}

/* Products Section */
.products {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #1a0033 0%, #0a0015 100%);
    position: relative;
}

.products-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.1), rgba(64, 224, 208, 0.1));
    border-radius: 30px;
    padding: 2.5rem;
    text-align: center;
    border: 2px solid rgba(255, 0, 128, 0.3);
    transition: all 0.5s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.product-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 0, 128, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
}

.product-card:hover::before {
    left: 100%;
}

.product-card:hover {
    transform: translateY(-20px) scale(1.05);
    box-shadow: 0 30px 60px rgba(255, 0, 128, 0.4);
    border-color: #ff0080;
}

.product-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: rotate-icon 3s ease-in-out infinite;
}

@keyframes rotate-icon {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-10deg);
    }

    75% {
        transform: rotate(10deg);
    }
}

.product-card:hover .product-icon {
    animation: bounce-icon 0.6s ease;
}

@keyframes bounce-icon {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3) rotate(15deg);
    }
}

.product-card h3 {
    font-size: 1.8rem;
    color: #ff8c00;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
}

.product-card p {
    color: #bbb;
    line-height: 1.7;
    font-size: 1rem;
}

/* Services Section */
.services {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #0a0015 0%, #1a0033 100%);
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-item {
    background: linear-gradient(135deg, #ff0080, #ff8c00);
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.5s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.service-item:hover::after {
    width: 500px;
    height: 500px;
}

.service-item:hover {
    transform: translateY(-15px) rotate(-3deg);
    box-shadow: 0 25px 50px rgba(255, 0, 128, 0.5);
}

.service-item h4 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.service-item p {
    position: relative;
    z-index: 1;
    font-size: 1rem;
}

/* Why Celebrate Section */
.why-celebrate {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #1a0033 0%, #0a0015 100%);
    text-align: center;
}

.celebration-reasons {
    max-width: 1200px;
    margin: 4rem auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.reason {
    background: rgba(255, 0, 128, 0.1);
    padding: 2.5rem 2rem;
    border-radius: 25px;
    border: 2px solid rgba(255, 0, 128, 0.3);
    transition: all 0.5s;
}

.reason:hover {
    transform: translateY(-15px) scale(1.05);
    background: rgba(255, 0, 128, 0.2);
    border-color: #ff0080;
    box-shadow: 0 20px 40px rgba(255, 0, 128, 0.4);
}

.reason-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

.reason h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ff8c00;
}

.reason p {
    color: #bbb;
    font-size: 1rem;
}

/* Contact Section */
.contact {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #0a0015 0%, #1a0033 100%);
    text-align: center;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.contact-item {
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.2), rgba(64, 224, 208, 0.2));
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 0, 128, 0.3);
    transition: all 0.4s;
    min-width: 220px;
}

.contact-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 0, 128, 0.4);
    border-color: #ff0080;
}

.contact-item h4 {
    color: #ff8c00;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.contact-item p {
    color: #ccc;
    font-size: 1rem;
}

/* Footer */
footer {
    background: #000;
    color: #666;
    text-align: center;
    padding: 2.5rem;
    border-top: 2px solid rgba(255, 0, 128, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 4rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .owner-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        display: none;
        border-top: 2px solid rgba(255, 0, 128, 0.3);
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(255, 0, 128, 0.2);
    }

    .menu-toggle {
        display: flex;
    }

    .logo {
        font-size: 1.3rem;
    }

    .hero {
        padding-top: 100px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .about-text h3 {
        font-size: 1.8rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .owner-image {
        width: 200px;
        height: 200px;
    }

    .owner-text h3 {
        font-size: 2rem;
    }

    .owner-quote {
        font-size: 1.1rem;
    }

    .product-card {
        padding: 2rem;
    }

    .product-icon {
        font-size: 3rem;
    }

    .product-card h3 {
        font-size: 1.5rem;
    }

    .service-item {
        padding: 2rem;
    }

    .service-item h4 {
        font-size: 1.4rem;
    }

    .contact-info {
        gap: 2rem;
    }

    nav {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .celebration-reasons {
        grid-template-columns: 1fr;
    }

    .owner-image {
        width: 180px;
        height: 180px;
    }
}