/*
Theme Name: Amplifi
Theme URI: 
Author: Amplifi
Author URI: 
Description: A simple, clean, and mobile-ready WordPress theme
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: amplifi
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100vw;
}

/* Header Styles */
.site-header {
    background: transparent;
    padding: 1rem 2rem;
    position: absolute;
    width: 100%;
    z-index: 1000;
    top: 0;
    left: 0;
}

.site-branding {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 2rem;
}

.site-title {
    font-size: 1.8rem;
    margin: 0;
}

.site-title a {
    color: #fff;
    text-decoration: none;
}

/* Navigation Styles */
.main-navigation {
    display: flex;
    align-items: center;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    color: #fff;
}

.main-menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.main-menu li {
    position: relative;
}

.main-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.main-menu a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Hero Section Styles */
.hero-section {
    min-height: 100vh;
    width: 100vw;
    display: flex;
    background: linear-gradient(45deg, #2e7d32, #4CAF50);
    background-size: cover;
    position: relative;
    margin: 0;
    padding: 0;
}

.hero-content {
    width: 100%;
    padding: 6rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.social-links {
    position: absolute;
    top: 2rem;
    left: 2rem;
    color: #fff;
    z-index: 100;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-icon {
    color: #fff;
    font-size: 1.2rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.social-icon:hover {
    opacity: 1;
}

.hero-text {
    max-width: 800px;
    color: #fff;
    margin-left: 4rem;
}

.inspired-text {
    font-size: 8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1;
    color: #fff;
}

.digital-experience {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.number {
    font-size: 3rem;
    font-weight: 700;
}

.text {
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.simple-way {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #fff;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 1.1rem;
}

.arrow {
    margin-left: 1rem;
    transition: transform 0.3s;
}

.learn-more:hover .arrow {
    transform: translateX(10px);
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.dot.active {
    background: #fff;
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .main-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(46, 125, 50, 0.95);
        flex-direction: column;
    }

    .main-menu.active {
        display: flex;
    }

    .hero-content {
        padding: 4rem 1rem 1rem 1rem;
    }

    .hero-text {
        margin-left: 0;
        padding: 1rem;
    }

    .inspired-text {
        font-size: 4rem;
    }

    .simple-way {
        font-size: 2.5rem;
    }

    .social-links {
        position: relative;
        top: auto;
        left: auto;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .hero-description {
        font-size: 1rem;
    }
}

/* Content Styles */
.site-content {
    padding: 0;
    width: 100%;
}

.entry-content {
    margin-bottom: 2rem;
}

/* Footer Styles */
.site-footer {
    background: #333;
    color: #fff;
    padding: 1rem;
    text-align: center;
    width: 100%;
} 