/* PRIMARY COLORS & GRADIENT */
.bg-cream {
    background: linear-gradient(135deg, #2c3e50 0%, #3d5a80 100%);
}

/* ELEGANT TYPOGRAPHY */
body {
    font-family: 'Poppins', sans-serif;
    color: #2c3e50;
    background-color: #fafbfc;
}

html {
    scroll-behavior: smooth;
}

/* ACCENT COLORS */
.bg-yellow-500 {
    background: linear-gradient(135deg, #FF6B35 0%, #F45B26 100%);
}

.text-yellow-500 {
    background: linear-gradient(135deg, #FF6B35, #F45B26);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* SMOOTH ANIMATIONS */
.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(12px); }
}

.floating-4 {
    animation: floating 4s ease-in-out infinite;
}

.text-darken {
    color: #2c5aa0;
}

/* ENHANCED SHADOWS & DEPTH */
.shadow-xl {
    box-shadow: 0 10px 40px rgba(44, 62, 80, 0.1);
}

.hover\:shadow-2xl:hover {
    box-shadow: 0 20px 50px rgba(44, 62, 80, 0.15);
}

/* SMOOTH TRANSITIONS */
* {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ELEGANT BORDERS */
.rounded-xl {
    border-radius: 16px;
}

.rounded-2xl {
    border-radius: 24px;
}

/* TEXT ENHANCEMENTS */
h1, h2, h3, h4, h5, h6 {
    letter-spacing: -0.5px;
    font-weight: 700;
}

/* BUTTON STYLING */
button {
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

/* LINK STYLING */
a {
    position: relative;
    text-decoration: none;
}

a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF6B35;
    transition: width 0.3s ease;
}

a:hover::after {
    width: 100%;
}

/* GLASS MORPHISM EFFECT */
.glass-effect {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* GRADIENT TEXT */
.gradient-text {
    background: linear-gradient(135deg, #FF6B35 0%, #2FA4D7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* FOCUS STATES */
:focus-visible {
    outline: 2px solid #FF6B35;
    outline-offset: 2px;
}