/* ===== COMPLETE GOLD & BLACK THEME - RETRO GLASS PHOTOGRAPHY ===== */

/* ===== 1. RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 80px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== 2. CLEAN HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    width: 50px;
    height: auto;
}

.logo h1 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-menu ul li a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 0;
    position: relative;
}

.nav-menu ul li a:hover,
.nav-menu ul li a.active {
    color: #D4AF37;
}

.nav-menu ul li a.active {
    font-weight: 600;
}

.nav-menu ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #D4AF37;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid rgba(212, 175, 55, 0.3);
}

.social-icons a {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.social-icons a:hover {
    color: #D4AF37;
    transform: translateY(-2px);
}

/* ===== 3. BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
}

.btn-primary {
    background-color: #D4AF37;
    color: #000;
}

.btn-primary:hover {
    background-color: #C19B2E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #D4AF37;
    border: 2px solid #D4AF37;
}

.btn-secondary:hover {
    background-color: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

/* ===== 4. HERO SECTION ===== */
.hero {
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                      url('1O3A2352 copy.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    padding: 20px;
}

.hero h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== 5. SERVICES PREVIEW ===== */
.services-preview {
    padding: 80px 0;
    background-color: #111;
}

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #D4AF37;
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.service-icon {
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
}

.cta-center {
    text-align: center;
    margin-top: 30px;
}

/* ===== 6. CTA SECTION ===== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #000 0%, #111 100%);
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #D4AF37;
}

.cta-section p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 30px;
}

/* ===== 7. ABOUT PAGE ===== */
.about {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.about .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-photo {
    flex: 1;
}

.about-photo img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #D4AF37;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.about-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.detail-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.detail-item i {
    font-size: 2rem;
    color: #D4AF37;
    margin-bottom: 10px;
}

.detail-item h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #fff;
}

.detail-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.values {
    padding: 80px 0;
    background-color: #111;
}

.values h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #D4AF37;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.05);
}

.value-icon {
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
}

.value-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ===== 8. PORTFOLIO PAGE (ENHANCED) ===== */
/* ===== 8. PORTFOLIO PAGE (ENHANCED) - Lightbox Updates ===== */
.lightbox-info {
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lightbox-info h3 {
    color: #D4AF37;
    margin-bottom: 5px;
    font-size: 1.3rem;
    font-weight: 600;
}

.lightbox-counter {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    background: rgba(212, 175, 55, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    margin: 0 auto;
}

.lightbox-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-top: 5px;
}

/* Make view buttons more prominent */
.view-btn {
    background: #D4AF37;
    color: #000;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.view-btn:hover {
    background: #C19B2E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Smooth transitions for lightbox images */
.lightbox-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

/* Category indicator in lightbox */
.lightbox-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: #D4AF37;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 10;
}
.portfolio-hero {
    padding: 150px 0 60px;
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), 
                url('1O3A2352 copy.jpg') center/cover;
    background-attachment: fixed;
    text-align: center;
}

.portfolio-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    color: #D4AF37;
}

.portfolio-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.category-nav {
    padding: 30px 0;
    background-color: #111;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: sticky;
    top: 80px;
    z-index: 100;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    max-width: 100%;
    overflow-x: auto;
    padding: 5px 0;
    -webkit-overflow-scrolling: touch;
}

.filter-buttons::-webkit-scrollbar {
    height: 4px;
}

.filter-buttons::-webkit-scrollbar-thumb {
    background: #D4AF37;
    border-radius: 2px;
}

.filter-btn {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.filter-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
    border-color: #D4AF37;
}

.filter-btn.active {
    background: #D4AF37;
    color: #000;
    border-color: #D4AF37;
    font-weight: 600;
}

.portfolio-gallery {
    padding: 60px 0;
    min-height: 60vh;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 3/4;
    transition: all 0.3s ease;
    opacity: 1;
    transform: scale(1);
    animation: fadeInUp 0.6s ease-out;
    background: rgba(255, 255, 255, 0.05);
}

.gallery-item-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

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

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

.overlay-content {
    color: white;
    width: 100%;
}

.overlay-content h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #D4AF37;
}

.overlay-content p {
    font-size: 0.85rem;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.view-btn {
    background: #D4AF37;
    color: #000;
    border: none;
    padding: 6px 12px;
    border-radius: 15px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.view-btn:hover {
    background: #C19B2E;
    transform: translateY(-2px);
}

.load-more-container {
    text-align: center;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.image-count {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-style: italic;
}

.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    width: 95%;
    max-width: 1200px;
    max-height: 95vh;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 2001;
    padding: 10px;
}

.lightbox-close:hover {
    color: #D4AF37;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2001;
    transition: all 0.3s ease;
}

.lightbox-nav.prev {
    left: 10px;
}

.lightbox-nav.next {
    right: 10px;
}

.lightbox-nav:hover {
    background: #D4AF37;
    color: #000;
}

.lightbox-image-container {
    width: 100%;
    height: 85vh;
    display: flex;
    flex-direction: column;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
}

.lightbox-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lightbox-info {
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.lightbox-info h3 {
    color: #D4AF37;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.lightbox-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.portfolio-cta {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

/* ===== 9. BOOKING PAGE ===== */
.booking {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.booking h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #D4AF37;
}

.booking > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.booking-widget {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.booking-widget iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 8px;
}

/* ===== 10. FOOTER (ORIGINAL STYLE) ===== */
footer {
    background-color: #111;
    padding: 60px 0 20px;
    margin-top: 80px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo img {
    width: 60px;
    height: auto;
    margin-bottom: 15px;
}

.footer-logo h3 {
    color: #D4AF37;
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-contact {
    flex: 1;
    min-width: 250px;
}

.footer-contact h4 {
    color: #D4AF37;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: #D4AF37;
    width: 20px;
    text-align: center;
}

.footer-social {
    flex: 1;
    min-width: 250px;
}

.footer-social h4 {
    color: #D4AF37;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #D4AF37;
    color: #000;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ===== 11. RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .about .container {
        flex-direction: column;
    }
    
    .about-photo,
    .about-content {
        width: 100%;
    }
    
    .about-content {
        order: 2;
    }
    
    .about-photo {
        order: 1;
        margin-bottom: 30px;
    }
    
    .footer-content {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        transition: right 0.3s ease;
        padding: 40px 20px;
        border-left: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 25px;
        align-items: flex-start;
    }
    
    .social-icons {
        margin-left: 0;
        margin-top: 25px;
        padding-left: 0;
        border-left: none;
        padding-top: 25px;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
        width: 100%;
        justify-content: flex-start;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .services-grid,
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .booking-widget iframe {
        height: 500px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: left;
    }
    
    .footer-logo,
    .footer-contact,
    .footer-social {
        min-width: 100%;
    }
    
    .social-links {
        justify-content: flex-start;
    }
    
    .category-nav {
        top: 70px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    header {
        padding: 10px 15px;
    }
    
    .logo h1 {
        font-size: 1.1rem;
    }
    
    .logo img {
        width: 45px;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-widget iframe {
        height: 400px;
    }
    
    .filter-buttons {
        justify-content: flex-start;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .lightbox-nav.prev {
        left: 5px;
    }
    
    .lightbox-nav.next {
        right: 5px;
    }
}

@media (max-width: 360px) {
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .logo h1 {
        font-size: 1rem;
    }
    
    .filter-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* ===== 12. UTILITY & ANIMATIONS ===== */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-40 {
    margin-top: 40px;
}

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

/* ===== 13. SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #111;
}

::-webkit-scrollbar-thumb {
    background: #D4AF37;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #C19B2E;
}