/* Import Montserrat Font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

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

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #fff;
    background: #000;
    position: relative;
    overflow-x: hidden;
}

html {
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
}
/* Sparkle Effects */
body::before {
    content: '✨';
    position: fixed;
    font-size: 3rem;
    opacity: 0.4;
    animation: sparkle1 9s ease-in-out infinite;
    top: 10%;
    left: 5%;
    pointer-events: none;
    z-index: 1;
}

body::after {
    content: '⭐';
    position: fixed;
    font-size: 2rem;
    opacity: 0.4;
    animation: sparkle2 4s ease-in-out infinite;
    top: 70%;
    right: 8%;
    pointer-events: none;
    z-index: 1;
}

@keyframes sparkle1 {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.3; }
    50% { transform: scale(1.4) rotate(180deg); opacity: 0.6; }
}

@keyframes sparkle2 {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.3; }
    50% { transform: scale(1.3) rotate(-180deg); opacity: 0.6; }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* Header and Navigation */
header {
    background: #000;
    color: white;
    padding: 0.25rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(255,107,53,0.5);
    transition: all 0.5s ease; 
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, 
        #FF6B35 0%,
        #FF5C8D 14%,
        #B744B8 28%,
        #6C5CE7 42%,
        #00B8D4 56%,
        #00D9A3 70%,
        #FDD835 84%,
        #FF6B35 100%) 1;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 0rem;
}

.logo-image {
    height: 80px;
    width: auto;
}

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

.nav-links a {
    text-decoration: none;
    font-weight: 700;
    transition: all 0.9s ease;
    font-size: 1.1rem;
    background: linear-gradient(90deg, 
        #FF6B35 0%,
        #FF5C8D 20%,
        #B744B8 40%,
        #6C5CE7 60%,
        #00B8D4 80%,
        #00D9A3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.nav-links a:hover {
    background: linear-gradient(90deg, 
        #FDD835 0%,
        #FF6B35 20%,
        #FF5C8D 40%,
        #B744B8 60%,
        #6C5CE7 80%,
        #00B8D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.15);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, 
        #FF6B35 0%,
        #FF5C8D 14%,
        #B744B8 28%,
        #6C5CE7 42%,
        #00B8D4 56%,
        #00D9A3 70%,
        #FDD835 84%,
        #FF6B35 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: '✨';
    position: absolute;
    font-size: 4rem;
    opacity: 0.2;
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

.hero::before {
    top: 20%;
    left: 10%;
}

.hero::after {
    content: '💫';
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    font-weight: 500;
}

.btn-primary {
    display: inline-block;
    background: white;
    color: #B744B8;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.9s, box-shadow 0.9s;
    box-shadow: 0 4px 15px rgba(255,255,255,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.5);
}

/* Services Section */
.services {
    padding: 7rem 0 5rem 0;
    background: #000;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 800;
    background: linear-gradient(90deg, 
        #FF6B35 0%,
        #FF5C8D 10%,
        #B744B8 20%,
        #fff 30%,
        #B744B8 40%,
        #6C5CE7 50%,
        #00B8D4 60%,
        #fff 70%,
        #00D9A3 80%,
        #FDD835 90%,
        #FF6B35 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 18s linear infinite;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: #1a1a1a;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(255,107,53,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    border: 1px solid #333;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(255,107,53,0.4);
}

.service-card.featured {
    border: 3px solid;
    border-image: linear-gradient(135deg, #FF6B35, #B744B8, #00B8D4) 1;
}

.service-card h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #FF6B35, #B744B8, #00B8D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-subtitle {
    color: #FF5C8D;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-card p {
    color: #ccc;
    font-weight: 400;
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #FF5C8D, #B744B8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

.bespoke-note {
    background: linear-gradient(135deg, 
        #FF6B35 0%,
        #FF5C8D 25%,
        #B744B8 50%,
        #00B8D4 75%,
        #00D9A3 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
}

.bespoke-note h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.bespoke-note p {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Gallery Section */
.gallery {
    padding: 7rem 0 5rem 0;
    background: #000;
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 800;
    background: linear-gradient(90deg, 
        #FF6B35 0%,
        #FF5C8D 10%,
        #B744B8 20%,
        #fff 30%,
        #B744B8 40%,
        #6C5CE7 50%,
        #00B8D4 60%,
        #fff 70%,
        #00D9A3 80%,
        #FDD835 90%,
        #FF6B35 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 18s linear infinite;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255,107,53,0.3);
    transition: transform 0.3s;
    position: relative;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,107,53,0.2), rgba(183,68,184,0.2));
    opacity: 0;
    transition: opacity 0.3s;
}

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

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* About Section */
.about {
    padding: 7rem 0 5rem 0;
    background: #0a0a0a;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 800;
    background: linear-gradient(90deg, 
        #FF6B35 0%,
        #FF5C8D 10%,
        #B744B8 20%,
        #fff 30%,
        #B744B8 40%,
        #6C5CE7 50%,
        #00B8D4 60%,
        #fff 70%,
        #00D9A3 80%,
        #FDD835 90%,
        #FF6B35 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 18s linear infinite;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: #1a1a1a;
    border-radius: 15px;
    border: 1px solid #333;
}

.feature h3 {
    background: linear-gradient(90deg, #FF6B35, #B744B8, #00B8D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature p {
    color: #ccc;
    font-weight: 400;
}

/* Contact Section */
.contact {
    padding: 7rem 0 5rem 0;
    background: #000;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    background: linear-gradient(90deg, 
        #FF6B35 0%,
        #FF5C8D 10%,
        #B744B8 20%,
        #fff 30%,
        #B744B8 40%,
        #6C5CE7 50%,
        #00B8D4 60%,
        #fff 70%,
        #00D9A3 80%,
        #FDD835 90%,
        #FF6B35 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 18s linear infinite;
}

.contact-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #ccc;
    font-weight: 500;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-method {
    text-align: center;
    padding: 2rem;
    background: #1a1a1a;
    border-radius: 15px;
    border: 2px solid #333;
    transition: border 0.3s, box-shadow 0.3s;
}

.contact-method:hover {
    border-image: linear-gradient(135deg, #FF6B35, #B744B8, #00B8D4) 1;
    box-shadow: 0 4px 20px rgba(255,107,53,0.3);
}

.contact-method h3 {
    background: linear-gradient(90deg, #FF6B35, #B744B8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-method a {
    color: #FF5C8D;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-method a:hover {
    text-decoration: underline;
}

.contact-note {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 1.5rem;
    background: #1a1a1a;
    border-radius: 10px;
    color: #ccc;
    border: 1px solid #333;
    font-weight: 400;
}

/* Footer */
footer {
    background: linear-gradient(90deg, 
        #FF6B35 0%,
        #FF5C8D 20%,
        #B744B8 40%,
        #6C5CE7 60%,
        #00B8D4 80%,
        #00D9A3 100%);
    color: white;
    text-align: center;
    padding: 2rem 0;
}

footer p {
    margin: 0.5rem 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .service-grid,
    .gallery-grid,
    .features,
    .contact-options {
        grid-template-columns: 1fr;
    }
    
    .logo-image {
        height: 60px;
    }
}