/* Peaceful Studio - Static Site Styles */

@font-face {
    font-family: 'Above the Sky';
    src: url('fonts/above-the-sky.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-bg: #f4e8c1;
    --accent-purple: #a67c94;
    --accent-blue: #5b9bd5;
    --accent-orange: #e89c5f;
    --accent-yellow: #f4d03f;
    --accent-green: #7cb342;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --border-color: #333;
}

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

body {
    font-family: 'Ysabeau Office', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Platypi', Georgia, serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: inherit;
    text-decoration: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== HEADER ===== */
.site-header {
    padding: 1rem 0;
    background: var(--primary-bg);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.header-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-logo img {
    height: 40px;
    width: auto;
}

.header-logo span {
    font-family: 'Above the Sky', cursive;
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    font-weight: 400;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

nav a:hover,
nav a.current {
    color: var(--accent-purple);
}

/* Mobile menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* ===== HERO (Home) ===== */
.hero {
    padding: 4rem 0 2rem;
    text-align: center;
}

.hero-logo {
    max-width: 700px;
    margin: 0 auto 1rem;
}

.hero-logo img {
    width: 100%;
    height: auto;
}

.hero h1 {
    font-family: 'Above the Sky', cursive;
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.hero .tagline {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.hero .subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 2rem;
}

.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border-radius: 8px;
}

.btn-primary {
    background: var(--text-dark);
    color: var(--primary-bg);
}

.btn-primary:hover {
    background: #444;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--text-dark);
    color: var(--primary-bg);
    border: 2px solid var(--text-dark);
}

.btn-secondary:hover {
    background: transparent;
    color: var(--text-dark);
}

/* ===== TRUST INDICATORS ===== */
.trust-section {
    background: var(--text-dark);
    color: var(--primary-bg);
    padding: 5rem 0;
}

.trust-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.trust-section h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.trust-badge {
    display: inline-block;
    border: 1px solid rgba(244, 232, 193, 0.3);
    padding: 0.3rem 0.8rem;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    border-radius: 2px;
}

.trust-section ul {
    list-style: none;
    padding: 0;
}

.trust-section li {
    padding: 0.6rem 0;
    font-size: 1.05rem;
}

.trust-section li::before {
    content: "• ";
    color: var(--accent-yellow);
}

.trust-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

/* ===== ENTERPRISE SECTION ===== */
.enterprise-section {
    background: var(--accent-yellow);
    padding: 5rem 0;
}

.enterprise-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.enterprise-section h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.enterprise-badge {
    display: inline-block;
    border: 1px solid rgba(44, 44, 44, 0.3);
    padding: 0.3rem 0.8rem;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    border-radius: 2px;
}

.enterprise-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.capabilities-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.capabilities-list li {
    padding: 0.5rem 0;
    font-size: 1rem;
}

.capabilities-list li::before {
    content: "• ";
    color: var(--text-dark);
    font-weight: bold;
}

.enterprise-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

/* ===== OUR SERVICES SECTION ===== */
.services-overview {
    background: var(--accent-yellow);
    padding: 4rem 0;
}

.services-overview h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    text-decoration: underline;
    text-underline-offset: 0.3em;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    text-align: center;
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    filter: grayscale(100%);
    margin-bottom: 1rem;
    border-radius: 12px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ===== ABOUT SECTION (Home page) ===== */
.about-home {
    padding: 5rem 0;
}

.about-home .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-images {
    position: relative;
    min-height: 400px;
}

.about-images .img-main {
    width: 70%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
}

.about-images .img-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 45%;
    height: 220px;
    object-fit: cover;
    border: 4px solid var(--primary-bg);
    border-radius: 12px;
}

.about-home h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.about-home p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ===== PAGE HEADER (inner pages) ===== */
.page-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 3rem;
    background-size: cover;
    background-position: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-hero p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
}

/* ===== SERVICES PAGE ===== */
.service-detail-section {
    padding: 4rem 0;
}

.service-detail {
    background: white;
    padding: 2.5rem;
    border: 1px solid #e0d5b8;
    margin-bottom: 2rem;
    border-radius: 12px;
}

.service-detail h2 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.service-detail .service-tag {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.service-detail p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.service-detail h3 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.75rem;
}

.service-detail ul {
    list-style: none;
    padding-left: 0;
}

.service-detail li {
    padding: 0.6rem 0;
    border-bottom: 1px solid #f0e8d0;
    font-size: 1rem;
}

.service-detail li:last-child {
    border-bottom: none;
}

.service-detail li strong {
    color: var(--text-dark);
}

.service-detail-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 0 2rem;
}

.pricing-header h2 {
    font-size: 2rem;
}

.pricing-badge {
    display: inline-block;
    border: 1px solid var(--border-color);
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    border-radius: 20px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    border: 1px solid #e0d5b8;
    border-radius: 12px;
    padding: 2rem;
    background: white;
}

.pricing-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.pricing-card > p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
}

