@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,300;14..32,400;14..32,600&display=swap');

/* HOMEPAGE COLLAGE STYLES */
.home-page {
    overflow-x: hidden;
}

.collage-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.collage-item {
    position: absolute;
    opacity: 0.85 !important;  /* Force visibility */
    animation: fadeInScale 0.8s ease-out forwards;
    cursor: pointer;
    transition: transform 0.3s, z-index 0s;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.collage-item:hover {
    transform: scale(1.05) rotate(0deg) !important;
    z-index: 100;
    opacity: 1 !important;
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

/* Make sure overlay doesn't block clicks */
.collage-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(230,194,0,0.08) 0%, rgba(0,0,0,0.85) 70%);
    z-index: 1;
    pointer-events: none;
}

.name a {
    color: #f5ecd7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.name a:hover {
    color: #e6c200;
}

/* Warm caramel glow for all inner pages */
.gallery-page .container,
.zcard-page .container,
.contact-page .container {
    position: relative;
    z-index: 2;
}

.gallery-page::before,
.zcard-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 40%, rgba(210, 170, 50, 0.12) 0%, transparent 60%),
                radial-gradient(circle at 80% 70%, rgba(210, 170, 50, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.home-hero {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 100%;
    padding: 2rem;
}

.home-name {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
    text-shadow: 0 0 30px rgba(0,0,0,0.5);
    margin-bottom: 0.5rem;
    animation: fadeInUp 1s ease-out;
}

.home-tagline {
    font-size: 1.2rem;
    color: #e6c200;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.home-nav {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 1rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.home-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 30px;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}

.home-nav a:hover {
    background: #e6c200;
    color: #000;
    border-color: #e6c200;
}

.scroll-hint {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.scroll-arrow {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    animation: bounce 2s infinite;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 0.85;
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(var(--rotation, 0deg));
    }
    50% {
        transform: translateY(-15px) rotate(var(--rotation, 0deg));
    }
}

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

/* Responsive */
@media (max-width: 768px) {
    .home-name {
        font-size: 2.5rem;
    }
    .home-nav {
        gap: 1rem;
        flex-wrap: wrap;
    }
    .collage-item {
        width: 120px;
        height: 160px;
    }
}

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

body {
    background: #0a0a0a;
    color: #e0d6c0; /* warm caramel text */
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    line-height: 1.5;
}

/* Import Google Font */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

/* Overlay for depth */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(30,20,10,0.4) 0%, #0a0a0a 90%);
    pointer-events: none;
    z-index: 0;
}


/* Centered hero */
.hero-center {
    text-align: center;
    margin: 2rem 0 3rem;
    position: relative;
    z-index: 5;
}

.name {
    font-size: 3.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #f5ecd7;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 0.5rem;
}

.main-nav a {
    color: #cbbd9b;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 1rem;
    transition: 0.3s;
    border-bottom: 1px solid transparent;
    padding-bottom: 4px;
}

.main-nav a:hover, .main-nav a.active {
    color: #e6c200;
    border-bottom-color: #e6c200;
}

/* Filter bar */
.filter-bar {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0 2rem;
}

.filter-btn {
    background: rgba(30,30,30,0.8);
    border: 1px solid #3a2e1f;
    color: #cbbd9b;
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: 0.2s;
    backdrop-filter: blur(5px);
}

.filter-btn.active, .filter-btn:hover {
    background: #e6c200;
    color: #0a0a0a;
    border-color: #e6c200;
}


/* Masonry Gallery */
.masonry {
    column-count: 3;
    column-gap: 1.2rem;
    margin-top: 1rem;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 1.2rem;
    position: relative;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.3s;
}

.masonry-item img {
    width: 100%;
    display: block;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
    transition: 0.3s;
}

.masonry-item:hover img {
    transform: scale(0.98);
    opacity: 0.9;
}

/* Drag & drop ghost class */
.sortable-drag {
    opacity: 0.4;
}

/* Responsive masonry */
@media (max-width: 1024px) {
    .masonry { column-count: 2; }
}
@media (max-width: 640px) {
    .masonry { column-count: 1; }
    .name { font-size: 2.2rem; }
}


/* Z-Card page */
.zcard {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    background: #111;
    border-radius: 24px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid #2a2418;
}

.zcard-left {
    flex: 1;
    min-width: 200px;
}
.zcard-photo {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}
.zcard-right {
    flex: 2;
}
.stats {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 0.5rem;
    margin: 1rem 0;
}
.agency {
    margin: 1.5rem 0;
}
.agency a {
    color: #e6c200;
}
.bio {
    margin-top: 1rem;
    border-top: 1px solid #2a2418;
    padding-top: 1rem;
}

.mini-masonry {
    column-count: 4;
    column-gap: 0.8rem;
    margin-top: 1rem;
}
.mini-masonry .masonry-item {
    margin-bottom: 0.8rem;
}


/* Contact page layout with photo */
.contact-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin: 3rem 0;
    background: #111;
    border-radius: 24px;
    padding: 2rem;
    align-items: center;
}

.contact-info {
    flex: 2;
    min-width: 250px;
}

.contact-photo {
    flex: 1;
    min-width: 200px;
}

.contact-photo img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
}

.contact-photo img:hover {
    transform: scale(1.02);
}

/* Responsive: stack on mobile */
@media (max-width: 768px) {
    .contact-layout {
        flex-direction: column;
        text-align: center;
    }
    .contact-photo {
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Make all links on contact page gold */
.contact-info a {
    color: #e6c200;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ffd700;
    text-decoration: underline;
}

/* Video section styles */
.video-section {
    margin: 3rem 0;
    text-align: center;
}

.video-section h3 {
    font-size: 1.5rem;
    color: #e6c200;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

.video-caption {
    margin-top: 1rem;
    color: #cbbd9b;
    font-size: 0.85rem;
    font-style: italic;
}


/* footer */
footer {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #2a2418;
    color: #6a5a3a;
    font-size: 0.8rem;
}