/* Photographer Portfolio Styles */

:root {
    --bg-black: #050505;
    --text-white: #ffffff;
    --text-muted: #888888;
}

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
}

.tracking-widest {
    letter-spacing: 0.3em;
}

/* Navbar */
.navbar {
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
    padding-top: 2rem;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-link {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-left: 1.5rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: #fff;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Carousel */
.carousel-item {
    height: 100vh;
}

.carousel-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

.carousel-caption {
    z-index: 2;
    bottom: 0;
    padding-bottom: 5rem;
}

/* Gallery */
.divider {
    width: 60px;
    height: 2px;
    background-color: #fff;
}

.gallery-link {
    display: block;
    position: relative;
    overflow: hidden;
}

.gallery-link img {
    transition: transform 0.6s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-link:hover img {
    transform: scale(1.05);
}

.gallery-link:hover .gallery-overlay {
    opacity: 1;
}

/* Custom bg */
.bg-dark-subtle {
    background-color: #0a0a0a;
}

.text-light-50 {
    color: rgba(255,255,255,0.7);
}

/* Buttons */
.btn-outline-light {
    border-width: 1px;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.btn-outline-light:hover {
    background-color: #fff;
    color: #000;
}

/* Filters */
.filters .btn-link {
    color: var(--text-muted) !important;
    letter-spacing: 1px;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.filters .btn-link:hover,
.filters .btn-link.active {
    color: var(--text-white) !important;
}

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 1000;
}

.floating-btn {
    padding: 10px 18px;
    border-radius: 0;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(17, 17, 17, 0.9);
    backdrop-filter: blur(10px);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.floating-btn:hover {
    transform: translateY(-2px);
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.floating-btn.edit-btn {
    border-color: #ffffff;
    background: #ffffff;
    color: #000000;
}

.floating-btn.edit-btn:hover {
    background: #ffffff;
    opacity: 0.9;
    color: #000000;
}
