html {
  font-family: 'league_spartanbold', sans-serif;

}

/* Masonry Grid Columns */
.masonry {
	column-count: 1;
	column-gap: 1rem;
	padding-left: 0;
	padding-right: 0;
}

@media (min-width: 640px) {
	.masonry {
		column-count: 2;
	}
}

@media (min-width: 768px) {
	.masonry {
		column-count: 3;
	}
}

@media (min-width: 1024px) {
	.masonry {
		column-count: 4;
	}
}

/* Individual pin cards */
.pin {
	break-inside: avoid;
	margin-bottom: 1rem;
	transition: transform 0.3s ease;
}

.pin:hover {
	transform: scale(1.02);
}

.pin-image {
	border-radius: 16px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: box-shadow 0.3s ease;
}

.pin:hover .pin-image {
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

/* Add to styles/portfolio-styles.css or styles/styles.css */

/* Hero Section */
.hero-section {
    max-width: 100vw;
    padding: 48px 16px 80px 16px;
    margin: 0 auto;
    text-align: center;
}
.hero-content {
    max-width: 800px;
    margin: 0 auto;
}
.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}
.hero-desc {
    font-size: 1.25rem;
    color: #4B5563;
    margin-bottom: 2rem;
}
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Filter Section */
.filter-section {
    width: 100%;
    padding: 32px 16px 32px 16px;
    position: sticky;
    top: 80px;
    z-index: 40;
    background: rgba(255, 255, 255, 0);
}
.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.7rem 1rem;
}
.filter-btn {
    padding: 8px 16px;
    border-radius: 9999px;
    border: 1px solid #D1D5DB;
    font-size: 1rem;
    font-weight: 500;
    background: #fff;
    color: #333;
    cursor: pointer;
    transition: background 0.2s;
    font-family: 'league_spartanbold', sans-serif;

}
.filter-btn:hover, .filter-btn.active {
    background: #2c2c2c;
    color: #f3f4f6;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 0;
    margin-top: 130px; /* Ensures content starts below header and filter */
}
@media (max-width: 600px) {
    .main-content {
        margin-top: 170px; /* More space for mobile if needed */
    }
}
.load-more-container {
    text-align: center;
    margin-top: 48px;
}
.load-more-btn {
    border: 1px solid #000;
    color: #000;
    padding: 12px 32px;
    border-radius: 9999px;
    font-weight: 500;
    background: #fff;
    cursor: pointer;
    transition: background 0.2s;
}
.load-more-btn:hover {
    background: #f3f4f6;
}

/* Pin Card */
.pin-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    background: #fff;
}
.pin-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    transition: box-shadow 0.3s;
}
.pin-card:hover .pin-image {
    box-shadow: 0 10px 15px rgba(0,0,0,0.15);
}
.pin-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background 0.3s;
    border-radius: 16px;
    pointer-events: none;
}
.pin-card:hover .pin-overlay {
    background: rgba(0,0,0,0.2);
}
.pin-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.3s;
}
.pin-card:hover .pin-info {
    opacity: 1;
}
.pin-info-inner {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    font-size: 0.95rem;
}
.pin-title {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}
.pin-desc {
    color: #6B7280;
}
.pin-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}
.pin-actions-left {
    display: flex;
    gap: 12px;
}
.pin-action-btn {
    background: none;
    border: none;
    color: #6B7280;
    font-size: 1.1rem;
    cursor: pointer;
    transition: color 0.2s;
}
.pin-action-btn:hover {
    color: #EF4444;
}
.pin-actions-left .pin-action-btn:nth-child(2):hover {
    color: #3B82F6;
}
.pin-actions > .pin-action-btn:last-child:hover {
    color: #111827;
}

/* Footer */
.footer {
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 40px 24px 40px;
    background: #fff;
    border-top: 1px solid #E5E7EB;
    font-size: 1rem;
    color: #333;
    position: relative;
    left: 0;
    bottom: 0;
    right: 0;
    margin-top: 48px;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 16px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.footer-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}
.footer-desc {
    color: #6B7280;
    margin-bottom: 1rem;
}
.footer-heading {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-link {
    color: #6B7280;
    text-decoration: none;
    transition: color 0.2s;
    display: block;
    margin-bottom: 0.5rem;
}
.footer-link:hover {
    color: #000;
}
.newsletter-form {
    display: flex;
    margin-top: 0.5rem;
}
.newsletter-input {
    border: 1px solid #D1D5DB;
    padding: 8px 16px;
    border-radius: 8px 0 0 8px;
    width: 100%;
    outline: none;
}
.newsletter-btn {
    background: #000;
    color: #fff;
    padding: 8px 16px;
    border-radius: 0 8px 8px 0;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}
.newsletter-btn:hover {
    background: #222;
}
.footer-bottom {
    border-top: 1px solid #E5E7EB;
    margin-top: 48px;
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}
.footer-social {
    display: flex;
    gap: 24px;
}
.footer-social-link {
    color: #333;
    text-decoration: none;
    margin-left: 18px;
    font-weight: 500;
    transition: color 0.2s;
}
.footer-social-link:first-child {
    margin-left: 0;
}
.footer-social-link:hover {
    color: #007c66;
}
.footer-copyright {
    color: #6B7280;
    font-size: 0.95rem;
}

/* Responsive: stack footer on small screens */
@media (max-width: 600px) {
    .footer {
        gap: 12px;
        align-items: flex-start;
        padding-left: 16px;
        padding-right: 16px;
    }
    .footer > div:last-child {
        align-self: flex-end;
    }
}
