/* ../style/style.css */

/* Reset & Base */
* {
    margin: 5;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    
    /* Fading baby blue to white background as you scroll */
    background: linear-gradient(
        to bottom,
        #a0d8ff 0%,      /* Baby blue at top */
        #6a9abf 25%,
        #355c7f 50%,
        #001F3F 75%      /* Navy blue */
    );
    background-attachment: fixed;   /* Keeps the gradient stable while scrolling */
    min-height: 100vh;
    perspective: 1200px;
}

.item {
    background: #fff;
    padding: 8px;
    margin: 6px 0;
    border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); /* bouncy feel */
  transform: perspective(1000px) rotateX(0) rotateY(0) translateZ(0);
  cursor: pointer;
  overflow: hidden;
}
	
.item:hover {
  transform: perspective(1000px) rotateX(12deg) rotateY(12deg) translateZ(30px);
  box-shadow: 0 25px 40px rgba(0,0,0,0.2);
}

.item h3, .item .title {
    margin: 0 0 6px 0;
} 

.source {
    margin: 3px 0;
    padding: 0;
    font-size: 0.9em;
    color: #666;
	}
	
.description {
    margin: 3px 0;
    padding: 0;
    font-size: 0.8em;
    color: #888;
	}

.logo {
	margin-left: 10px; 
	}
	
a { color: #0066cc; text-decoration: none; }
a:hover { text-decoration: underline; }


/* Header */
header {
    background: #a0d8ff;
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    margin-left: 10;
    z-index: 100;
}

h1 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #222;
    letter-spacing: -1px;
}


/* Footer */
footer {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem 0;
    text-align: center;
    border-top: 1px solid #ddd;
    color: #666;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav a {
        margin: 0 1rem;
    }
    
    .hero h2 {
        font-size: 2.8rem;
    }
}