.pricing-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0e8d0;
    font-size: 0.95rem;
}

.pricing-card li:last-child {
    border-bottom: none;
}

.pricing-card h4 {
    font-size: 1rem;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}

/* ===== INDUSTRIES SECTION ===== */
.industries-section {
    background: #f9f3e3;
    padding: 3rem 0;
}

.industries-section h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.industries-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.industries-grid span {
    background: white;
    padding: 0.5rem 1.2rem;
    border: 1px solid #e0d5b8;
    font-size: 0.95rem;
    border-radius: 8px;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 4rem 0;
}

.contact-section h1 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 0.25rem;
}

.contact-section .contact-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    border: 1px solid #e0d5b8;
    border-radius: 12px;
    padding: 2rem;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.contact-card .email-box {
    background: #f9f3e3;
    padding: 0.8rem 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
}

.contact-card .email-box a {
    color: var(--text-dark);
    text-decoration: none;
}

.contact-card .email-box a:hover {
    text-decoration: underline;
}

.contact-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

.contact-info {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-info p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

/* ===== ABOUT PAGE ===== */
.about-section {
    padding: 4rem 0;
}

.about-section h1 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
}

.about-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.about-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.about-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.expertise-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
    background: #f0e6d0;
}

.expertise-section ul {
    list-style: none;
    padding: 0;
}

.expertise-section li {
    padding: 0.6rem 0;
    font-size: 1.05rem;
}

.expertise-section li::before {
    content: "• ";
    color: var(--text-dark);
    font-weight: bold;
}

.expertise-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
}

.trust-about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}

.trust-about-image {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
}

.trust-about-content {
    background: #7b5ea7;
    color: white;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-about-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.trust-about-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    opacity: 0.9;
}

.mission-section {
    background: var(--text-dark);
    color: var(--primary-bg);
    padding: 4rem 0;
}

.mission-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.mission-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 900px;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--text-dark);
    color: var(--primary-bg);
    padding: 3rem 0;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo img {
    height: 30px;
    width: auto;
    filter: brightness(1.2);
}

.footer-logo span {
    font-family: 'Above the Sky', cursive;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.footer-nav a {
    color: var(--primary-bg);
    opacity: 0.7;
    font-size: 0.9rem;
    transition: opacity 0.3s;
}

.footer-nav a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(244, 232, 193, 0.15);
    font-size: 0.85rem;
    opacity: 0.6;
}

.footer-bottom a {
    color: var(--accent-yellow);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .trust-section .container,
    .enterprise-section .container,
    .about-home .container,
    .contact-cards,
    .pricing-grid,
    .services-grid,
    .expertise-section,
    .trust-about-section,
    .service-detail-2col {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-bg);
        padding: 1rem;
        text-align: center;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    nav ul.active {
        display: flex;
    }

    .site-header .container {
        position: relative;
    }
}
