/* Ripls Website - Shared Styles */

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

body {
    font-family: 'Libre Baskerville', Georgia, serif;
    background: #fdfaf7;
    color: #3d3531;
    line-height: 1.8;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header Styles */
header {
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

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

.logo-text {
    font-size: 32px;
    font-weight: 400;
    color: #e07a5f;
    letter-spacing: 0.5px;
}

/* Footer Styles */
footer {
    padding: 50px 30px;
    text-align: center;
    color: #9a8d86;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

footer a {
    color: #c9a689;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #e07a5f;
}

footer p {
    color: #9a8d86;
}

/* Content Section Styles */
.content-section {
    padding: 80px 30px;
    background: white;
}

.content-wrapper {
    max-width: 850px;
    margin: 0 auto;
}

/* Typography */
h1 {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 400;
    color: #3d3531;
    margin-bottom: 15px;
    line-height: 1.3;
}

h2 {
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 400;
    color: #e07a5f;
    margin-top: 50px;
    margin-bottom: 20px;
    line-height: 1.3;
}

h3 {
    font-size: 22px;
    font-weight: 500;
    color: #3d3531;
    margin-top: 30px;
    margin-bottom: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

p {
    font-size: 18px;
    color: #6a5d56;
    margin-bottom: 20px;
    line-height: 1.7;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

li {
    font-size: 17px;
    color: #6a5d56;
    margin-bottom: 12px;
    line-height: 1.7;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

a {
    color: #e07a5f;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #d16b4e;
}

strong {
    color: #3d3531;
    font-weight: 600;
}
