@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
    --background: 32 30% 98%;
    --foreground: 240 10% 15%;

    --card: 0 0% 100%;
    --card-foreground: 240 10% 15%;

    --popover: 0 0% 100%;
    --popover-foreground: 240 10% 15%;

    --primary: 344 96% 59%;
    --primary-foreground: 0 0% 100%;
    --primary-glow: 344 96% 75%;

    --secondary: 180 45% 50%;
    --secondary-foreground: 0 0% 100%;

    --muted: 32 20% 95%;
    --muted-foreground: 240 5% 50%;

    --accent: 35 95% 65%;
    --accent-foreground: 240 10% 15%;

    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 0 0% 100%;

    --border: 32 20% 88%;
    --input: 32 20% 88%;
    --ring: 14 90% 60%;

    --radius: 0.75rem;
    
    --gradient-sunset: linear-gradient(135deg, hsl(344, 96%, 59%), hsl(260, 70%, 60%), hsl(220, 90%, 55%));
    --gradient-hero: linear-gradient(135deg, hsl(344, 96%, 59%) 0%, hsl(260, 70%, 60%) 100%);
    --gradient-card: linear-gradient(180deg, transparent 0%, hsl(240, 10%, 15%, 0.7) 100%);
    
    --shadow-card: 0 4px 20px -4px hsl(344, 96%, 59%, 0.15);
    --shadow-hover: 0 8px 30px -6px hsl(344, 96%, 59%, 0.25);
    --shadow-glow: 0 0 40px hsl(344, 96%, 59%, 0.4);
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dark {
    --background: 240 15% 10%;
    --foreground: 32 20% 95%;

    --card: 240 12% 12%;
    --card-foreground: 32 20% 95%;

    --popover: 240 12% 12%;
    --popover-foreground: 32 20% 95%;

    --primary: 344 96% 59%;
    --primary-foreground: 0 0% 100%;
    --primary-glow: 344 96% 75%;

    --secondary: 180 45% 50%;
    --secondary-foreground: 0 0% 100%;

    --muted: 240 10% 18%;
    --muted-foreground: 32 10% 65%;

    --accent: 35 95% 65%;
    --accent-foreground: 0 0% 100%;

    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 0 0% 100%;

    --border: 240 10% 18%;
    --input: 240 10% 18%;
    --ring: 14 90% 60%;
    
    --gradient-sunset: linear-gradient(135deg, hsl(344, 96%, 59%), hsl(260, 70%, 60%), hsl(220, 90%, 55%));
    --gradient-hero: linear-gradient(135deg, hsl(344, 96%, 59%) 0%, hsl(260, 70%, 60%) 100%);
    --gradient-card: linear-gradient(180deg, transparent 0%, hsl(240, 15%, 10%, 0.9) 100%);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.pt-16 {
    padding-top: 4rem;
}

.pt-20 {
    padding-top: 5rem;
}

.pb-20 {
    padding-bottom: 5rem;
}

.pt-32 {
    padding-top: 8rem;
}

.pb-32 {
    padding-bottom: 8rem;
}

.pt-8 {
    padding-top: 2rem;
}

.pb-6 {
    padding-bottom: 1.5rem;
}

.pb-4 {
    padding-bottom: 1rem;
}

.p-8 {
    padding: 2rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-4 {
    padding: 1rem;
}

.p-2 {
    padding: 0.5rem;
}

.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.pt-2 {
    padding-top: 0.5rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mt-20 {
    margin-top: 5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.mr-1 {
    margin-right: 0.25rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

.mx-4 {
    margin-left: 1rem;
    margin-right: 1rem;
}

.-mt-16 {
    margin-top: -4rem;
}

/* Flexbox */
.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-start {
    justify-content: flex-start;
}

.space-x-2 > * + * {
    margin-left: 0.5rem;
}

.space-x-3 > * + * {
    margin-left: 0.75rem;
}

.space-x-4 > * + * {
    margin-left: 1rem;
}

.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.space-y-6 > * + * {
    margin-top: 1.5rem;
}

.space-y-8 > * + * {
    margin-top: 2rem;
}

/* Grid */
.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

/* Text */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-5xl {
    font-size: 3rem;
    line-height: 1;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.font-medium {
    font-weight: 500;
}

.tracking-wide {
    letter-spacing: 0.025em;
}

.leading-relaxed {
    line-height: 1.625;
}

/* Colors */
.text-white {
    color: white;
}

.text-primary {
    color: hsl(var(--primary));
}

.text-primary-foreground {
    color: hsl(var(--primary-foreground));
}

.text-secondary {
    color: hsl(var(--secondary));
}

.text-secondary-foreground {
    color: hsl(var(--secondary-foreground));
}

.text-muted-foreground {
    color: hsl(var(--muted-foreground));
}

.text-foreground {
    color: hsl(var(--foreground));
}

.bg-primary {
    background-color: hsl(var(--primary));
}

.bg-primary-foreground {
    background-color: hsl(var(--primary-foreground));
}

.bg-secondary {
    background-color: hsl(var(--secondary));
}

.bg-secondary-foreground {
    background-color: hsl(var(--secondary-foreground));
}

.bg-muted {
    background-color: hsl(var(--muted));
}

.bg-card {
    background-color: hsl(var(--card));
}

.bg-background {
    background-color: hsl(var(--background));
}

.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-primary {
    --tw-gradient-from: hsl(var(--primary));
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0));
}

.to-accent {
    --tw-gradient-to: hsl(var(--accent));
}

.bg-clip-text {
    -webkit-background-clip: text;
    background-clip: text;
}

.text-transparent {
    color: transparent;
}

/* Backgrounds */
.gradient-sunset {
    background: var(--gradient-sunset);
}

.gradient-hero {
    background: var(--gradient-hero);
}

.gradient-card {
    background: var(--gradient-card);
}

.bg-muted\/30 {
    background-color: hsl(var(--muted) / 0.3);
}

.bg-white\/10 {
    background-color: rgba(255, 255, 255, 0.1);
}

.bg-white\/95 {
    background-color: rgba(255, 255, 255, 0.95);
}

/* Borders */
.border {
    border-width: 1px;
}

.border-t {
    border-top-width: 1px;
}

.border-l {
    border-left-width: 1px;
}

.border-border {
    border-color: hsl(var(--border));
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-full {
    border-radius: 9999px;
}

/* Shadows */
.shadow-card {
    box-shadow: var(--shadow-card);
}

.shadow-hover {
    box-shadow: var(--shadow-hover);
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.drop-shadow-lg {
    filter: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1));
}

.drop-shadow-md {
    filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06));
}

/* Positioning */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.sticky {
    position: sticky;
}

.top-0 {
    top: 0;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.top-4 {
    top: 1rem;
}

.bottom-4 {
    bottom: 1rem;
}

.left-4 {
    left: 1rem;
}

.right-4 {
    right: 1rem;
}

.z-10 {
    z-index: 10;
}

.z-50 {
    z-index: 50;
}

/* Sizing */
.w-4 {
    width: 1rem;
}

.w-5 {
    width: 1.25rem;
}

.w-6 {
    width: 1.5rem;
}

.w-8 {
    width: 2rem;
}

.w-10 {
    width: 2.5rem;
}

.w-12 {
    width: 3rem;
}

.w-16 {
    width: 4rem;
}

.w-full {
    width: 100%;
}

.w-auto {
    width: auto;
}

.h-4 {
    height: 1rem;
}

.h-5 {
    height: 1.25rem;
}

.h-6 {
    height: 1.5rem;
}

.h-8 {
    height: 2rem;
}

.h-10 {
    height: 2.5rem;
}

.h-12 {
    height: 3rem;
}

.h-16 {
    height: 4rem;
}

.h-56 {
    height: 14rem;
}

.h-64 {
    height: 16rem;
}

.h-96 {
    height: 24rem;
}

.h-full {
    height: 100%;
}

.h-screen {
    height: 100vh;
}

.h-90vh {
    height: 90vh;
}

.h-700 {
    height: 43.75rem; /* 700px */
}

.min-h-screen {
    min-height: 100vh;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-3xl {
    max-width: 48rem;
}

.max-w-4xl {
    max-width: 56rem;
}

/* Display */
.hidden {
    display: none;
}

.block {
    display: block;
}

/* Overflow */
.overflow-hidden {
    overflow: hidden;
}

/* Object Fit */
.object-cover {
    object-fit: cover;
}

/* Ensure images display properly */
img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Package card images */
.package-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Opacity utility classes */
.opacity-0 {
    opacity: 0;
}

.opacity-100 {
    opacity: 1;
}

/* Ensure images don't disappear */
.package-card .relative img {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* Hero section content overlay */
.hero-content-overlay {
    padding-top: 30vh;
    padding-bottom: 8rem;
    min-height: 94vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* Flex Shrink */
.flex-shrink-0 {
    flex-shrink: 0;
}

/* Cursor */
.cursor-pointer {
    cursor: pointer;
}

/* Transitions */
.transition-smooth {
    transition: var(--transition-smooth);
}

/* Hover Effects */
.hover-lift {
    transition: var(--transition-smooth);
}

.hover-lift:hover {
    transform: translateY(-0.25rem);
    box-shadow: var(--shadow-hover);
}

.group:hover .group-hover\:scale-110 {
    transform: scale(1.1);
}

.group:hover .group-hover\:opacity-100 {
    opacity: 1;
}

.group:hover .group-hover\:text-primary {
    color: hsl(var(--primary));
}

/* Animations */
.animate-fade-in {
    animation: fade-in 0.8s ease-out;
}

.animate-fade-in-up {
    animation: fade-in-up 0.8s ease-out;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Special Effects */
.spark-glow {
    filter: none;
}

.logo-float {
    animation: float-gentle 6s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
    display: block;
    max-width: 100%;
    height: auto;
    opacity: 1 !important;
    visibility: visible !important;
}

.sparkle-text {
    color: white !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3), 0 0 20px rgba(255, 255, 255, 0.2), 0 0 30px rgba(255, 255, 255, 0.1) !important;
    text-decoration: none !important;
    animation: gentle-glow 3s ease-in-out infinite !important;
}

/* More specific rule for navbar sparkle text */
nav .sparkle-text {
    color: white !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3), 0 0 20px rgba(255, 255, 255, 0.2), 0 0 30px rgba(255, 255, 255, 0.1) !important;
    text-decoration: none !important;
    animation: gentle-glow 3s ease-in-out infinite !important;
}

@keyframes spark-pulse {
    0%, 100% {
        filter: drop-shadow(0 0 4px hsl(var(--primary-glow) / 0.3));
    }
    50% {
        filter: drop-shadow(0 0 6px hsl(var(--primary-glow) / 0.5));
    }
}

@keyframes float-gentle {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes sparkle-fade {
    0%, 100% {
        opacity: 1;
        text-shadow: 0 0 8px hsl(var(--primary) / 0.2);
    }
    50% {
        opacity: 1;
        text-shadow: 0 0 12px hsl(var(--primary) / 0.3);
    }
}

@keyframes gentle-glow {
    0%, 100% {
        text-shadow: 0 0 15px rgba(255, 255, 255, 0.5), 0 0 25px rgba(255, 255, 255, 0.3), 0 0 35px rgba(255, 255, 255, 0.2);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.6), 0 0 30px rgba(255, 255, 255, 0.4), 0 0 40px rgba(255, 255, 255, 0.3);
    }
}

/* Animated Gradient Background */
.animated-gradient {
    background: linear-gradient(-45deg, 
        hsl(344, 96%, 59%), 
        hsl(260, 70%, 60%), 
        hsl(220, 90%, 55%),
        hsl(280, 80%, 65%),
        hsl(344, 96%, 59%)
    );
    background-size: 400% 400%;
    animation: gradient-shift 15s ease infinite;
}

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

/* Floating Particles */
.particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    animation: float-particle 20s infinite ease-in-out;
    opacity: 0.6;
    filter: blur(2px);
}

.particle-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 18s;
}

.particle-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    left: 70%;
    animation-delay: -5s;
    animation-duration: 22s;
}

.particle-3 {
    width: 100px;
    height: 100px;
    top: 30%;
    left: 80%;
    animation-delay: -10s;
    animation-duration: 20s;
}

.particle-4 {
    width: 60px;
    height: 60px;
    top: 70%;
    left: 20%;
    animation-delay: -15s;
    animation-duration: 25s;
}

.particle-5 {
    width: 90px;
    height: 90px;
    top: 20%;
    left: 50%;
    animation-delay: -8s;
    animation-duration: 19s;
}

.particle-6 {
    width: 70px;
    height: 70px;
    top: 80%;
    left: 60%;
    animation-delay: -12s;
    animation-duration: 23s;
}

@keyframes float-particle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(50px, -50px) scale(1.1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-30px, -100px) scale(0.9);
        opacity: 0.5;
    }
    75% {
        transform: translate(-80px, -30px) scale(1.05);
        opacity: 0.7;
    }
}

