/* --- Global Styles --- */
:root {
    --bg-dark: #111111;
    --text-light: #F5F5F5;
    --accent-gold: #FFB400; /* A gold/yellow accent */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--accent-gold);
}

a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--text-light);
}

img {
    max-width: 100%;
    height: auto;
}

/* --- Header & Navigation --- */
.navbar {
    background: #1a1a1a;
    padding: 1rem 0;
    border-bottom: 1px solid #333;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo img {
    height: 50px; /* Adjust as needed */
    filter: brightness(0) invert(1); /* Makes a black logo white */
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: var(--text-light);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

/* --- Hero Section (for index.php) --- */
.hero {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/hero-bg.jpg'); /* You'll need a background image */
    background-size: cover;
    background-position: center;
}

.hero h1 {
    font-size: 4rem;
    margin: 0;
}

.hero .slogan {
    font-size: 1.5rem;
    font-family: var(--font-body);
    color: var(--text-light);
    margin-top: 1rem;
    font-style: italic;
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 2rem 0;
    background: #1a1a1a;
    border-top: 1px solid #333;
    margin-top: 2rem;
}

/* --- Portfolio Filter Nav --- */
.filter-nav {
    text-align: center;
    margin-bottom: 2.5rem;
}
.filter-btn {
    background: none;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    cursor: pointer;
    border-radius: 4px;
    font-family: var(--font-body);
    font-weight: bold;
    transition: all 0.3s ease;
}
.filter-btn:hover {
    background: var(--accent-gold);
    color: var(--bg-dark);
}
.filter-btn.active {
    background: var(--accent-gold);
    color: var(--bg-dark);
}

/* --- Public Photo Grid --- */
.public-photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #222;
}
.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, opacity 0.4s ease;
}
.gallery-item .img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.0), rgba(0,0,0,0.8));
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.gallery-item .img-title {
    color: #fff;
    font-weight: bold;
    font-size: 1.1rem;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

/* --- Hover Effect --- */
.gallery-item a:hover img {
    transform: scale(1.1);
    opacity: 0.8;
}
.gallery-item a:hover .img-overlay {
    opacity: 1;
}
.gallery-item a:hover .img-title {
    transform: translateY(0);
}

/* --- Lightbox CSS --- */
/* This is required for the popup to work */
@import url("https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.4/css/lightbox.min.css");

/* --- Video Item Styling --- */
.gallery-item.video-item .img-overlay {
    /* Make the video overlay a bit darker */
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.9));
}

.gallery-item.video-item .play-icon {
    font-size: 3rem;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    /* Center the icon */
    transform: translate(-50%, -50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

/* Hover effects for video item */
.gallery-item.video-item a:hover .play-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}
.gallery-item.video-item a:hover .img-overlay {
    opacity: 1;
}
/* --- Floating WhatsApp Icon --- */
.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366; /* WhatsApp Green */
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s ease;
}
.floating-whatsapp:hover {
    transform: scale(1.1);
}
.floating-whatsapp img {
    width: 35px; /* Adjust size of your PNG */
    height: 35px;
}

/* --- Footer Social Icons --- */
.social-links {
    margin-top: 1rem;
}
.social-links a {
    margin: 0 0.75rem;
}
.social-links img {
    height: 24px; /* Adjust size of your PNGs */
    width: 24px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}
.social-links a:hover img {
    opacity: 1;
}

/* --- Contact Page Grid --- */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}
.owner-card {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #333;
}
.owner-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-gold);
    margin-bottom: 1rem;
}
.owner-card h3 {
    margin: 0.5rem 0;
    font-size: 1.5rem;
}
.owner-card p {
    color: #aaa;
    margin: 0;
}

/* Responsive (for mobile) */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .owner-card {
        margin-top: 2rem;
    }
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    .floating-whatsapp img {
        width: 30px;
        height: 30px;
    }
}