/* Global Styles - Zen Den Studios */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Garamond', serif;
    background: #fafaf8;
    color: #1a1a1a;
    line-height: 1.6;
}

/* Header & Navigation */
header {
    padding: 15px 40px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 0;
}

.logo-image {
    width: 250px;
    height: 250px;
    object-fit: contain;
}

.logo-text {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: lowercase;
    margin-top: 8px;
}

nav {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 10px;
}

nav a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    transition: opacity 0.3s;
}

nav a:hover::after,
nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #000;
}

/* Typography */
h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: 1px;
}

h2 {
    font-size: 32px;
    font-weight: 300;
    margin: 60px 0 30px 0;
    letter-spacing: 1px;
}

h2:first-of-type {
    margin-top: 0;
}

h3 {
    font-weight: 400;
    letter-spacing: 1px;
}

p {
    font-size: 17px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 20px;
}

/* Buttons & Links */
.cta-button {
    display: inline-block;
    padding: 12px 35px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    transition: all 0.3s;
    margin-top: 20px;
    border: 1px solid #000;
    cursor: pointer;
}

.cta-button:hover {
    background: transparent;
    color: #000;
    border: 1px solid #000;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #fff;
    padding: 50px 40px;
    text-align: center;
    font-size: 11px;
    letter-spacing: 2px;
    margin-top: 100px;
}

footer p {
    color: #fff;
    margin: 0;
}

/* Utility Classes */
.divider {
    width: 60px;
    height: 1px;
    background: #999;
    margin: 20px auto;
}

/* Hero Section */
.hero {
    padding: 120px 40px;
    text-align: center;
    background: #fff;
    margin: 60px 0;
}

.hero h1 {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    font-weight: 300;
}

.coming-soon {
    font-size: 24px;
    color: #999;
    margin-bottom: 30px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Services Section */
.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 40px;
}

.section-title {
    font-size: 42px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: 1px;
}

.services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-bottom: 80px;
}

.service {
    text-align: center;
}

.service-icon {
    width: 120px;
    height: 120px;
    border: 2px solid #000;
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    position: relative;
}

.service h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.service p {
    color: #666;
    line-height: 1.8;
}

/* Home page services list (no icons) */
.services-list-home {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.service-block-home {
    border-bottom: 1px solid #e0e0e0;
    padding: 40px 0;
}

.service-block-home:last-child {
    border-bottom: none;
}

.service-block-home h3 {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 12px;
}

.service-block-home p {
    font-size: 17px;
    color: #555;
    line-height: 1.9;
}

/* About Section */
.about {
    background: #fff;
    padding: 100px 40px;
    margin: 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.about-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    font-size: 38px;
    font-weight: 300;
    margin-bottom: 40px;
}

.about p {
    color: #555;
    line-height: 1.9;
    margin-bottom: 30px;
}

/* Philosophy/Ethos Section */
.philosophy {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 40px;
}

.philosophy h2 {
    font-size: 38px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 80px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.philosophy-item {
    text-align: center;
}

.philosophy-circle {
    width: 100px;
    height: 100px;
    border: 1px solid #000;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
    font-size: 36px;
}

.philosophy-item h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

.philosophy-item p {
    color: #777;
    line-height: 1.8;
}

/* About Page Styles */
main {
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 40px;
}

.tagline {
    font-size: 24px;
    font-weight: 300;
    font-style: italic;
    text-align: center;
    margin: 50px 0;
    padding: 40px;
    background: #fff;
    border-left: 3px solid #000;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 60px 0;
}

.value-item {
    padding: 30px;
    background: #fff;
    border: 1px solid #e0e0e0;
}

.value-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.value-item p {
    color: #666;
    margin: 0;
}

.slogans {
    background: #fff;
    padding: 40px;
    margin: 60px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    text-align: center;
}

.slogans h3 {
    font-size: 18px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.slogan {
    font-size: 20px;
    font-weight: 300;
    margin: 20px 0;
    font-style: italic;
}

/* Contact Page Styles */
.intro {
    color: #666;
    text-align: center;
    margin-bottom: 60px;
}

.process-box {
    background: #fff;
    padding: 40px;
    margin: 40px 0;
    border: 1px solid #e0e0e0;
}

.process-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.process-box p {
    margin: 0;
}

.highlight {
    background: #f5f5f5;
    padding: 30px 40px;
    margin: 30px 0;
    border-left: 3px solid #000;
}

.highlight h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.highlight p {
    margin: 0;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.contact-item {
    padding: 30px;
    background: #fff;
    border: 1px solid #e0e0e0;
    text-align: center;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.contact-item p {
    margin: 0;
}

.contact-item a {
    color: #000;
    text-decoration: none;
    font-weight: 400;
    border-bottom: 1px solid #000;
}

.contact-item a:hover {
    opacity: 0.7;
}

/* Form Styles */
form {
    background: #fff;
    padding: 40px;
    margin: 60px 0;
    border: 1px solid #e0e0e0;
}

form label {
    display: block;
    margin-bottom: 5px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

form input,
form textarea,
form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 25px;
    border: 1px solid #e0e0e0;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    background: #fafaf8;
}

form textarea {
    resize: vertical;
    min-height: 150px;
}

form button {
    background: #000;
    color: #fff;
    padding: 12px 35px;
    border: none;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s;
}

form button:hover {
    background: transparent;
    color: #000;
    border: 1px solid #000;
}

form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-message {
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-size: 14px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Responsive */
@media (max-width: 1024px) {
    .services {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    nav {
        gap: 25px;
        flex-wrap: wrap;
    }

    h1 {
        font-size: 32px;
    }

    main {
        padding: 50px 30px;
    }

    .services {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}