/* Card Components */
.card {
    background-color: hsl(var(--card));
    color: hsl(var(--card-foreground));
    border-radius: var(--radius);
    border: 1px solid hsl(var(--border));
    box-shadow: var(--shadow-card);
}

.card-header {
    padding: 1.5rem 1.5rem 0 1.5rem;
}

.card-content {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.75rem;
}

/* Button Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    text-decoration: none;
    padding: 0.5rem 1rem;
    min-height: 2.5rem;
}

.btn:focus {
    outline: 2px solid hsl(var(--ring));
    outline-offset: 2px;
}

.btn-primary {
    background-color: #d147b0;
    color: hsl(var(--primary-foreground));
}

.btn-primary:hover {
    background-color: #d147b0;
}

.btn-secondary {
    background-color: #d147b0;
    color: hsl(var(--secondary-foreground));
}

.btn-secondary:hover {
    background-color: #d147b0;
}

.btn-ghost {
    background-color: transparent;
    color: hsl(var(--foreground));
}

.btn-ghost:hover {
    background-color: #d147b0;
    color: hsl(var(--accent-foreground));
}

.btn-outline {
    border: 1px solid #d147b0;
    background-color: #d147b0;
    color: white;
}

.btn-outline:hover {
    background-color: #d147b0;
    opacity: 0.9;
    color: white;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    min-height: 3rem;
}

.btn-download {
    background-color: #d147b0;
    color: white;
    font-weight: 600;
    border-radius: 0.5rem;
}

.btn-download:hover {
    background-color: #d147b0;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(209, 71, 176, 0.3);
}

/* Input Components */
.input {
    display: flex;
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid hsl(var(--input));
    background-color: hsl(var(--background));
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    transition: var(--transition-smooth);
}

