/* IMPORT FONTS: 
   1. 'Shrikhand' for that bold 70s header 
   2. 'Special Elite' for the typewriter info 
*/
@import url('https://fonts.googleapis.com/css2?family=Shrikhand&family=Special+Elite&display=swap');

/* --- THE NEEDLE CURSOR MAGIC --- */
/* This encodes a tiny needle icon directly into the CSS so you don't need an image file */
html, body, a {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24" style="fill:black;stroke:white;stroke-width:1px;"><path d="M19.9 2.5L2.5 19.9c-.7.7-.7 1.8 0 2.5.7.7 1.8.7 2.5 0L22.4 5c.7-.7.7-1.8 0-2.5-.7-.7-1.8-.7-2.5 0zM17 5l-2 2"/></svg>') 0 24, auto;
}

/* RESET & BASICS */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #fdfbf7; /* Creamy paper */
    /* Adds a subtle "fabric" grain texture to the background */
    background-image: radial-gradient(#e0e0e0 1px, transparent 1px);
    background-size: 20px 20px;
    
    color: #2c2c2c;
    font-family: 'Special Elite', monospace;
    overflow-x: hidden; /* Prevents side scrolling */
}

/* --- TOP VIBE BAR (Location + Music) --- */
.vibe-bar {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    border-bottom: 1px solid #2c2c2c;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.music-note {
    display: inline-block;
    animation: bounce 1s infinite alternate;
}

@keyframes bounce {
    from { transform: translateY(0); }
    to { transform: translateY(-3px); }
}

/* --- HEADER SECTION --- */
header {
    text-align: center;
    padding: 0 20px 40px;
    max-width: 900px;
    margin: 0 auto;
}

h1 {
    font-family: 'Shrikhand', cursive; /* The Retro Font */
    font-size: 5rem; /* HUGE */
    color: #d94e36; /* Burnt Orange / Retro Red */
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 2px 2px 0px #f2c641; /* Yellow shadow for pop */
    transform: rotate(-2deg); /* Slight tilt */
}

.subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- LINKS & BUTTONS --- */
a {
    color: #d94e36;
    text-decoration: none;
    border-bottom: 1px dashed #d94e36;
    transition: all 0.2s ease;
}

a:hover {
    background-color: #d94e36;
    color: #fff;
    border-bottom: 1px solid transparent;
}

/* --- MASONRY GRID --- */
.gallery {
    column-count: 3;
    column-gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-item {
    width: 100%;
    margin-bottom: 30px;
    cursor: pointer; /* Shows the needle cursor */
    transition: transform 0.3s ease;
    
    /* The "Patch on a Table" Look */
    border: 8px solid white;
    box-shadow: 4px 4px 12px rgba(0,0,0,0.15);
}

/* Randomize rotation slightly for organic feel */
.gallery-item:nth-child(even) { transform: rotate(1deg); }
.gallery-item:nth-child(odd) { transform: rotate(-1deg); }

.gallery-item:hover {
    transform: scale(1.05) rotate(0deg) !important;
    box-shadow: 8px 8px 20px rgba(0,0,0,0.25);
    z-index: 10;
    position: relative;
}

/* --- FOOTER CTA --- */
.footer-cta {
    text-align: center;
    margin-top: 80px;
    padding: 60px 20px;
    background: #fff;
    border-top: 2px dashed #2c2c2c;
    border-bottom: 2px dashed #2c2c2c;
    /* Tilted background stripe */
    background-image: repeating-linear-gradient(45deg, #fff, #fff 10px, #f9f9f9 10px, #f9f9f9 20px);
}

.footer-cta h2 {
    font-family: 'Shrikhand', cursive;
    font-size: 2.5rem;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.cta-btn {
    display: inline-block;
    background-color: #2c2c2c;
    color: #fff !important;
    padding: 15px 30px;
    border-radius: 50px; /* Pill shape */
    font-size: 1.2rem;
    margin-top: 20px;
    border: none;
}

.cta-btn:hover {
    background-color: #d94e36; /* Hover to red */
    transform: translateY(-2px);
}

/* --- LIGHTBOX --- */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(253, 251, 247, 0.95); /* Cream overlay */
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border: 15px solid #fff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .gallery { column-count: 2; }
    h1 { font-size: 3.5rem; }
}
@media (max-width: 600px) {
    .gallery { column-count: 1; }
    .vibe-bar { flex-direction: column; text-align: center; gap: 5px; }
}