/* Additional styles for planning-tools page */

/* Ensure proper container alignment */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Tools Overview */
.tools-overview {
    padding: 4rem 0;
    background: #f8f9fa;
}


.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.tool-icon {
    width: 80px;
    height: 80px;
    background: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.tool-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.tool-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tool-stats {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #666;
}

.tool-stats span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.tool-stats i {
    color: #d4af37;
}

/* Featured Tool */
.featured-tool {
    padding: 4rem 0;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.featured-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.featured-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.checklist-preview {
    margin-bottom: 2rem;
}

.checklist-category {
    margin-bottom: 1.5rem;
}

.checklist-category h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checklist-category h4 i {
    color: #d4af37;
}

.checklist-category ul {
    list-style: none;
    padding-left: 1.5rem;
}

.checklist-category li {
    padding: 0.25rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

.checklist-category li i {
    color: #28a745;
    font-size: 0.9rem;
}

.featured-image {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

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

/* Budget Preview */
.budget-preview {
    padding: 4rem 0;
    background: #f8f9fa;
}

.budget-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.budget-image {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

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

.budget-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.budget-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.budget-breakdown {
    margin-bottom: 2rem;
}

.budget-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.budget-item:last-child {
    border-bottom: none;
}

.budget-category {
    color: #333;
    font-weight: 500;
}

.budget-percentage {
    color: #d4af37;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Guest Preview */
.guest-preview {
    padding: 4rem 0;
}

.guest-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.guest-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.guest-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.guest-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-item i {
    width: 40px;
    height: 40px;
    background: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: #333;
}

.feature-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.guest-image {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

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

/* Website Builder */
.website-builder {
    padding: 4rem 0;
    background: #f8f9fa;
}

.website-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.website-image {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

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

.website-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.website-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.feature-card i {
    width: 50px;
    height: 50px;
    background: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.feature-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.feature-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Getting Started */
.getting-started {
    padding: 4rem 0;
}

.getting-started h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.step-card p {
    color: #666;
    line-height: 1.6;
}

.cta-section {
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.cta-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Additional alignment fixes */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: start;
}

.tool-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tool-card .tool-stats {
    margin-bottom: 1.5rem;
}

.tool-card button {
    margin-top: auto;
}

/* Ensure proper section spacing */
section {
    margin: 0;
    padding: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-content,
    .budget-content,
    .guest-content,
    .website-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .featured-image,
    .budget-image,
    .guest-image,
    .website-image {
        height: 250px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .featured-info h2,
    .budget-info h2,
    .guest-info h2,
    .website-info h2 {
        font-size: 2rem;
    }
    
    .getting-started h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .tool-card,
    .step-card {
        padding: 1.5rem;
    }
    
    .cta-section {
        padding: 2rem;
    }
    
    .featured-info h2,
    .budget-info h2,
    .guest-info h2,
    .website-info h2 {
        font-size: 1.8rem;
    }
    
    .getting-started h2 {
        font-size: 1.8rem;
    }
}
