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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

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

/* Header Styles */
header {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Adjust main content position since nav is removed */
main {
    margin-top: 20px; /* Reduced margin since nav is removed */
}


/* Main Content Sections */
main {
    min-height: calc(100vh - 200px);
}

.section-intro,
.section-analysis,
.section-planning,
.section-strategies,
.section-sunnah-tips,
.section-tools,
.section-tips {
    padding: 3rem 0;
}


.section-intro {
    background-color: #fff;
}

.section-analysis {
    background-color: #f0f8ff;
}

.section-planning {
    background-color: #fff;
}

.section-strategies {
    background-color: #f8f9fa;
}

.section-tools {
    background-color: #fff;
}

section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-size: 2rem;
}

/* Content Styling */
.container {
    max-width: 1000px;
    margin: 0 auto;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.quote-box {
    background-color: #e8f4fd;
    border-left: 4px solid #2575fc;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

blockquote {
    font-style: italic;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

cite {
    display: block;
    text-align: right;
    color: #666;
}

.time-breakdown ul {
    list-style-type: none;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.time-breakdown li {
    padding: 0.5rem 0;
    border-bottom: 1px dashed #eee;
}

.time-breakdown li:last-child {
    border-bottom: none;
}

/* Planner Tool Styling */
.planner-tool {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.planner-tool h3 {
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.schedule-entry label {
    display: block;
    margin-top: 1rem;
    font-weight: 600;
}

.schedule-entry input {
    width: 100%;
    padding: 0.5rem;
    margin-top: 0.3rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

#add-activity {
    background-color: #2575fc;
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 1rem;
    transition: background-color 0.3s;
}

#add-activity:hover {
    background-color: #1a68e8;
}

#schedule-display {
    margin-top: 2rem;
}

#activity-list {
    list-style-type: none;
}

#activity-list li {
    background: #f8f9fa;
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 4px;
    border-left: 3px solid #2575fc;
}

/* Strategy Cards */
.strategy-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* Time Audit Section */
.time-audit-section {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    margin-top: 2rem;
}

.time-audit-section ol {
    padding-left: 1.2rem;
    margin-top: 1rem;
}

.time-audit-section li {
    margin-bottom: 0.8rem;
}

/* Time Wasters Section */
.time-wasters {
    background: #fff8e1;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    margin-top: 2rem;
}

/* Sunnah Tips Grid */
.sunnah-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.sunnah-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border-left: 4px solid #6a11cb;
}

.sunnah-card:hover {
    transform: translateY(-5px);
    background: white;
}

.sunnah-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.sunnah-card em {
    background-color: #e8f4fd;
    padding: 10px;
    border-radius: 4px;
    display: block;
    margin: 10px 0;
    font-style: italic;
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tip-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
}

.tip-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* Islamic Perspective Section */
.islamic-perspective {
    background: #fff3e0;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    margin: 2rem 0;
    border-left: 4px solid #ff9800;
}

.islamic-perspective p {
    margin-bottom: 1rem;
}

.islamic-perspective em {
    background-color: #e8f4fd;
    padding: 10px;
    border-radius: 4px;
    display: block;
    margin: 10px 0;
    font-style: italic;
}

/* Key Benefits */
.key-benefits {
    background: #e8f5e9;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    margin-top: 2rem;
}

.key-benefits ul {
    padding-left: 1.2rem;
    margin-top: 1rem;
}

.key-benefits li {
    margin-bottom: 0.5rem;
}

/* Planner Info */
.planner-info {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    margin: 2rem 0;
}

.delete-btn {
    float: right;
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    .section-intro h2,
    .section-analysis h2,
    .section-planning h2,
    .section-strategies h2,
    .section-tools h2 {
        font-size: 1.7rem;
    }
    
    .strategy-cards {
        grid-template-columns: 1fr;
    }
}