/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #faf9f6;
}

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

/* Modern minimal Studio Taupe style navbar */
.header {
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: none;
    box-shadow: 0 4px 24px rgba(185,157,139,0.08), 0 1.5px 8px rgba(44,44,44,0.04);
    transition: background 0.3s, box-shadow 0.3s;
}

.nav-container {
    max-width: none;
    margin: 0;
    padding: 0 28px 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo-text {
    font-size: 1.7rem;
    font-weight: 700;
    color: #b99d8b;
    letter-spacing: 0.5px;
    text-decoration: none;
    padding-right: 24px;
}

.logo-img {
    height: 28px;
    width: auto;
    display: block;
    padding-right: 24px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}
.nav-menu li {
    position: relative;
}
.nav-menu li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -0.6rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 18px;
    border-radius: 2px;
    background: linear-gradient(180deg, #AEC3B0 0%, #0F5132 100%);
    box-shadow: 0 2px 8px #0F513222;
    opacity: 0.8;
}

.nav-menu a {
    position: relative;
    background: none;
    color: #2c2c2c;
    font-weight: 500;
    font-size: 1.1rem;
    text-decoration: none;
    padding: 8px 12px 6px 12px;
    letter-spacing: 0.01em;
    transition: color 0.18s;
}
.nav-menu a:hover {
    background: transparent; /* remove pill hover */
}

.nav-menu a::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: #0F5132; /* solid green underline */
    border-radius: 2px;
    opacity: 0;
    transform: scaleX(0.5);
    transition: opacity 0.22s, transform 0.22s;
}

.nav-menu a:hover, .nav-menu a:focus {
    color: #0F5132;
}

.nav-menu a:hover::after, .nav-menu a:focus::after,
.nav-menu a.active::after, .nav-menu a[aria-current="page"]::after {
    opacity: 1;
    transform: scaleX(1);
}

.nav-menu a.active, .nav-menu a[aria-current="page"] {
    color: #0F5132;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3.5px;
    background-color: #b99d8b;
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 96px 0 44px; /* 1.5x top space */
    background: linear-gradient(135deg, #f8f7f4 0%, #e3d9d1 100%);
    text-align: center;
}

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

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #375534; /* deep green */
    color: #E3EED4;
}

.btn-primary:hover {
    background-color: #0F2A1D; /* darker green */
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #b99d8b;
    border-color: #b99d8b;
}

