/*
Theme Name: Pause Theme
Theme URI: https://sandybrown-shark-649935.hostingersite.com/
Author: Manus AI
Author URI: https://manus.im
Description: A custom WordPress theme based on the Pause website design.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pause-theme
*/

/* Basic Reset & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    color: #2b3d4f;
    background-color: #f5f3f0;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 60px;
    color: #2b3d4f;
    text-align: center;
}

h2 {
    font-size: 36px;
    color: #2b3d4f;
}

h3 {
    font-size: 24px;
    color: #2b3d4f;
}

h4 {
    font-size: 18px;
    color: #2b3d4f;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #669380;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

/* Buttons */
.button-primary {
    background-color: #669380;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    transition: opacity 0.3s ease;
    font-family: inherit;
}

.button-primary:hover {
    opacity: 0.9;
}

.site-header .button-primary {
    color: #2b3d4f;
    background-color: #669380;
}

/* Header */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: sticky;
    top: 0;
    background-color: #f5f3f0;
    z-index: 1000;
    border-bottom: 1px solid rgba(43, 61, 79, 0.1);
}

.site-branding .site-title {
    font-size: 24px;
    font-weight: 700;
    color: #2b3d4f;
    text-decoration: none;
}

.site-branding a {
    color: #2b3d4f;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-navigation li {
    margin: 0;
}

.main-navigation a {
    text-decoration: none;
    color: #2b3d4f;
    font-weight: 500;
    font-size: 16px;
}

.main-navigation a:hover {
    opacity: 0.7;
}

.main-navigation .button-primary {
    margin-left: 20px;
    color: #2b3d4f;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 100px 40px 120px;
    background-color: #f5f3f0;
}

.hero-section h1 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-section .hero-subtitle {
    font-size: 60px;
    font-weight: 700;
    color: #669380;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 16px;
    margin-bottom: 40px;
    color: #2b3d4f;
    line-height: 1.6;
}

.hero-section .button-primary {
    color: #ffffff;
}

/* Features Section */
.features-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #f5f3f0;
}

.feature-item {
    text-align: center;
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2b3d4f;
    margin-bottom: 15px;
    line-height: 1.3;
}

.feature-item p {
    font-size: 15px;
    color: #2b3d4f;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 40px;
    background-color: #f5f3f0;
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 36px;
    font-weight: 700;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e8f0ed;
    color: #669380;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin-right: 15px;
}

.testimonial-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #2b3d4f;
    margin-bottom: 3px;
}

.testimonial-info p {
    font-size: 14px;
    color: #999;
    margin: 0;
}

.testimonial-rating {
    margin-bottom: 15px;
}

.testimonial-rating .star {
    color: #ffc107;
    font-size: 16px;
    margin-right: 2px;
}

.testimonial-text {
    font-size: 15px;
    color: #2b3d4f;
    line-height: 1.6;
    font-style: italic;
}

/* Pricing Section */
.pricing-section {
    text-align: center;
    padding: 100px 40px;
    background-color: #f5f3f0;
}

.pricing-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #2b3d4f;
    line-height: 1.3;
}

.pricing-comparison {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    width: 350px;
    text-align: left;
    position: relative;
}

.pricing-card.best-value {
    border: 2px solid #669380;
}

.pricing-card .badge {
    background-color: #669380;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 6px;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2b3d4f;
    margin-bottom: 20px;
    line-height: 1.3;
}

.pricing-card .price {
    font-size: 16px;
    font-weight: 600;
    color: #669380;
    margin-bottom: 30px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-card ul li {
    margin-bottom: 12px;
    color: #2b3d4f;
    font-size: 15px;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
}

.pricing-card ul li:before {
    content: "✓";
    color: #669380;
    margin-right: 10px;
    font-weight: 700;
    flex-shrink: 0;
}

/* Footer */
.site-footer {
    background-color: #f5f3f0;
    color: #2b3d4f;
    padding: 60px 40px;
    border-top: 1px solid rgba(43, 61, 79, 0.1);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.footer-section {
    text-align: left;
}

.footer-branding .footer-title {
    font-size: 24px;
    font-weight: 700;
    color: #669380;
    margin-bottom: 10px;
}

.footer-branding p {
    font-size: 15px;
    color: #2b3d4f;
    line-height: 1.6;
}

.footer-contact h4,
.footer-social h4 {
    font-size: 14px;
    font-weight: 700;
    color: #2b3d4f;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.footer-contact a {
    color: #2b3d4f;
    font-size: 16px;
    display: block;
    margin-bottom: 10px;
}

.footer-contact a:hover {
    color: #669380;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #669380;
    border-radius: 8px;
    color: #669380;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #669380;
    color: #ffffff;
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(43, 61, 79, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: #2b3d4f;
    font-size: 14px;
}

.footer-legal a:hover {
    color: #669380;
}

.footer-copyright {
    font-size: 14px;
    color: #999;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-header {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .main-navigation a {
        display: block;
        padding: 10px 0;
    }

    .hero-section {
        padding: 60px 20px 80px;
    }

    .hero-section h1 {
        font-size: 40px;
    }

    .features-section,
    .testimonials-section,
    .pricing-section {
        padding: 60px 20px;
    }

    .pricing-comparison {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        width: 100%;
        max-width: 400px;
    }

    .footer-container {
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    .site-header {
        padding: 12px 15px;
    }

    .hero-section {
        padding: 40px 15px 60px;
    }

    .hero-section h1 {
        font-size: 32px;
    }

    .features-section,
    .testimonials-section,
    .pricing-section {
        padding: 40px 15px;
    }

    .button-primary {
        padding: 12px 24px;
        font-size: 14px;
    }
}
