/* Global Body Styles */
body {
    background-color: #fbfbfd;
    color: #1d1d1f;
    -webkit-font-smoothing: antialiased; /* Makes fonts crisp on Mac */
}

/* Glassmorphism Navigation Bar */
.glass-nav {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Malayalam Font Adjustments */
.malayalam-text {
    line-height: 1.6;
    font-weight: 400;
}

/* Apple-style Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #1d1d1f 0%, #434344 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hide scrollbar for gallery carousel */
/* This is crucial for the Apple-like clean look */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}