/* ===================================
   MW Dev - Main Stylesheet
   Color Scheme: Dark Charcoal #1a1a1a + Orange #ff9800
   =================================== */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

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

/* ===================================
   HEADER
   =================================== */
.main-header {
    background-color: #1a1a1a;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.logo img {
    height: 40px;
    width: auto;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.main-nav a:hover,
.main-nav a.active {
    color: #ff9800;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    color: #ffffff;
}

.hero-overlay {
    background: rgba(26, 26, 26, 0.85);
    width: 100%;
    padding: 80px 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.product-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background-color: #ff9800;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.product-icon img {
    max-width: 80px;
    max-height: 80px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-announcement {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.btn-primary {
    display: inline-block;
    background-color: #ff9800;
    color: #ffffff;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.btn-primary:hover {
    background-color: #f57c00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
}

/* ===================================
   CONTENT SECTIONS
   =================================== */
.about-home {
    background-color: #ffffff;
    padding: 60px 0;
}

.about-home h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a1a1a;
    text-align: center;
}

.about-home p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-me {
    background-color: #f5f5f5;
    padding: 60px 0;
}

.about-me h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a1a1a;
    text-align: center;
}

.about-me p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   TOOLS PAGE
   =================================== */
.page-header {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

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

.tools-section {
    background-color: #ffffff;
    padding: 60px 0;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.tool-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.tool-card-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.tool-card-image img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.tool-card-content {
    padding: 25px;
}

.tool-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.tool-tag {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.tool-tag.paid {
    background-color: #ff9800;
    color: #ffffff;
}

.tool-tag.free {
    background-color: #4CAF50;
    color: #ffffff;
}

.tool-card-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.tool-card-content a {
    display: inline-block;
    color: #ff9800;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.tool-card-content a:hover {
    color: #f57c00;
}

/* ===================================
   PRODUCT PAGE
   =================================== */
.product-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    background-image: url('../images/product-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.product-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.product-hero .tagline {
    font-size: 1.4rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.product-content {
    background-color: #ffffff;
    padding: 60px 0;
}

.product-section {
    max-width: 900px;
    margin: 0 auto 50px;
}

.product-section h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.product-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 15px 0;
    padding-left: 35px;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    border-bottom: 1px solid #eee;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff9800;
    font-weight: bold;
    font-size: 1.4rem;
}

.features-list li:last-child {
    border-bottom: none;
}

.purchase-section {
    background-color: #f5f5f5;
    padding: 60px 0;
    text-align: center;
}

.purchase-section h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.gumroad-embed {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-download {
    display: inline-block;
    background-color: #4CAF50;
    color: #ffffff;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-download:hover {
    background-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.video-section {
    background-color: #ffffff;
    padding: 60px 0;
}

.video-section h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 40px;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.gallery-section {
    background-color: #f5f5f5;
    padding: 60px 0;
}

.gallery-section h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 40px;
}

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

.gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    cursor: pointer;
}

/* ===================================
   LIGHTBOX GALLERY
   =================================== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #ffffff;
    cursor: pointer;
    background: none;
    border: none;
    transition: color 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    color: #ff9800;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: #ffffff;
    background-color: rgba(26, 26, 26, 0.7);
    border: none;
    padding: 20px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    z-index: 10000;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: #ff9800;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    font-size: 1rem;
    background-color: rgba(26, 26, 26, 0.8);
    padding: 10px 20px;
    border-radius: 20px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===================================
   ABOUT PAGE
   =================================== */
.about-content {
    background-color: #ffffff;
    padding: 60px 0;
}

.about-content .container {
    max-width: 900px;
}

.about-content h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.about-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* ===================================
   FOOTER
   =================================== */
.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-section {
    margin-bottom: 20px;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ff9800;
}

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ff9800;
}

.footer-section p {
    margin: 5px 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }
    
    .logo {
        font-size: 1.1rem;
    }
    
    .logo img {
        height: 35px;
    }
    
    .main-nav {
        flex-direction: column;
        width: 100%;
        gap: 0;
        margin-top: 15px;
    }
    
    .main-nav a {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .hero {
        min-height: 400px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-announcement {
        font-size: 2rem;
    }
    
    .product-icon {
        width: 100px;
        height: 100px;
    }
    
    .about-home,
    .about-me,
    .product-content {
        padding: 40px 0;
    }
    
    .about-home h2,
    .about-me h2 {
        font-size: 2rem;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .product-hero h1 {
        font-size: 2.5rem;
    }
    
    .product-hero .tagline {
        font-size: 1.1rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 30px;
        padding: 15px 10px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 35px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-announcement {
        font-size: 1.5rem;
    }
    
    .btn-primary {
        padding: 12px 30px;
        font-size: 1rem;
    }
}