.btn-secondary:hover {
    background-color: #b99d8b;
    color: white;
    transform: translateY(-2px);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title, h1.section-title, h2.section-title {
    font-family: 'Inter', sans-serif !important;
    font-weight: 400 !important;
    font-style: normal !important;
    font-variation-settings: 'wght' 400 !important;
    font-size: 2.7rem;
    letter-spacing: 0.01em;
    text-align: center;
    margin-bottom: 1.2rem;
    color: #2c2c2c;
}

/* Apps Section */
.apps {
    background-color: white;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.app-card {
    background-color: #faf9f6;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.app-image {
    height: 200px;
    background: linear-gradient(135deg, #e3d9d1 0%, #d5c5b9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-placeholder {
    font-size: 4rem;
    opacity: 0.7;
}

.app-content {
    padding: 1.5rem;
}

.app-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.app-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.app-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.tag {
    background-color: #b99d8b;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.app-link {
    color: #b99d8b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.app-link:hover {
    color: #ab8974;
}

/* About Section */
.about {
    background-color: #f8f7f4;
}

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

.about-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Contact Section */
.contact {
    background-color: white;
}

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

.contact-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.contact-item {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.contact-item a {
    color: #b99d8b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ab8974;
}

/* Footer */
.footer {
    background-color: #2c2c2c;
    color: white;
    padding: 20px 0 10px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo span {
    font-size: 1.25rem;
    font-weight: 600;
    color: #b99d8b;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #b99d8b;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #999;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1100px) {
    .nav-container {
        padding: 0 12px;
    }
    .nav-menu {
        gap: 1.2rem;
    }
}

@media (max-width: 900px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100vw;
        text-align: center;
        transition: left 0.3s;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        z-index: 2000;
        display: none;
        min-height: calc(100vh - 80px);
        overflow-y: auto;
    }
    .nav-menu.active {
        left: 0;
        display: flex;
    }
    .nav-menu li {
        margin: 1rem 0;
    }
    .hamburger {
        display: flex !important;
        z-index: 2100;
        position: relative;
    }
    .hamburger.active {
        z-index: 2200;
    }
    .hamburger span {
        background-color: #b99d8b;
    }
    .nav-menu a {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .apps-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .app-card {
        margin: 0 10px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation classes */
.fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide-up {
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Simulator Section */
.simulator {
    background: linear-gradient(135deg, #f8f7f4 0%, #e3d9d1 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.simulator-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.simulator-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Phone Mockup Fix */
.phone-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    position: relative;
    z-index: 2;
}

.phone-screen {
    width: 280px;
    height: 560px;
    background: #000;
    border-radius: 30px;
    padding: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: rotateY(-15deg) rotateX(5deg);
    transition: transform 0.3s ease;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-screen > div {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    box-shadow: none;
}

/* Prevent content from overflowing the phone screen */
.app-header, .app-content-simulator {
    width: 100%;
    box-sizing: border-box;
}

.app-content-simulator {
    flex: 1;
    overflow-y: auto;
    background: #fff;
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
}

/* Fix for tab bar and content alignment */
.tab-bar {
    position: sticky;
    top: 0;
    z-index: 1;
}

/* App Header */
.app-header {
    background: linear-gradient(135deg, #b99d8b 0%, #ab8974 100%);
    color: white;
    padding: 20px 16px 16px;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    margin-bottom: 8px;
}

.status-icons {
    display: flex;
    gap: 4px;
}

.app-title h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 2px 0;
}

.app-title .subtitle {
    font-size: 12px;
    opacity: 0.8;
}

/* Tab Bar */
.tab-bar {
    display: flex;
    background: #f5f5f5;
    border-bottom: 1px solid #e0e0e0;
}

.tab {
    flex: 1;
    padding: 12px 8px;
    border: none;
    background: transparent;
    font-size: 12px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab.active {
    color: #b99d8b;
    border-bottom: 2px solid #b99d8b;
    background: white;
}

.tab:hover {
    background: rgba(185, 157, 139, 0.1);
}

/* Tab Content */
.tab-content {
    display: none;
    padding: 16px;
    height: 400px;
    overflow-y: auto;
}

.tab-content.active {
    display: block;
}

/* Collection Tab */
.puzzle-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.puzzle-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.puzzle-image {
    width: 40px;
    height: 40px;
    background: #b99d8b;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.puzzle-info h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 2px 0;
    color: #2c2c2c;
}

.puzzle-info p {
    font-size: 12px;
    color: #666;
    margin: 0 0 4px 0;
}

.status {
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 500;
}

.status.completed {
    background: #4CAF50;
    color: white;
}

.status.in-progress {
    background: #FF9800;
    color: white;
}

.status.not-started {
    background: #9E9E9E;
    color: white;
}

/* Active Tab */
.active-puzzle {
    padding: 20px;
    background: #f9f9f9;
    border-radius: 12px;
    text-align: center;
}

.puzzle-progress h4 {
    font-size: 16px;
    margin: 0 0 16px 0;
    color: #2c2c2c;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin: 12px 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #b99d8b 0%, #ab8974 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.puzzle-progress p {
    font-size: 12px;
    color: #666;
    margin: 8px 0 16px 0;
}

.pause-btn {
    background: #FF9800;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.pause-btn:hover {
    background: #F57C00;
}

/* Stats Tab */
.stats-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-item {
    text-align: center;
    padding: 16px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.stat-item h4 {
    font-size: 12px;
    color: #666;
    margin: 0 0 8px 0;
    font-weight: 500;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #b99d8b;
}

/* Simulator Info */
.simulator-info {
    padding: 40px 40px 40px 0;
    max-width: 600px;
}

.simulator-info h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 2.5rem;
    font-size: 1.25rem;
    line-height: 2.1;
}

.feature-list li {
    padding: 12px 0;
    font-size: 1.25rem;
    color: #444;
    display: flex;
    align-items: center;
    gap: 18px;
}

.feature-list li::before {
    font-size: 1.5rem;
}

.btn.btn-primary {
    font-size: 1.15rem;
    padding: 16px 36px;
}

/* Responsive Design for Simulator */
@media (max-width: 1100px) {
    .simulator-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .simulator-info {
        padding: 32px 0 32px 0;
        max-width: 100%;
    }
}

@media (max-width: 900px) {
    .simulator-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .simulator-info {
        padding: 24px 0 0 0;
        text-align: center;
    }
    .simulator-info h3 {
        font-size: 2rem;
    }
    .feature-list {
        font-size: 1.1rem;
    }
    .feature-list li {
        font-size: 1.1rem;
    }
}

/* iPad Pro Landscape Mockup */
.ipad-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    position: relative;
    z-index: 2;
}

.ipad-screen {
    width: 700px;
    height: 525px; /* 4:3 aspect ratio, landscape */
    background: #000;
    border-radius: 38px;
    padding: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: rotateY(-8deg) rotateX(2deg);
    transition: transform 0.3s ease;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ipad-screen:hover {
    transform: rotateY(-4deg) rotateX(1deg) scale(1.02);
}

.ipad-screen > .app-header,
.ipad-screen > .app-content-simulator {
    width: 100%;
    box-sizing: border-box;
}

.ipad-screen > .app-content-simulator {
    flex: 1;
    overflow-y: auto;
    background: #fff;
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
}

/* Camera indicator */
.ipad-camera {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 38px;
    height: 8px;
    background: #222;
    border-radius: 4px;
    opacity: 0.25;
    z-index: 10;
}

/* Adjust app content for wider screen */
.app-header, .app-content-simulator {
    max-width: 100%;
}

.tab-bar {
    display: flex;
    background: #f5f5f5;
    border-bottom: 1px solid #e0e0e0;
    justify-content: center;
}

.tab {
    flex: 0 0 160px;
    max-width: 200px;
    min-width: 100px;
    padding: 16px 0;
    font-size: 1rem;
}

.tab-content {
    padding: 32px 48px;
    height: 350px;
    overflow-y: auto;
}

.puzzle-grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-start;
}

.puzzle-item {
    min-width: 200px;
    max-width: 220px;
    flex: 1 1 200px;
}

/* Responsive for iPad mockup */
@media (max-width: 900px) {
    .ipad-screen {
        width: 95vw;
        height: 71vw;
        max-width: 98vw;
        max-height: 74vw;
    }
    .tab-content {
        padding: 16px 8px;
        height: 220px;
    }
}

@media (max-width: 600px) {
    .ipad-screen {
        width: 98vw;
        height: 74vw;
        min-width: 0;
        min-height: 0;
        padding: 4px;
    }
    .tab {
        min-width: 60px;
        font-size: 0.9rem;
        padding: 10px 0;
    }
    .tab-content {
        padding: 8px 2px;
        height: 120px;
    }
    .puzzle-item {
        min-width: 120px;
        max-width: 140px;
    }
}

/* iPad screenshot fills the iPad screen */
.ipad-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
    display: block;
    box-shadow: none;
    background: #111;
}

/* Fade-in and pop animation for iPad mockup */
.fade-pop-in {
    opacity: 0;
    transform: scale(0.92) translateY(40px);
    animation: fadePopIn 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}
@keyframes fadePopIn {
    0% {
        opacity: 0;
        transform: scale(0.92) translateY(40px);
    }
    60% {
        opacity: 1;
        transform: scale(1.04) translateY(-8px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Reflection effect over iPad screen */
.ipad-reflection {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    border-radius: 28px;
    background: linear-gradient(120deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.08) 40%, rgba(255,255,255,0) 70%);
    z-index: 20;
    mix-blend-mode: lighten;
}

/* App Store badge styling */
.appstore-badge-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}
.appstore-badge {
    height: 56px;
    width: auto;
    transition: transform 0.2s;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.appstore-badge:hover {
    transform: scale(1.06) translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
}

/* Background ornaments for simulator section */
.simulator-bg-ornament {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
    opacity: 0.18;
    filter: blur(0.5px);
}
.ornament1 {
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, #b99d8b 0%, #faf9f6 80%);
    left: -120px;
    top: 80px;
}
.ornament2 {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, #e3d9d1 0%, #faf9f6 90%);
    right: -80px;
    bottom: 60px;
}

/* Taupe gradient background for hero */
.taupe-gradient-bg {
    background: linear-gradient(120deg, #f8f7f4 0%, #e3d9d1 100%);
    position: relative;
    overflow: hidden;
}

.hero-flex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2.5rem;
    min-height: 460px;
    padding-top: 36px;
    padding-bottom: 20px; /* slightly less bottom space */
}

.hero-content {
    max-width: 520px;
    z-index: 2;
    margin: 84px auto 0 auto; /* moved a bit further down */
    text-align: center;
}

.hero-title.big {
    font-size: 3rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 0.8rem;
    line-height: 1.15;
    letter-spacing: 0.005em;
    font-style: normal;
    animation: fadePopIn 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-subline {
    display: block;
    font-weight: 400;
    color: #6a5a4a;
    letter-spacing: 0;
    margin-top: 0.15em;
    font-size: 0.9em;
}
.hero-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 1.2rem;
    justify-content: center;
}
.hero-badges .badge {
    background: #AEC3B0; /* darker green background */
    color: #0F5132; /* castleton green text */
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.92rem;
    font-weight: 500;
    box-shadow: 0 2px 8px #0F513222;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: #8d7a6a;
    margin-bottom: 1.6rem;
    font-weight: 400;
    line-height: 1.5;
}

.hero-mockup {
    position: relative;
    min-width: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-mockup-glow {
    box-shadow: 0 0 80px 0 #b99d8b44, 0 8px 40px 0 #b99d8b22;
    transition: box-shadow 0.4s;
}

.hero-mockup .ipad-mockup {
    margin: 0 auto;
}

.dev-icon {
    position: absolute;
    z-index: 10;
    opacity: 0.85;
    filter: drop-shadow(0 2px 8px #b99d8b22);
    transition: transform 0.2s;
}
.dev-icon-swift {
    left: -38px;
    bottom: 18px;
    width: 48px;
    height: 48px;
}
.dev-icon-xcode {
    right: -38px;
    top: 18px;
    width: 48px;
    height: 48px;
}

/* USP Block */
.usp-block {
    background: #fff;
    padding: 60px 0 56px 0; /* even more space between cards and footer line */
    margin-top: -30px;
    z-index: 2;
    position: relative;
}
.showcase-photos {
    background: linear-gradient(120deg, #f8f7f4 0%, #e3d9d1 100%);
    padding: 38px 0 50px 0;
}
.photos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
    align-items: stretch;
}
.photo-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 24px #b99d8b22;
    padding: 6px; /* smaller inner padding to avoid side bars */
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 460px; /* ensure consistent height so buttons align with descriptions */
}
.photo-title {
    font-weight: 600;
    color: #0F5132;
    text-align: center;
    margin: 4px 0 10px 0;
    letter-spacing: 0.01em;
}
.photo-subtitle {
    display: inline-block;
    background: #f1ede8; /* beige */
    color: #6a5a4a; /* taupe text */
    padding: 2px 10px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}
.photo-btn {
    display: block;
    width: fit-content;
    margin: auto auto 6px auto; /* push to bottom consistently */
    padding: 8px 18px;
    font-size: 0.95rem;
}
.photo-desc {
    text-align: center;
    color: #6a5a4a;
    font-size: 0.98rem;
    line-height: 1.5;
    margin: 8px 10px 12px 10px;
}
/* Nudge the third (Studio Taupe) image downward */
/* removed special spacing for last card so all descriptions align */
.photo-img {
    width: auto;
    height: 220px; /* uniform image height so descriptions align */
    max-width: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    margin: 0 auto; /* center inside card */
    border-radius: 18px;
    background: transparent;
}
.photo-placeholder {
    height: 260px;
    border-radius: 18px;
    background: linear-gradient(120deg, #E3EED4 0%, #AEC3B0 100%);
    color: #0F5132;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: inset 0 0 0 2px rgba(15,81,50,0.15);
}
@media (max-width: 900px) {
    .photos-grid { grid-template-columns: 1fr; }
    .photo-placeholder { height: 200px; }
    .photo-img { max-height: 200px; }
}
.usp-flex {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: stretch;
}
.usp-item {
    background: #faf9f6;
    border-radius: 22px;
    box-shadow: 0 2px 16px rgba(185,157,139,0.07);
    padding: 36px 28px 32px 28px;
    text-align: center;
    flex: 1 1 220px;
    max-width: 320px;
    min-width: 180px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.usp-item:hover {
    box-shadow: 0 8px 32px rgba(185,157,139,0.13);
    transform: translateY(-6px) scale(1.03);
}
.usp-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #b99d8b;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
}
.usp-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
    color: #2c2c2c;
}
.usp-item p {
    color: #6a5a4a;
    font-size: 1.05rem;
    line-height: 1.6;
}
.usp-item a {
    color: #b99d8b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.usp-item a:hover {
    color: #ab8974;
    text-decoration: underline;
}

/* Featured App Block */
.featured-app {
    background: linear-gradient(120deg, #f8f7f4 0%, #e3d9d1 100%);
    padding: 60px 0 60px 0;
    position: relative;
    z-index: 1;
}
.featured-flex {
    display: flex;
    align-items: center;
    gap: 3rem;
    justify-content: space-between;
}
.featured-info {
    max-width: 480px;
}
.featured-info h2 {
    font-size: 2.1rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 1rem;
}
.featured-desc {
    font-size: 1.15rem;
    color: #6a5a4a;
    margin-bottom: 1.7rem;
}
.featured-preview {
    min-width: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.small-mockup {
    width: 320px;
    height: 240px;
    box-shadow: 0 0 40px 0 #b99d8b33;
}
.small-mockup .ipad-screen {
    width: 100%;
    height: 100%;
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1.1s 0.3s forwards;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 1100px) {
    .hero-flex, .featured-flex, .usp-flex {
        flex-direction: column;
        gap: 2.5rem;
        align-items: center;
    }
    .hero-mockup, .featured-preview {
        min-width: 0;
        width: 100%;
    }
    .usp-item {
        max-width: 100%;
    }
}
@media (max-width: 700px) {
    .hero-title.big {
        font-size: 2.1rem;
    }
    .hero-flex {
        min-height: 340px;
        padding-top: 40px;
        padding-bottom: 20px;
    }
    .usp-block, .featured-app {
        padding: 32px 0 24px 0;
    }
    .usp-item {
        padding: 18px 10px 18px 10px;
    }
    .small-mockup {
        width: 180px;
        height: 120px;
    }
}

/* Abstract device collage in hero */
.hero-abstract-visual {
    min-width: 420px;
    display: flex;
    flex-direction: column; /* place dots under the slider */
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}
/* Vertical divider between text and slider */
.hero-divider {
    width: 3px;
    min-height: 220px; /* even shorter */
    background: linear-gradient(180deg, #AEC3B0 0%, #0F5132 100%);
    border-radius: 2px;
    box-shadow: 0 2px 12px #0F513222;
    align-self: center; /* center vertically instead of stretching */
    opacity: 0.5;
    margin-left: -24px; /* closer into text block */
    margin-right: 72px; /* more space to photo */
    margin-top: -100px; /* raise the divider even more */
}
.device-collage {
    position: relative;
    width: 420px;
    height: 320px;
}
/* Hero slider */
.hero-slider {
    position: relative;
    width: 640px;
    height: 420px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 40px #b99d8b22, 0 2px 12px #b99d8b11;
    background: #efeeec; /* match screenshot background */
    margin-bottom: 0; /* reduce extra space below */
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}
.hero-slide.active { 
    opacity: 1; 
    transform: translateX(0);
    pointer-events: auto;
}
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* no zooming, keep full image */
    display: block;
    padding: 10px; /* small breathing room */
    background: #efeeec;
}
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.7);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6a5a4a;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 2px 8px #00000022;
}
.hero-nav:hover { background: rgba(255,255,255,0.9); }
.hero-nav.prev { left: 10px; }
.hero-nav.next { right: 10px; }
.hero-dots {
    position: static;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px; /* place dots further below the photos */
    padding: 8px 0;
}
.hero-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(185, 157, 139, 0.4);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}
.hero-dots button:hover {
    background: rgba(185, 157, 139, 0.7);
    transform: scale(1.2);
}
.hero-dots button.active { 
    background: #b99d8b;
    transform: scale(1.3);
}
.device {
    position: absolute;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 8px 40px #b99d8b22, 0 2px 12px #b99d8b11;
    opacity: 0.98;
    transition: box-shadow 0.3s, transform 0.3s;
}
.device-ipad {
    width: 180px;
    height: 130px;
    left: 40px;
    top: 60px;
    border-radius: 22px;
    box-shadow: 0 8px 40px #b99d8b33, 0 2px 12px #b99d8b11;
    background: linear-gradient(120deg, #f8f7f4 60%, #e3d9d1 100%);
}
.device-iphone {
    width: 60px;
    height: 120px;
    left: 220px;
    top: 120px;
    border-radius: 18px;
    background: linear-gradient(120deg, #e3d9d1 0%, #faf9f6 100%);
}
.device-mac {
    width: 120px;
    height: 80px;
    left: 160px;
    top: 10px;
    border-radius: 16px 16px 18px 18px;
    background: linear-gradient(120deg, #faf9f6 0%, #e3d9d1 100%);
}
.device-vision {
    width: 70px;
    height: 38px;
    left: 320px;
    top: 60px;
    border-radius: 20px 20px 18px 18px / 18px 18px 20px 20px;
    background: linear-gradient(120deg, #e3d9d1 0%, #b99d8b 100%);
    box-shadow: 0 4px 16px #b99d8b33;
}
.device::after {
    content: '';
    display: block;
    position: absolute;
    left: 10%;
    top: 10%;
    width: 80%;
    height: 60%;
    border-radius: 18px;
    background: linear-gradient(120deg,rgba(255,255,255,0.18) 0%,rgba(255,255,255,0.04) 100%);
    pointer-events: none;
}
.app-icon {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(120deg, #b99d8b 0%, #e3d9d1 100%);
    box-shadow: 0 2px 12px #b99d8b33;
    opacity: 0.93;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    transition: box-shadow 0.2s, transform 0.2s;
}
.appicon1 { left: 60px; top: 200px; background: linear-gradient(120deg,#b99d8b 0%,#e3d9d1 100%); }
.appicon2 { left: 320px; top: 180px; background: linear-gradient(120deg,#e3d9d1 0%,#b99d8b 100%); }
.appicon3 { left: 180px; top: 250px; background: linear-gradient(120deg,#b99d8b 0%,#faf9f6 100%); }
.appicon4 { left: 250px; top: 60px; background: linear-gradient(120deg,#faf9f6 0%,#b99d8b 100%); }

/* Featured preview devices */
.featured-preview .device {
    position: relative;
    display: inline-block;
    margin-right: 18px;
    margin-bottom: 0;
    box-shadow: 0 4px 24px #b99d8b22;
    background: linear-gradient(120deg, #faf9f6 0%, #e3d9d1 100%);
}
.featured-preview .device.large {
    width: 180px;
    height: 130px;
    border-radius: 22px;
}
.featured-preview .device.small {
    width: 60px;
    height: 120px;
    border-radius: 18px;
    margin-right: 0;
}

@media (max-width: 1100px) {
    .hero-abstract-visual, .device-collage {
        min-width: 0;
        width: 100%;
        max-width: 420px;
    }
    .hero-divider { display: none; }
}
@media (max-width: 700px) {
    .hero-abstract-visual, .device-collage {
        min-width: 0;
        width: 100%;
        max-width: 320px;
        height: 220px;
    }
    .device-collage {
        height: 220px;
    }
    .hero-slider { width: 100%; height: 220px; }
    .device-ipad { width: 110px; height: 80px; left: 20px; top: 40px; }
    .device-iphone { width: 36px; height: 70px; left: 120px; top: 80px; }
    .device-mac { width: 70px; height: 40px; left: 80px; top: 10px; }
    .device-vision { width: 38px; height: 20px; left: 180px; top: 40px; }
    .app-icon { width: 28px; height: 28px; border-radius: 8px; font-size: 1.1rem; }
    .appicon1 { left: 30px; top: 120px; }
    .appicon2 { left: 180px; top: 100px; }
    .appicon3 { left: 90px; top: 150px; }
    .appicon4 { left: 120px; top: 40px; }
}

.design-font, .hero-title.big, .section-title, .usp-item h3, .featured-info h2 {
    font-family: 'Inter', sans-serif !important;
    font-weight: 400;
    letter-spacing: 0.01em;
    font-style: normal;
}
.hero-title.big {
    font-style: normal;
}
.section-title, .usp-item h3, .featured-info h2 {
    font-size: 2.1rem;
    font-style: normal;
}

@media (max-width: 700px) {
    .section-title, .usp-item h3, .featured-info h2 {
        font-size: 1.3rem;
    }
}

/* Moderne taupe footer */
.taupe-footer {
    background: #faf9f6; /* light greyish background */
    border-top: 1px solid #efeae4; /* softer line */
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    margin-top: 0;
    box-shadow: none;
    padding: 32px 0 12px 0; /* even more room above footer */
    position: relative;
    overflow: hidden;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 16px 6px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}
.footer-logo-text {
    font-size: 1.1rem;
    color: #0F5132;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: 0;
}
.footer-tagline {
    font-size: 0.9rem;
    color: #6a5a4a;
    font-weight: 400;
    opacity: 0.9;
}
.footer-nav {
    display: flex;
    gap: 2.2rem;
    align-items: center;
}
.footer-nav a {
    color: #2c2c2c;
    font-size: 1.08rem;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    border-radius: 0;
}
.footer-nav a:hover, .footer-nav a:focus {
    color: #b99d8b;
    border-bottom: 2px solid #b99d8b;
}
.footer-social {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 8px;
    width: 30px;
    height: 30px;
    border: 1px solid #e6e0da;
    transition: background 0.2s, border-color 0.2s;
}
.footer-social a:hover {
    background: #E3EED4;
    border-color: #AEC3B0;
}
.footer-social svg {
    width: 16px !important;
    height: 16px !important;
    stroke: #0F5132;
}
.footer-bottom-text {
    text-align: center;
    color: #6a5a4a;
    font-size: 0.82rem;
    opacity: 0.8;
    padding: 6px 0 6px 0;
    letter-spacing: 0.01em;
}
@media (max-width: 900px) {
    .footer-inner {
        flex-direction: column;
        align-items: center;
        gap: 0.7rem;
        padding: 18px 5px 8px 5px;
    }
    .footer-brand {
        align-items: center;
    }
    .footer-nav {
        gap: 1.2rem;
    }
}

/* About pagina styling */
.about-hero {
    padding-top: 100px !important;
    background: linear-gradient(120deg, #f8f7f4 0%, #e3d9d1 100%);
}
.about-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.about-lead {
    font-size: 1.25rem;
    color: #6a5a4a;
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}
.about-team {
    background: #fff;
    padding: 60px 0 60px 0;
}
.about-team-flex {
    display: flex;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: flex-start;
    justify-content: center;
}
.about-person {
    flex: 1 1 340px;
    background: #faf9f6;
    border-radius: 24px;
    box-shadow: 0 2px 16px #b99d8b11;
    padding: 40px 32px 32px 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
}
.about-photo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    background: linear-gradient(120deg, #e3d9d1 0%, #b99d8b 100%);
    margin-bottom: 1.2rem;
    box-shadow: 0 4px 24px #b99d8b22;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
}
.about-photo-jasmijn {
    background-image: url('https://new.studiotaupe.com/assets/img/portfolio/bolsius.jpg');
    background-size: cover;
    background-position: center;
}
.about-photo-tom {
    background-image: url('https://randomuser.me/api/portraits/men/32.jpg');
    background-size: cover;
    background-position: center;
}
.about-divider {
    width: 4px;
    min-height: 340px;
    background: linear-gradient(180deg, #e3d9d1 0%, #b99d8b 100%);
    border-radius: 2px;
    margin: 0 2.5rem;
    opacity: 0.35;
}
.about-role {
    font-size: 1.08rem;
    color: #b99d8b;
    font-weight: 600;
    margin-bottom: 1.1rem;
    letter-spacing: 0.02em;
}
.about-text {
    color: #6a5a4a;
    font-size: 1.08rem;
    line-height: 1.7;
    margin-bottom: 0;
    text-align: left;
}
@media (max-width: 1100px) {
    .about-team-flex {
        flex-direction: column;
        gap: 2.5rem;
        align-items: center;
    }
    .about-divider {
        display: none;
    }
}
@media (max-width: 700px) {
    .about-hero {
        padding: 40px 0 16px 0;
    }
    .about-team {
        padding: 32px 0 32px 0;
    }
    .about-person {
        padding: 18px 8px 18px 8px;
    }
    .about-photo {
        width: 70px;
        height: 70px;
        font-size: 1.3rem;
    }
}

.about-dev-icon {
    font-size: 1.3em;
    font-style: normal;
    margin-left: 0.18em;
    letter-spacing: 0.08em;
    vertical-align: middle;
}

.dev-divider {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    background: none;
    position: relative;
    z-index: 1001;
    margin-top: 0;
    margin-bottom: 0;
}
.dev-divider-icon {
    font-size: 1.45rem;
    margin-left: 32px;
    margin-right: 14px;
    letter-spacing: 0.12em;
    vertical-align: middle;
    opacity: 1;
}
.dev-divider:after {
    content: '';
    display: block;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, #b99d8b 0%, #e3d9d1 100%);
    flex: 1 1 auto;
    margin-left: 8px;
    opacity: 0.95;
    box-shadow: 0 2px 8px #b99d8b22;
}
@media (max-width: 700px) {
    .dev-divider-icon {
        margin-left: 12px;
        font-size: 1.1rem;
    }
}

/* Compact contact hero */
.contact-hero.taupe-gradient-bg {
    padding-top: 100px;
    min-height: unset;
    display: block;
}

/* Contact cards verbeterde styling */
.contact-cards-flex {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
    flex-wrap: nowrap;
    padding: 32px 0 32px 0;
}
.contact-card-block {
    padding: 28px 20px 22px 20px;
    min-width: 0;
    max-width: 320px;
    border-radius: 20px;
    flex: 1 1 200px;
    margin: 0 8px;
}
.contact-card-icon {
    font-size: 1.6rem;
    margin-bottom: 0.7rem;
    color: #b99d8b;
}
.contact-card-title {
    font-size: 1.08rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 0.2rem;
    letter-spacing: 0.01em;
}
.contact-card-info {
    font-size: 1.01rem;
    color: #8d7a6a;
    margin-bottom: 0;
    word-break: normal;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
}
.contact-card-info a {
    color: #b99d8b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    white-space: nowrap;
}
.contact-card-info a:hover {
    color: #ab8974;
}
@media (max-width: 900px) {
    .contact-cards-flex {
        flex-direction: column;
        flex-wrap: wrap;
        gap: 1.1rem;
        align-items: center;
        padding: 18px 0 10px 0;
    }
    .contact-card-block {
        padding: 18px 4vw 14px 4vw;
        max-width: 99vw;
        min-width: 0;
        margin: 0;
    }
    .contact-card-info {
        font-size: 1rem;
    }
}

.blog-hero.taupe-gradient-bg {
    background: linear-gradient(120deg, #f8f7f4 0%, #e3d9d1 100%);
    padding: 44px 0 32px 0;
    text-align: center;
    min-height: unset;
    box-shadow: none;
}
.blog-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
}
.blog-hero-icon {
    margin-bottom: 0.2rem;
    opacity: 0.82;
    animation: fadeIn 1.1s 0.1s both;
}
.blog-hero-title {
    font-size: 2.1rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 0.2rem;
    letter-spacing: 0.01em;
}
.blog-lead {
    font-size: 1.08rem;
    color: #8d7a6a;
    margin-top: 0.2rem;
    margin-bottom: 0.2rem;
    font-weight: 400;
    opacity: 0.92;
    max-width: 520px;
}
.blog-hero.fade-in {
    animation: fadeIn 1.1s 0.1s both;
}
@media (max-width: 700px) {
    .blog-hero-title {
        font-size: 1.3rem;
    }
    .blog-lead {
        font-size: 0.98rem;
        max-width: 98vw;
    }
    .blog-hero-inner {
        gap: 0.3rem;
    }
}

.blog-list-section {
    background: #f7f6f3;
    padding: 64px 0 64px 0;
    margin-top: 0;
}
.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5em;
}
.blog-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px 0 #b99d8b13;
    padding: 32px 28px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    transition: box-shadow 0.2s, transform 0.2s;
    border: none;
    margin-top: 0;
}
.blog-card:hover {
    box-shadow: 0 8px 32px 0 #b99d8b22;
    transform: translateY(-4px) scale(1.02);
}
.featured-blog {
    box-shadow: 0 8px 32px 0 #b99d8b22;
}
.blog-card-inner {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.6rem;
}
.blog-card-image {
    width: 88px;
    height: 88px;
    min-width: 88px;
    min-height: 88px;
    background: #ececec;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px #b99d8b11;
    overflow: hidden;
    position: relative;
    margin-bottom: 0;
}
.blog-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ececec;
    color: #bdb6b0;
    font-size: 2.2rem;
    opacity: 0.85;
    border-radius: 50%;
}
.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}
.blog-card-content {
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 0.1rem;
}
.blog-card-meta {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    font-size: 0.99rem;
    color: #888;
    margin-bottom: 0.2rem;
}
.blog-date {
    font-weight: 500;
    color: #888;
}
.blog-tags {
    display: flex;
    gap: 0.4rem;
}
.blog-tags .tag, .blog-card .tag {
    background: #f8f7f4;
    color: #b99d8b;
    border: none;
    font-weight: 500;
    font-size: 0.98em;
    padding: 0.18em 0.9em;
    border-radius: 8px;
    margin-right: 0.3em;
    margin-bottom: 0.2em;
    display: inline-block;
    letter-spacing: 0.01em;
    box-shadow: none;
    transition: background 0.18s, color 0.18s;
}
.blog-card-title {
    font-size: 1.35rem;
    font-weight: 600;
    margin: 0 0 0.2rem 0;
    color: #232323;
    line-height: 1.2;
}
.blog-card-title a {
    color: #232323;
    text-decoration: none;
    transition: color 0.18s;
}
.blog-card-title a:hover {
    color: #b99d8b;
    text-decoration: underline;
}
.blog-card-intro {
    color: #555;
    font-size: 1.08rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}
.blog-readmore {
    color: #b99d8b;
    font-weight: 500;
    text-decoration: none;
    font-size: 1.01rem;
    margin-top: 0.2rem;
    align-self: flex-start;
    transition: color 0.18s;
    display: inline-block;
    border-bottom: 1.5px solid #ececec;
    padding-bottom: 1.5px;
}
.blog-readmore:hover {
    color: #ab8974;
    border-bottom: 1.5px solid #b99d8b;
}
@media (max-width: 700px) {
    .blog-list-section {
        padding: 32px 0 32px 0;
    }
    .blog-card {
        padding: 14px 4px 14px 4px;
        border-radius: 8px;
    }
    .blog-card-title {
        font-size: 1.05rem;
    }
    .blog-card-intro {
        font-size: 0.95rem;
    }
    .blog-card-image {
        height: 90px;
        border-radius: 8px 8px 0 0;
    }
    .blog-card-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 0.7rem;
    }
    .blog-card-image {
        margin: 0 auto 0.7rem auto;
    }
    .blog-card-content {
        padding-left: 0;
    }
}

.blog-intro-section {
    /* padding-top: 160px; */
}

.blog-intro-section.taupe-gradient-bg {
    background: linear-gradient(120deg, #f8f7f4 0%, #e3d9d1 100%);
    padding: 100px 0 32px 0;
    text-align: center;
    min-height: unset;
    box-shadow: none;
}
.blog-intro-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
}
.blog-intro-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.3rem;
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 0.7rem;
}
.blog-intro-lead {
    font-size: 1.13rem;
    color: #6a5a4a;
    margin-top: 0.2rem;
    margin-bottom: 0.2rem;
    font-weight: 400;
    opacity: 0.92;
    max-width: 600px;
}
.blog-intro-section.fade-in {
    animation: fadeIn 1.1s 0.1s both;
}
@media (max-width: 700px) {
    .blog-intro-title {
        font-size: 1.25rem;
    }
    .blog-intro-lead {
        font-size: 0.98rem;
        max-width: 98vw;
    }
    .blog-intro-inner {
        gap: 0.3rem;
    }
    .blog-intro-section.taupe-gradient-bg {
        padding: 28px 0 18px 0;
    }
}

/* Blog Post Styles */
.blog-post {
    padding: 120px 0 80px;
    background-color: #faf9f6;
}

.blog-post-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.blog-post-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.blog-post-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.blog-post-subtitle {
    font-size: 1.25rem;
    color: #666;
    font-weight: 400;
    line-height: 1.6;
}

.blog-post-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2c2c2c;
}

.blog-post-content p {
    margin-bottom: 1.5rem;
}

.blog-post-content h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #2c2c2c;
    margin: 3rem 0 1.5rem;
    line-height: 1.3;
}

.blog-post-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
    margin: 2.5rem 0 1rem;
    line-height: 1.3;
}

.blog-post-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.blog-post-content li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.blog-post-content a {
    color: #b99d8b;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.blog-post-content a:hover {
    border-bottom-color: #b99d8b;
}

.blog-post-signature {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid #e3d9d1;
    text-align: center;
}

.blog-post-signature p {
    font-style: italic;
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

.blog-post-navigation {
    max-width: 800px;
    margin: 4rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #e3d9d1;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    color: #b99d8b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.back-to-blog:hover {
    color: #ab8974;
}

@media (max-width: 700px) {
    .blog-post {
        padding: 100px 0 60px;
    }
    
    .blog-post-title {
        font-size: 2.2rem;
    }
    
    .blog-post-subtitle {
        font-size: 1.1rem;
    }
    
    .blog-post-content {
        font-size: 1rem;
    }
    
    .blog-post-content h2 {
        font-size: 1.7rem;
    }
    
    .blog-post-content h3 {
        font-size: 1.3rem;
    }
    
    .blog-post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

.about-toggle {
    background: #f1ede8;
    color: #b99d8b;
    border: none;
    border-radius: 18px;
    padding: 8px 22px;
    font-size: 1rem;
    font-family: inherit;
    font-weight: 500;
    margin-top: 1.2em;
    cursor: pointer;
    box-shadow: 0 2px 8px #b99d8b11;
    transition: background 0.18s, color 0.18s;
}
.about-toggle:hover {
    background: #e3d9d1;
    color: #8d7a6a;
}

.contact-intro-section {
    text-align: center;
    margin: 0 auto 0 auto;
    max-width: 700px;
    padding-bottom: 0.5rem;
}
.contact-intro-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.3rem;
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 0.7rem;
}
.contact-intro-lead {
    font-size: 1.18rem;
    color: #6a5a4a;
    font-weight: 400;
    margin-bottom: 0;
    opacity: 0.92;
}

.dev-badge {
    background: #23272e;
    color: #b99d8b;
    border: none;
    font-weight: 500;
    font-size: 1em;
    padding: 0.18em 0.9em;
    border-radius: 8px;
    margin-right: 0.3em;
    margin-bottom: 0.2em;
    display: inline-block;
    letter-spacing: 0.01em;
    box-shadow: none;
    transition: background 0.18s, color 0.18s;
}

@media (max-width: 600px) {
    .ipad-mockup {
        max-width: 320px;
        margin: 1.2em auto 0 auto;
    }
    .simulator-container {
        flex-direction: column;
        align-items: center;
    }
    .simulator {
        padding-top: 2em;
        padding-bottom: 1.5em;
    }
} 