:root {
    --bg-color: #fcfcfc;
    --text-color: #333333;
    --accent-color: #8e8e8e; /* Soft grey for accents */
    --light-bg: #f5f5f5;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Lato', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-sans);
    line-height: 1.8;
    margin: 0;
    padding: 0;
    font-weight: 300;
}

h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 400;
    margin-top: 0;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    background: transparent;
    position: absolute;
    top: 0;
    width: 90%;
    z-index: 10;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9; /* Slightly faded for text readability if needed */
    filter: brightness(0.95) contrast(0.95);
}

.hero-content {
    text-align: center;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-style: italic;
}

.hero-content p {
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 3rem;
    opacity: 0.9;
}

/* Buttons */
.btn-outline {
    border: 1px solid white;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: white;
    color: black;
}

.btn-solid {
    background: black;
    color: white;
    border: none;
    padding: 1rem 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-solid:hover {
    opacity: 0.8;
}

/* Sections */
.section {
    padding: 6rem 5%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.container.narrow {
    max-width: 700px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--accent-color);
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item {
    overflow: hidden;
}

.gallery-item:hover img {
    transform: scale(1.03);
}

/* About */
.bg-light {
    background-color: var(--light-bg);
}

.flex-row {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-text {
    flex: 1;
}

.about-img {
    flex: 1;
}

.about-img img {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
}

.section-title-left {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

/* Contact Form */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    background: transparent;
    font-family: var(--font-sans);
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: black;
}

.text-center {
    text-align: center;
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem 0;
    font-size: 0.9rem;
    color: #888;
    border-top: 1px solid #eee;
}

.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.8rem;
}

/* Animations */
.fade-in {
    animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* AI Island (Artistic) */
.ai-island-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
}

.ai-orb {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08); /* Soft shadow */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.ai-orb:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.orb-icon {
    font-size: 1.5rem;
}

.orb-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

.ai-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 20px; /* Soft round corners */
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform-origin: bottom right;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
    transform: scale(0.9) translateY(20px);
    pointer-events: none;
}

.ai-window.active {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: all;
}

.ai-header {
    padding: 1.5rem;
    border-bottom: 1px solid #f5f5f5;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(5px);
}

.ai-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-color);
}

.ai-subtitle {
    font-size: 0.8rem;
    color: var(--accent-color);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #ccc;
}

.ai-messages {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    font-size: 0.95rem;
    background-color: #fdfdfd;
}

.message {
    margin-bottom: 1rem;
    line-height: 1.5;
}

.message.system {
    color: #555;
    background: #f0f0f0;
    padding: 1rem;
    border-radius: 0 12px 12px 12px;
    display: inline-block;
}

.message.user {
    color: white;
    background: #333;
    padding: 1rem;
    border-radius: 12px 0 12px 12px;
    align-self: flex-end;
    margin-left: auto;
    text-align: right;
    max-width: 80%;
}

.message.ai {
    color: #333;
    background: white;
    border: 1px solid #eee;
    padding: 1rem;
    border-radius: 0 12px 12px 12px;
    max-width: 90%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.ai-input-area {
    padding: 1rem;
    border-top: 1px solid #f5f5f5;
    display: flex;
    gap: 0.5rem;
    background: white;
}

#ai-input {
    flex: 1;
    border: none;
    padding: 0.8rem;
    font-family: var(--font-sans);
    font-size: 1rem;
}

#ai-input:focus {
    outline: none;
}

.send-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #333;
    transition: transform 0.2s;
}

.send-btn:hover {
    transform: translateX(3px);
}

.hidden {
    display: none;
}

/* Mobile Tweaks */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Simplify for now, maybe hamburger later */
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .flex-row {
        flex-direction: column;
    }
    .ai-window {
        width: 90vw;
        height: 60vh;
        bottom: 90px;
    }
}
/* Pricing / Shoots */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.pricing-card {
    background: white;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.price {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.price-subtitle {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.price-features {
    list-style: none;
    padding: 0;
    margin-bottom: 3rem;
    border-top: 1px solid #f5f5f5;
    border-bottom: 1px solid #f5f5f5;
}

.price-features li {
    padding: 1rem 0;
    border-bottom: 1px solid #f9f9f9;
    font-size: 0.95rem;
}

.price-features li:last-child {
    border-bottom: none;
}

.btn-outline.dark {
    border-color: #333;
    color: #333;
}

.btn-outline.dark:hover {
    background: #333;
    color: white;
}
