/*
Theme Name: DeBardeleben Photography Luxury Theme
Theme URI: https://example.com/
Author: DeBardeleben Team
Description: Custom premium multi-page theme matching the luxury wedding layout exactly.
Version: 1.3
Text Domain: debardeleben-photography
*/

/* --- CSS Reset & Variables --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --bg-color: #fdfcfb;
    --text-dark: #1a1a1a;
    --text-muted: #5a5a5a;
    --accent-gold: #c5a059;
    --accent-gold-hover: #b38f4b;
    --card-bg: #f7f5f2;
    --serif: 'Cormorant Garamond', serif;
    --sans: 'Montserrat', sans-serif;
}
html {
    scroll-behavior: smooth;
}
body {
    background-color: var(--bg-color);
    color: var(--text-dark);
    font-family: var(--sans);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* --- Global Typography --- */
h1, h2, h3 {
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: 0.05em;
}
p {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 300;
}
a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* --- Reusable Components --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s ease;
}
.btn-gold {
    background-color: var(--accent-gold);
    color: #fff;
    border: 1px solid var(--accent-gold);
}
.btn-gold:hover {
    background-color: var(--accent-gold-hover);
    border-color: var(--accent-gold-hover);
}
.btn-outline {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}
.btn-outline:hover {
    background-color: #fff;
    color: var(--text-dark);
}
.section-padding {
    padding: 8rem 0;
}
.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
}
.section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background-color: var(--accent-gold);
    margin: 1.5rem auto 0;
}

/* --- Navigation Bar --- */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 2rem 0;
}

body:not(.home) header {
    background-color: #161514;
    position: relative;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--serif);
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.logo a {
    color: #fff !important;
}

header nav ul {
    display: flex !important;
    list-style: none !important;
    gap: 2.5rem !important;
    margin: 0 !important;
    padding: 0 !important;
    align-items: center;
}

header nav ul li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

header nav ul li a {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-family: var(--sans);
    font-weight: 400;
    transition: all 0.3s ease;
}

header nav ul li a:hover {
    color: var(--accent-gold) !important;
}

header nav ul li.current-menu-item a {
    color: var(--accent-gold) !important;
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(26, 26, 26, 0.45), rgba(26, 26, 26, 0.35)), 
                url('https://images.unsplash.com/photo-1519741497674-611481863552?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding-top: 50px;
}
.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto 3rem;
    font-family: var(--serif);
    font-style: italic;
    letter-spacing: 0.05em;
}
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* --- The Legacy Proof Section --- */
.legacy {
    background-color: var(--bg-color);
    text-align: center;
}
.legacy-blockquote {
    font-family: var(--serif);
    font-size: 2rem;
    line-height: 1.5;
    color: var(--text-dark);
    max-width: 900px;
    margin: 0 auto 4rem;
    font-style: italic;
}
.grid-three {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}
.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

/* --- Signature Style Section --- */
.styles {
    background-color: var(--card-bg);
}
.grid-two {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 4rem;
}
.style-card {
    background-color: var(--bg-color);
    border: 1px solid rgba(0,0,0,0.03);
}
.style-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.style-info {
    padding: 2.5rem;
    text-align: center;
}
.style-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}
.style-link {
    display: inline-block;
    margin-top: 1.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
    border-bottom: 1px solid var(--accent-gold);
    padding-bottom: 2px;
}
.style-link:hover {
    color: var(--text-dark);
    border-color: var(--text-dark);
}

/* --- Investment Matrix --- */
.investment-table-container {
    overflow-x: auto;
    margin-top: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}
table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    text-align: left;
}
th, td {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #eee;
}
th {
    background-color: var(--card-bg);
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}
tr:last-child td {
    border-bottom: none;
}
td strong {
    font-weight: 500;
    color: var(--text-dark);
}

/* --- Testimonials --- */
.testimonials {
    background-color: var(--card-bg);
    text-align: center;
}
.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}
.testimonial-item {
    background-color: var(--bg-color);
    padding: 3.5rem 2.5rem;
    border-radius: 2px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.01);
}
.testimonial-text {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--text-dark);
}
.testimonial-author {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
}
.testimonial-author span {
    color: var(--accent-gold);
    display: block;
    margin-top: 0.3rem;
    font-size: 0.7rem;
}

/* --- Contact Form Section --- */
.contact {
    background-color: var(--bg-color);
}
.contact-wrapper {
    max-width: 700px;
    margin: