/* Shared Stylesheet for clothing Website Plan 
   Design System: Japandi Minimalism / Bauhaus Typography
*/

/* Global Reset with Base Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* Off white background for a warm, clean feel */
    background-color: #F7F5F0; 
    /* Dark charcoal for text, softer than stark black */
    color: #2D2D2D; 
    /* Clean, modern sans serif stack */
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; 
    line-height: 1.6;
    padding: 40px 20px;
}

/* Container for center alignment and readability */
.container {
    max-width: 800px;
    margin: 0 auto;
}

/* Header Styling */
header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    border-bottom: 2px solid #2D2D2D;
    padding-bottom: 10px;
}

/* Section Layouts */
.plan-section {
    background-color: #FFFFFF;
    padding: 30px;
    margin-bottom: 30px;
    /* Subtle border to separate sections without heavy drop shadows */
    border: 1px solid #E5E5E5; 
}

/* Typography Hierarchy */
.plan-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.plan-section p {
    font-size: 1rem;
    margin-bottom: 15px;
}

/* Lists and Links */
.structure-list, ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.structure-list li, ul li {
    margin-bottom: 8px;
}

a {
    color: #5A5A5A;
    text-decoration: none;
    border-bottom: 1px solid #5A5A5A;
    transition: color 0.3s ease;
}

a:hover {
    color: #000000;
    border-bottom: 1px solid #000000;
}