/* 
   Aura & Gold Studios - Premium Photography Studio Custom Stylesheet
   Color Scheme: Primary Gold (#D4AF37), Secondary Dark (#111111), Background Light (#F8F9FA), Accent White (#FFFFFF)
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --primary-gold: #D4AF37;
    --primary-gold-hover: #B8902A;
    --dark-bg: #111111;
    --dark-card: #1c1c1c;
    --light-bg: #F8F9FA;
    --white: #FFFFFF;
    --grey-text: #A0A0A0;
    --border-color: rgba(212, 175, 55, 0.2);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

/* Base Styles */
html, body {
    font-family: var(--font-body);
    background-color: var(--light-bg);
    color: var(--dark-bg);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body.dark-theme-active {
    background-color: var(--dark-bg);
    color: var(--white);
}

body.dark-theme-active .text-muted {
    color: var(--grey-text) !important;
}

h1, h2, h3, h4, h5, h6, .display-font {
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555555;
    font-weight: 300;
}

body.dark-theme-active p {
    color: var(--grey-text);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--dark-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-gold-hover);
}

/* Glassmorphism Classes */
.glass-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-panel-dark {
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
}

/* Navigation & Sticky Header */
.navbar-custom {
    padding: 20px 0;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.navbar-custom.scrolled {
    padding: 12px 0;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.navbar-custom .navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.navbar-custom .nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 15px !important;
    position: relative;
}

.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    width: 0;
    height: 1.5px;
    background-color: var(--primary-gold);
    transition: var(--transition);
}

.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
    width: calc(100% - 30px);
}

.navbar-custom .nav-link.active {
    color: var(--primary-gold) !important;
}

/* Gold Button */
.btn-gold {
    background-color: var(--primary-gold);
    color: var(--dark-bg);
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    padding: 12px 28px;
    border-radius: 0;
    border: 1px solid var(--primary-gold);
    transition: var(--transition);
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--primary-gold);
    border-color: var(--primary-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.15);
}

.btn-gold-outline {
    background-color: transparent;
    color: var(--primary-gold);
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    padding: 12px 28px;
    border-radius: 0;
    border: 1px solid var(--primary-gold);
    transition: var(--transition);
}

.btn-gold-outline:hover {
    background-color: var(--primary-gold);
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(17, 17, 17, 0.5), rgba(17, 17, 17, 0.9));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Inner Page Hero */
.inner-hero {
    height: 60vh;
    min-height: 400px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Sections */
.section-padding {
    padding: 100px 0;
}

.bg-dark-section {
    background-color: var(--dark-bg);
    color: var(--white);
}

.section-title-wrap {
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--primary-gold);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 3px;
    display: inline-block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--primary-gold);
}

.section-title.left-aligned::after {
    left: 0;
    transform: none;
}

/* Cards & Hover Effects */
.service-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 0;
    transition: var(--transition);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

body.dark-theme-active .service-card {
    background: var(--dark-card);
    border: 1px solid var(--border-color);
}

.bg-dark-section .service-card {
    background: var(--dark-card);
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-gold);
}

.service-card .card-img-wrap {
    overflow: hidden;
    position: relative;
    height: 260px; /* Fixed height for image alignment */
}

.service-card .card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .card-img-wrap img {
    transform: scale(1.1);
}

.service-card .card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card .card-text {
    flex-grow: 1;
}

/* Stats Counter */
.counter-box {
    text-align: center;
    padding: 40px 20px;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.02);
    transition: var(--transition);
}

.counter-box:hover {
    border-color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.03);
}

.counter-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    font-family: var(--font-heading);
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--border-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

@media (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }
}

.timeline-container {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-container::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    right: -8px;
    background-color: var(--dark-bg);
    border: 3px solid var(--primary-gold);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

@media (max-width: 768px) {
    .timeline-container {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    .timeline-container::after {
        left: 23px;
        right: auto;
    }
}

.timeline-left {
    left: 0;
}

.timeline-right {
    left: 50%;
}

@media (max-width: 768px) {
    .timeline-right {
        left: 0;
    }
}

.timeline-left::after {
    right: -8px;
}

.timeline-right::after {
    left: -8px;
}

.timeline-content {
    padding: 30px;
    background-color: var(--white);
    position: relative;
    border-radius: 0;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

body.dark-theme-active .timeline-content {
    background-color: var(--dark-card);
    border: 1px solid var(--border-color);
    box-shadow: none;
}

.bg-dark-section .timeline-content {
    background-color: var(--dark-card);
    border: 1px solid var(--border-color);
    box-shadow: none;
}

/* Portfolio Filters & Masonry */
.filter-btn {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--dark-bg);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 20px;
    margin: 5px;
    transition: var(--transition);
}

body.dark-theme-active .filter-btn {
    border-color: rgba(255,255,255,0.1);
    color: var(--white);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--dark-bg);
}

.portfolio-grid {
    display: flex;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
}

.portfolio-item {
    padding: 10px;
    width: 33.333%;
    transition: var(--transition);
}

@media (max-width: 992px) {
    .portfolio-item {
        width: 50%;
    }
}

@media (max-width: 576px) {
    .portfolio-grid {
        margin-right: -5px;
        margin-left: -5px;
    }
    .portfolio-item {
        width: 50%;
        padding: 5px;
    }
    .portfolio-info {
        padding: 10px;
    }
    .portfolio-info h5 {
        font-size: 1rem;
        margin-bottom: 5px;
    }
    .portfolio-info p {
        font-size: 0.8rem;
    }
}

.portfolio-wrap {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.portfolio-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 17, 17, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    padding: 20px;
    text-align: center;
    border: 2px solid var(--primary-gold);
}

.portfolio-wrap:hover .portfolio-info {
    opacity: 1;
}

.portfolio-wrap:hover img {
    transform: scale(1.1);
}

/* Testimonials Slider */
.testimonial-swiper {
    padding-bottom: 50px !important;
}

.testimonial-card {
    padding: 40px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 0;
    text-align: center;
}

body.dark-theme-active .testimonial-card {
    background: var(--dark-card);
    border: 1px solid var(--border-color);
}

.bg-dark-section .testimonial-card {
    background: var(--dark-card);
    border: 1px solid var(--border-color);
}

.client-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid var(--primary-gold);
}

