
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
img {
    max-width:100%;
}


body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    color: #333;
}

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

.header {
    text-align: center;
    margin-bottom: 40px;
}

.header h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 10px;
}

.header .green {
    color: #48bb78;
}

.main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.calendar-section {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.month-nav {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #48bb78;
    transition: transform 0.2s ease;
}

.month-nav:hover {
    transform: scale(1.2);
}

.month-title {
    font-size: 1.5rem;
    color: #48bb78;
    font-weight: bold;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.day-header {
    text-align: center;
    font-weight: bold;
    color: #718096;
    padding: 10px 5px;
    font-size: 0.9rem;
}

.day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-weight: 500;
}

.day:hover {
    background-color: #e2f8e2;
    transform: scale(1.05);
}

.day.event {
    background-color: #48bb78;
    color: white;
    box-shadow: 0 4px 15px rgba(72, 187, 120, 0.3);
}

.day.event:hover {
    background-color: #38a169;
}

.activity-list {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.activity-list h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #2d3748;
}

.activity-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
    transition: background-color 0.2s ease;
}

.activity-item:hover {
    background-color: #f7fafc;
    margin: 0 -15px;
    padding: 15px;
    border-radius: 10px;
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.activity-icon.orange { background-color: #fed7aa; }
.activity-icon.blue { background-color: #bfdbfe; }
.activity-icon.purple { background-color: #ddd6fe; }
.activity-icon.teal { background-color: #a7f3d0; }

.activity-info {
    flex: 1;
}

.activity-title {
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 5px;
}

.activity-date {
    font-size: 0.9rem;
    color: #718096;
}

.add-task-btn {
    width: 100%;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.add-task-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(49, 154, 92, 0.3);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Plant of the month */

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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    min-height: 100vh;
}

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

/* Plant Section Styles */
.plant-section {
    background: white;
    border-radius: 20px;
    padding: 60px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.plant-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(76, 175, 80, 0.05) 0%, rgba(139, 195, 74, 0.05) 100%);
    pointer-events: none;
}

.plant-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.plant-image {
    flex: 1;
}

.image-frame {
    width: 300px;
    height: 300px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    background: linear-gradient(135deg, #043A3A 0%, #043A3A 100%);
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(255, 165, 0, 0.3);
    transition: transform 0.3s ease;
}

.image-frame:hover {
    transform: scale(1.05) rotate(2deg);
}

.image-frame img {
    width: 100%;
    height: 100%;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    object-fit: cover;
}

.plant-info {
    flex: 1.2;
}

.plant-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 10px;
    color: #2c3e50;
}

.plant-label {
    color: #4CAF50;
    font-weight: 900;
}

.slow-indicator {
    display: inline-block;
    font-size: 1rem;
    background: #e8f5e8;
    padding: 5px 15px;
    border-radius: 20px;
    color: #2e7d32;
    font-weight: 600;
    margin-left: 10px;
}

.plant-name {
    font-size: 1.8rem;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.audio-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.audio-btn:hover {
    background-color: #f0f0f0;
    transform: scale(1.1);
}

.plant-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 35px;
}

.read-more-btn {
    background: linear-gradient(135deg, #2d5a2d 0%, #4a7c4a 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(45, 90, 45, 0.3);
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 90, 45, 0.4);
    background: linear-gradient(135deg, #1a3d1a 0%, #2d5a2d 100%);
}

/* CTA Section Styles */
.cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d4a2d 100%);
    border-radius: 20px;
    padding: 60px;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iMzAiIGN5PSIzMCIgcj0iMiIgZmlsbD0iIzRDQUY1MCIgb3BhY2l0eT0iMC4xIi8+Cjwvc3ZnPgo=');
    opacity: 0.3;
    pointer-events: none;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.cta-text {
    flex: 1;
    position: relative;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plant-circles {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 20px;
}

.circle {
    border-radius: 50%;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.circle:hover {
    transform: scale(1.1) rotate(10deg);
}

.circle-1 {
    width: 80px;
    height: 80px;
    margin-top: 20px;
}

.circle-2 {
    width: 120px;
    height: 120px;
}

.circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-info {
    flex: 1;
    text-align: right;
}

.cta-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #cccccc;
}

.read-more-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.read-more-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }
    
    .plant-section {
        padding: 30px 20px;
    }
    
    .plant-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .image-frame {
        width: 250px;
        height: 250px;
    }
    
    .plant-title {
        font-size: 2.2rem;
    }
    
    .plant-name {
        font-size: 1.4rem;
        justify-content: center;
    }
    
    .cta-section {
        padding: 30px 20px;
    }
    
    .cta-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .plant-circles {
        position: static;
        transform: none;
        justify-content: center;
        margin-top: 20px;
    }
    
    .cta-info {
        text-align: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.plant-section, .cta-section {
    animation: fadeInUp 0.8s ease-out;
}

.plant-section {
    animation-delay: 0.2s;
}

.cta-section {
    animation-delay: 0.4s;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f5f5f7;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 1200px;
}

.card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: 1fr 400px;
    overflow: hidden;
    min-height: 600px;
}

.content-section {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.title {
    font-size: 48px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 20px;
}

.media-controls {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.progress-bar {
    position: relative;
}

.progress-track {
    width: 100%;
    height: 4px;
    background: #e5e5e7;
    border-radius: 2px;
    position: relative;
    cursor: pointer;
}

.progress-fill {
    width: 25%;
    height: 100%;
    background: #ff3b30;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.progress-handle {
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: #ff3b30;
    border-radius: 50%;
    cursor: pointer;
    transition: left 0.3s ease;
}

.time-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 14px;
    color: #86868b;
}

.control-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.control-btn {
    width: 48px;
    height: 48px;
    border: none;
    background: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #86868b;
    transition: all 0.2s ease;
}

.control-btn:hover {
    background: #f5f5f7;
    color: #1d1d1f;
}

.play-pause {
    width: 56px;
    height: 56px;
    background: #ffb3b3;
    color: #ff3b30;
}

.play-pause:hover {
    background: #ff9999;
}

.play-pause.playing {
    background: #ff3b30;
    color: white;
}

.hidden {
    display: none;
}

.action-buttons {
    display: flex;
    gap: 16px;
}

.action-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #86868b;
    transition: all 0.2s ease;
}

.action-btn:hover {
    background: #f5f5f7;
    color: #1d1d1f;
}

.action-btn.active {
    background: #007aff;
    color: white;
}

.description-section {
    flex: 1;
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 20px;
}

.description-text {
    font-size: 16px;
    line-height: 1.6;
    color: #86868b;
}

.see-more-btn {
    background: #34c759;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 28px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    transition: all 0.2s ease;
}

.see-more-btn:hover {
    background: #28a745;
    transform: translateY(-2px);
}

.image-section {
    position: relative;
    background: linear-gradient(135deg, #ffd700, #ffb347);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.image-container {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.flower-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .card {
        grid-template-columns: 1fr;
        grid-template-rows: auto 300px;
    }
    
    .content-section {
        padding: 40px 30px;
    }
    
    .title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .image-container {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .content-section {
        padding: 30px 20px;
    }
    
    .title {
        font-size: 28px;
    }
    
    .control-buttons {
        gap: 12px;
    }
    
    .control-btn {
        width: 40px;
        height: 40px;
    }
    
    .play-pause {
        width: 48px;
        height: 48px;
    }
}

