/* Reset and Base Styles */
html {
    font-family: "Exo 2", sans-serif;
    font-size: 16px;
    font-weight: 200;
    width: 100%;
}

body {
    background-image: linear-gradient(to bottom right, rgba(255, 255, 255, 0.6), rgba(0, 0, 0, 0.3)), url('../images/sky.jpeg');  
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    padding-top: 3rem;
    padding-bottom: 3rem;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

img {
    width: auto;
    border-radius: 60px;
}
a {
    text-decoration: none !important;
    color: #FFF;
    font-size: 25px;
    text-transform: rgb(186, 83, 20);
}
/* Navigation */
.navbar_container {
    position: fixed;
    width: 100%;
    background-color: #623817;
    padding: 20px 20px; /* Increased horizontal padding for more space */
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    overflow-x: auto;
}

.navbar {
    display: flex;
    justify-content: flex-start;
    /* flexisational: wrap; */
    margin: 0;
    padding: 2;
}

.navbar li {
    display: inline-block;
    list-style: none;
    font-size: 25px;
}

.subheadings, .aboutme_navbar, .Connect {
    font-size: 30px;
    font-weight: 100;
    margin-right: 2rem; 
    padding-right: 0.75rem; 
    border-right: 1px solid #FFF;
}

.connect-trigger {
    display: inline-block;
}

#therapact_header {
    text-align: center;
    padding: 60px 20px;
    /* background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%); */
    color: white;
    margin-bottom: 40px;
}

#therapact_header h1 {
    font-size: 2.5rem;
    margin: 0 0 10px;
    font-weight: 700;
}

.subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.demo-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.demo-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    padding: 10px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.demo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.demo-image {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 1px solid #eee;
}

.demo-description {
    padding: 20px;
}

.demo-description h3 {
    margin: 0 0 10px;
    font-size: 1.25rem;
    color: #2575fc;
}

.demo-description p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
    margin: 8px 0 0;
}

.demo-description strong {
    color: #222;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    #therapact_header h1 { font-size: 2rem; }
    .demo-container { padding: 0 15px; }
}