.input:focus {
    outline: 2px solid hsl(var(--ring));
    outline-offset: 2px;
}

.textarea {
    display: flex;
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid hsl(var(--input));
    background-color: hsl(var(--background));
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    transition: var(--transition-smooth);
    resize: vertical;
    min-height: 2.5rem;
}

.textarea:focus {
    outline: 2px solid hsl(var(--ring));
    outline-offset: 2px;
}

/* Navigation */















/* Navigation */
nav {
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
}

/* Navigation button styles */
nav .btn {
    padding: 0.75rem 1.25rem;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    margin: 0.25rem;
}

nav .btn-ghost {
    background-color: transparent;
    color: black;
}

nav .btn-ghost:hover {
    background-color: #d147b0;
    color: white;
}

nav .btn-primary {
    background-color: #d147b0;
    color: black;
}

nav .btn-primary:hover {
    background-color: #d147b0;
    opacity: 0.9;
    color: white;
}

/* Ensure proper spacing and alignment for navigation */
nav .flex.items-center.space-x-6 a {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

nav .flex.items-center.space-x-6 a:hover {
    background-color: hsl(var(--accent));
    color: hsl(var(--accent-foreground));
}

/* Mobile menu button styling */
nav button {
    padding: 0.5rem;
    border-radius: 0.375rem;
    background-color: transparent;
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

nav button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.nav-link {
    text-decoration: none;
}

/* Remove underline from logo link */
nav a {
    text-decoration: none !important;
}

nav a:hover {
    text-decoration: none !important;
}

.nav-link.active .btn {
    background-color: #d147b0;
    color: black;
}

.nav-link.active .btn:hover {
    background-color: #d147b0;
    color: white;
}


/* Navigation button spacing and padding */
nav .flex.items-center.space-x-1 {
    gap: 0.5rem;
    padding: 0.5rem 0;
}

nav .flex.items-center.space-x-1:hover {
    gap: 1rem !important;
}

nav .flex.items-center.space-x-1:hover .nav-link {
    margin-left: 0 !important;
}

nav .flex.items-center.space-x-1 .nav-link {
    transition: all 0.3s ease;
    padding: 0.5rem 0.25rem;
}

nav .flex.items-center.space-x-1 .nav-link:hover {
    transform: scale(1.05);
    padding: 0.75rem 0.5rem;
}

/* Navbar Logo Container */
nav .flex.items-center.space-x-3.group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

nav .flex.items-center.space-x-3.group img {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
}

nav .flex.items-center.space-x-3.group span {
    color: white;
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: 0.025em;
    text-decoration: none !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3), 0 0 20px rgba(255, 255, 255, 0.2), 0 0 30px rgba(255, 255, 255, 0.1) !important;
    animation: gentle-glow 3s ease-in-out infinite !important;
}

/* Ensure no underline on logo link */
/* nav .flex.items-center.space-x-3.group {
    text-decoration: none !important;
}

nav .flex.items-center.space-x-3.group:hover {
    text-decoration: none !important;
} */

/* Ensure no underline on logo link */
nav .flex.items-center.space-x-3.group {
    text-decoration: none !important;
}

nav .flex.items-center.space-x-3.group:hover {
    text-decoration: none !important;
}


/* Backdrop Blur */
.backdrop-blur-lg {
    backdrop-filter: blur(16px);
}

/* Line Clamp */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Additional Tailwind Classes for Footer */
.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-purple-900 {
    --tw-gradient-from: #581c87;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(88, 28, 135, 0));
}

.via-purple-800 {
    --tw-gradient-to: rgba(107, 33, 168, 0);
    --tw-gradient-stops: var(--tw-gradient-from), #6b21a8, var(--tw-gradient-to);
}

.to-pink-600 {
    --tw-gradient-to: #db2777;
}

.text-gray-200 {
    color: #e5e7eb;
}

.text-gray-300 {
    color: #d1d5db;
}

.text-gray-600 {
    color: #4b5563;
}

.text-gray-700 {
    color: #374151;
}

.text-gray-800 {
    color: #1f2937;
}

.text-gray-900 {
    color: #111827;
}

.bg-gray-600 {
    background-color: #4b5563;
}

.bg-gray-700 {
    background-color: #374151;
}

.bg-gray-800 {
    background-color: #1f2937;
}

.bg-gray-900 {
    background-color: #111827;
}

.bg-black {
    background-color: #000000;
}

.bg-white {
    background-color: #ffffff;
}

.bg-yellow-400 {
    background-color: #fbbf24;
}

.bg-green-600 {
    background-color: #16a34a;
}

.bg-red-500 {
    background-color: #ef4444;
}

.bg-blue-500 {
    background-color: #3b82f6;
}

.bg-pink-500 {
    background-color: #ec4899;
}

.bg-pink-600 {
    background-color: #db2777;
}

.bg-pink-700 {
    background-color: #be185d;
}

.bg-purple-100 {
    background-color: #f3e8ff;
}

.bg-purple-200 {
    background-color: #e9d5ff;
}

.bg-purple-300 {
    background-color: #d8b4fe;
}

.bg-purple-400 {
    background-color: #c084fc;
}

.bg-purple-500 {
    background-color: #a855f7;
}

.bg-purple-600 {
    background-color: #9333ea;
}

.bg-purple-700 {
    background-color: #7c3aed;
}

.text-green-400 {
    color: #4ade80;
}

/* Layered Gradient Footer */
.layered-gradient-footer {
    min-height: 600px;
    position: relative;
}

.layered-gradient-footer .absolute {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.layered-gradient-footer .inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.layered-gradient-footer .relative {
    position: relative;
}

.layered-gradient-footer .z-10 {
    z-index: 10;
}

.layered-gradient-footer .overflow-hidden {
    overflow: hidden;
}

.layered-gradient-footer .pt-32 {
    padding-top: 8rem;
}

.layered-gradient-footer .pb-16 {
    padding-bottom: 4rem;
}

.layered-gradient-footer .items-end {
    align-items: flex-end;
}

.layered-gradient-footer .justify-end {
    justify-content: flex-end;
}

.rounded-3xl {
    border-radius: 1.5rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-full {
    border-radius: 9999px;
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
}

.gap-0\.5 {
    gap: 0.125rem;
}

.w-64 {
    width: 16rem;
}

.h-96 {
    height: 24rem;
}

.w-24 {
    width: 6rem;
}

.h-24 {
    height: 6rem;
}

.w-20 {
    width: 5rem;
}

.h-20 {
    height: 5rem;
}

.w-12 {
    width: 3rem;
}

.h-12 {
    height: 3rem;
}

.w-10 {
    width: 2.5rem;
}

.h-10 {
    height: 2.5rem;
}

.w-8 {
    width: 2rem;
}

.h-8 {
    height: 2rem;
}

.w-6 {
    width: 1.5rem;
}

.h-6 {
    height: 1.5rem;
}

.w-5 {
    width: 1.25rem;
}

.h-5 {
    height: 1.25rem;
}

.w-4 {
    width: 1rem;
}

.h-4 {
    height: 1rem;
}

.w-2 {
    width: 0.5rem;
}

.h-2 {
    height: 0.5rem;
}

.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.text-5xl {
    font-size: 3rem;
    line-height: 1;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.space-x-1 > * + * {
    margin-left: 0.25rem;
}

.space-x-2 > * + * {
    margin-left: 0.5rem;
}

.space-x-3 > * + * {
    margin-left: 0.75rem;
}

.space-x-4 > * + * {
    margin-left: 1rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-12 {
    gap: 3rem;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

.justify-start {
    justify-content: flex-start;
}

.flex-col {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.w-fit {
    width: fit-content;
}

.hover\:bg-gray-800:hover {
    background-color: #1f2937;
}

.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

/* Responsive Design */
@media (min-width: 640px) {
    .sm\:flex-row {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .md\:flex {
        display: flex;
    }
    
    .md\:hidden {
        display: none;
    }
    
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
    .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    
    .md\:text-6xl {
        font-size: 3.75rem;
        line-height: 1;
    }
    
    .md\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem;
    }
    
    .md\:p-12 {
        padding: 3rem;
    }
    
    .md\:w-auto {
        width: auto;
    }
    
    .md\:justify-start {
        justify-content: flex-start;
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    
    .lg\:text-5xl {
        font-size: 3rem;
        line-height: 1;
    }
    
    .lg\:justify-start {
        justify-content: flex-start;
    }
    
    .lg\:text-left {
        text-align: left;
    }
}


@media (min-width: 640px) {
    .sm\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .lg\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* Mobile Menu */
#mobile-menu {
    transition: all 0.3s ease;
}

#mobile-menu.hidden {
    display: none;
}

/* Form Styles */
form {
    width: 100%;
}

label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Focus States */
.btn:focus-visible,
.input:focus-visible,
.textarea:focus-visible {
    outline: 2px solid hsl(var(--ring));
    outline-offset: 2px;
}

/* Hover States */
a:hover {
    text-decoration: none;
}

/* Remove underlines from all anchor tags */
a {
    text-decoration: none !important;
}

a:hover {
    text-decoration: none !important;
}

/* Package card specific styles */
.package-card {
    text-decoration: none !important;
}

.package-card:hover {
    text-decoration: none !important;
}

/* Selection */
::selection {
    background-color: hsl(var(--primary) / 0.2);
}

/* White Nav Text for specific pages */
body.white-nav-text nav .btn-ghost,
body.white-nav-text nav .btn-primary {
    color: white !important;
}

body.white-nav-text nav .btn-ghost:hover,
body.white-nav-text nav .btn-primary:hover {
    background-color: #d147b0;
    color: white !important;
}

body.white-nav-text .nav-link.active .btn {
    background-color: #d147b0;
    color: white !important;
}

body.white-nav-text .nav-link.active .btn:hover {
    background-color: #d147b0;
    color: white !important;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: hsl(var(--muted));
}

::-webkit-scrollbar-thumb {
    background: hsl(var(--muted-foreground));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: hsl(var(--primary));
}
