:root {
    --bg-color: #FDFBF7;
    /* Creme/Off-White */
    --text-color: #4A3B32;
    /* Deep Wood Brown */
    --accent-color: #D4AF37;
    /* Soft Gold */
    --secondary-bg: #F5F0E6;
    /* Slightly darker creme for sections */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-image: url('images/background.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-blend-mode: multiply;
}

/* Header & Nav */
header {
    background-color: rgba(253, 251, 247, 0.95);
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text-color);
    letter-spacing: 1px;
}

.logo a {
    text-decoration: none;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    font-family: inherit;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 400;
    transition: color 0.3s ease;
    font-size: 1rem;
}

nav a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
    background: radial-gradient(circle at center, #fff 0%, #fdfbf7 100%);
    margin-top: 60px;
    /* Offset for fixed header */
}

.hero-content {
    max-width: 800px;
    animation: fadeIn 1.5s ease-out;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.hero-logo {
    display: block;
    width: 150px;
    height: auto;
    margin: 0 auto 1.5rem;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.intro-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #6d5e52;
}

.hero-step-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-color);
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 700;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--text-color);
    color: #fff;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    letter-spacing: 1px;
    border: 1px solid var(--text-color);
}

.btn:hover {
    background-color: transparent;
    color: var(--text-color);
}

/* Sections General */
section {
    padding: 5rem 5%;
}

section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

#gallery {
    background-color: var(--secondary-bg);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gallery Section */
.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-intro {
    max-width: 600px;
    margin: 0 auto 3rem;
    color: #6d5e52;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.gallery-item {
    background: #fff;
    padding: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.placeholder-img {
    width: 100%;
    height: 250px;
    background-color: #eee;
    margin-bottom: 1rem;
    /* In a real scenario, this would be an img tag */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
}

.gallery-item h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.gallery-item p {
    font-size: 0.9rem;
    color: #777;
}

/* Pricing Section */
#pricing {
    background-color: #fff;
    text-align: center;
}

.pricing-container {
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--bg-color);
    padding: 2rem;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: var(--accent-color);
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.pricing-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2rem;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-category-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-color);
    margin: 4rem 0 2rem;
    position: relative;
    display: inline-block;
}

.pricing-category-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 10px auto 0;
}

.pricing-card .details {
    font-size: 0.95rem;
    font-weight: 700;
    color: #6d5e52;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    padding-left: 1rem;
}

.pricing-card ul li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-card ul li::before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1;
}

/* Process and Terms Section */
#process-terms {
    background-color: #fff;
    padding: 5rem 5%;
}

.process-container {
    max-width: 1000px;
    margin: 0 auto;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.process-column h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: left;
    color: var(--text-color);
}

.process-column ol,
.process-column ul {
    list-style-position: inside;
    color: var(--text-color);
    line-height: 1.8;
}

.process-column ol li,
.process-column>ul>li {
    margin-bottom: 1rem;
}

.process-column ul {
    list-style-type: disc;
}

.process-column ol li ul {
    margin-top: 0.5rem;
    margin-left: 2rem;
    list-style-type: circle;
}

/* Contact Section */
#contact {
    background-color: var(--secondary-bg);
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-top: 3rem;
    text-align: left;
}

.contact-info h3 {
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
}

.contact-email {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.contact-info .note {
    margin-top: 2rem;
    font-size: 0.9rem;
    font-style: italic;
    color: #888;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    background: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: 2px;
}

.form-group textarea {
    resize: vertical;
}

.contact-form button {
    width: 100%;
    cursor: pointer;
}

/* Footer */
footer {
    background-color: #2c241f;
    color: #fff;
    text-align: center;
    padding: 2rem;
    margin-top: 0;
}

footer p {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-card.featured {
        transform: scale(1);
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .logo {
        font-size: 2rem;
    }
}

/* Portfolio Page */
.portfolio-header {
    margin-top: 80px;
    text-align: center;
    padding: 3rem 5%;
    background-color: var(--secondary-bg);
}

.portfolio-header h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--text-color);
}

.signature-section {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #fff;
}

.signature-text,
.signature-name {
    font-family: 'Great Vibes', cursive;
    font-size: 3.75rem;
    color: var(--text-color);
    line-height: 1.2;
}

.signature-name {
    font-size: 5.25rem;
    margin-top: 0.5rem;
}

/* Gallery Item Headings as Arty Style */
.gallery-item h3 {
    font-family: 'Great Vibes', cursive;
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 400;
}

/* Navigation Active State */
nav a.active {
    color: var(--accent-color);
    font-weight: 700;
}