.swiper-pagination-bullet-active {
    background: var(--primary-gold) !important;
}

/* Team Card */
.team-card {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.team-img-wrap {
    position: relative;
    overflow: hidden;
}

.team-img-wrap img {
    transition: var(--transition);
}

.team-card:hover .team-img-wrap img {
    transform: scale(1.05);
}

.team-socials {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background: rgba(17, 17, 17, 0.9);
    padding: 15px 0;
    display: flex;
    justify-content: center;
    transition: var(--transition);
    border-top: 1px solid var(--primary-gold);
}

.team-card:hover .team-socials {
    bottom: 0;
}

.team-socials a {
    color: var(--white);
    margin: 0 10px;
    font-size: 1rem;
}

.team-socials a:hover {
    color: var(--primary-gold);
}

/* Pricing Card */
.pricing-card {
    padding: 50px 30px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 0;
    transition: var(--transition);
    position: relative;
}

body.dark-theme-active .pricing-card {
    background: var(--dark-card);
    border: 1px solid var(--border-color);
}

.bg-dark-section .pricing-card {
    background: var(--dark-card);
    border: 1px solid var(--border-color);
}

.pricing-card.featured {
    border: 2px solid var(--primary-gold);
    transform: scale(1.05);
    z-index: 1;
}

@media (max-width: 992px) {
    .pricing-card.featured {
        transform: none;
    }
}

.pricing-ribbon {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-gold);
    color: var(--dark-bg);
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-val {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-gold);
}

/* Blog Card */
.blog-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 0;
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
}

body.dark-theme-active .blog-card {
    background: var(--dark-card);
    border: 1px solid var(--border-color);
}

.bg-dark-section .blog-card {
    background: var(--dark-card);
    border: 1px solid var(--border-color);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border-color: var(--primary-gold);
}

.blog-img-wrap {
    overflow: hidden;
    position: relative;
    height: 240px;
}

.blog-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-img-wrap img {
    transform: scale(1.08);
}

.blog-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(17, 17, 17, 0.95);
    color: var(--primary-gold);
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid var(--primary-gold);
}

/* Contact Info & Forms */
.contact-info-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-info-icon {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-right: 20px;
    width: 50px;
    height: 50px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.05);
}

.form-control-custom {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0;
    padding: 12px 18px;
    color: var(--dark-bg);
    transition: var(--transition);
}

body.dark-theme-active .form-control-custom {
    border-color: var(--border-color);
    color: var(--white);
}

.form-control-custom:focus {
    background: transparent;
    border-color: var(--primary-gold);
    box-shadow: none;
    color: inherit;
}

/* Parallax Banner */
.parallax-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0;
}

/* Footer Styles */
.footer-top {
    background-color: #0d0d0d;
    color: var(--white);
    padding: 80px 0 50px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom {
    background-color: #080808;
    color: var(--grey-text);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 1.5px;
    background-color: var(--primary-gold);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--grey-text);
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.footer-links a::before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 8px;
    color: var(--primary-gold);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.footer-links a:hover::before {
    margin-right: 12px;
}

.footer-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #181818;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--white);
    border-radius: 0;
    margin-right: 8px;
    transition: var(--transition);
}

.footer-social-icons a:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
    border-color: var(--primary-gold);
    transform: translateY(-3px);
}

/* Newsletter Form */
.newsletter-form .form-control {
    border-radius: 0;
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    color: var(--white);
    padding: 12px 18px;
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-gold);
    box-shadow: none;
}

/* Lightbox UI */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 1000px;
}

.lightbox-content img {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border: 2px solid var(--primary-gold);
}

.lightbox-close {
    color: var(--white);
    position: absolute;
    top: 15px;
    right: 35px;
    font-size: 40px;
    font-weight: bold;
    transition: var(--transition);
    cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--primary-gold);
    text-decoration: none;
    cursor: pointer;
}

/* Mobile Menu Fix */
.mobile-icon {
    display: none;
    margin-right: 8px;
    width: 20px;
    text-align: center;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(17, 17, 17, 0.98);
        backdrop-filter: blur(10px);
        padding: 1rem;
        margin-top: 15px;
        border: 1px solid var(--border-color);
        border-radius: 4px;
    }
    .mobile-icon {
        display: inline-block;
    }
}
