/**
Theme Name: Guyaup
Theme URI: https://mediumpurple-mole-470815.hostingersite.com
Author: Jobayer
Author URI: https://jobayerhossan.com
Description: Guyaup is custom based website
Version: 1.0
Requires at least: 5.3
Tested up to: 5.7.2
Requires PHP: 5.3
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: guyaup
Tags: custom-menu, custom-logo, entertainment, one-column, two-columns
 **/

:root {
    --primary-gold: #FFD700;
    --black: #000000;
    --off-white: #FAFAFA;
    --gray-light: #F5F5F5;
    --gray-medium: #888888;
    --white: #FFFFFF;
    
    --font-body: 'Inter', 'Poppins', sans-serif;
    --font-display: 'Pacifico', cursive;
    
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.12);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
    font-family: var(--font-body);
    background-color: var(--off-white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    border-bottom: 1px solid #E5E5E5;
    z-index: 1000;
    transition: var(--transition);
}
.admin-bar .header{
    top: 32px;
}
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-image {
    height: 70px;
    width: auto;
}

.nav ul{
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.nav a {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    transition: var(--transition);
    font-size: 18px;
}

.nav a:hover {
    color: var(--primary-gold);
}

.btn-primary {
    background: var(--primary-gold);
    color: var(--black);
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: var(--transition);
}

.mobile-menu-toggle:hover {
    background: var(--gray-light);
}

.mobile-menu-toggle i {
    width: 24px;
    height: 24px;
}

/* Mobile Drawer Menu */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100vh;
    background: var(--white);
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.mobile-drawer.active {
    left: 0;
}

.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer-header {
    padding: 30px 24px 20px;
    border-bottom: 1px solid #E5E5E5;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-drawer-logo {
    height: 50px;
    width: auto;
}

.mobile-drawer-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: var(--transition);
}

.mobile-drawer-close:hover {
    background: rgba(0, 0, 0, 0.05);
}

.mobile-drawer-close i {
    width: 20px;
    height: 20px;
    color: var(--black);
}

.mobile-drawer-nav {
    padding: 20px 0;
}
.mobile-drawer-nav ul{
	margin:0px;
	list-style:none; 
	padding:0px; 
}
.mobile-drawer-nav a {
    display: block;
    padding: 16px 24px;
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.mobile-drawer-nav a:hover {
    background: rgba(255, 215, 0, 0.1);
    border-left-color: var(--primary-gold);
    color: var(--black);
}
.mobile-drawer-close svg, .mobile-menu-toggle svg{
  color: #000;
}
.hero-cta svg, .download-buttons svg{
  width: 24px;
  height: 24px;
}
/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    font-size: 20px;
    color: var(--gray-medium);
    margin-bottom: 40px;
    line-height: 1.6;
}
.hero-text p {
  margin-bottom: 32px;
}
.hero-text .hero-tagline {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 24px;
    font-weight: 500;
    color: var(--primary-gold);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--black);
}

.hero-text h1::before {
    display: none;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--black);
    color: var(--white);
    padding: 12px 20px;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: var(--transition);
    min-width: 180px;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.download-btn.app-store {
    background: var(--primary-gold);
    color: var(--black);
}

.download-btn i {
    width: 24px;
    height: 24px;
}

.download-btn div {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.download-btn span {
    font-size: 12px;
    opacity: 0.8;
}

.download-btn strong {
    font-size: 14px;
    font-weight: 600;
}

/* Phone Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: relative;
    width: 280px;
    height: 560px;
}

.phone-frame {
    width: 100%;
    height: 100%;
    background: var(--black);
    border-radius: 32px;
    padding: 8px;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.phone-frame::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: #333;
    border-radius: 2px;
    z-index: 2;
}

.phone-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

/* Storytelling */
.storytelling {
    padding: 80px 0;
    background: var(--white);
}

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

.storytelling-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--gray-medium);
    margin-bottom: 32px;
}

.storytelling-highlight {
    font-size: 24px;
    font-weight: 600;
    color: var(--black);
}

/* Why Choose */
.why-choose {
    padding: 80px 0;
    background: var(--off-white);
}

.why-choose h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--black);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.feature-icon i {
    width: 28px;
    height: 28px;
    color: var(--black);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--black);
}

.feature-card p {
    color: var(--gray-medium);
    line-height: 1.6;
}

/* Detailed Features */
.detailed-features {
    padding: 80px 0;
    background: var(--white);
}

.detailed-features h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--black);
}

.feature-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.feature-block {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--gray-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.feature-block:hover {
    background: var(--white);
    box-shadow: var(--shadow-light);
}

.feature-block-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-block-icon i {
    width: 24px;
    height: 24px;
    color: var(--black);
}

.feature-block-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--black);
}

.feature-block-content p {
    color: var(--gray-medium);
}

/* All-in-One */
.all-in-one {
    padding: 80px 0;
    background: var(--off-white);
}

.all-in-one h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--black);
}

.feature-table {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    margin-bottom: 40px;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    padding: 24px 32px;
    border-bottom: 1px solid #E5E5E5;
    align-items: center;
}

.feature-row:last-child {
    border-bottom: none;
}

.feature-name {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--black);
}

.feature-name i {
    width: 20px;
    height: 20px;
    color: var(--primary-gold);
}

.feature-description {
    color: var(--gray-medium);
}

.pricing-cta {
    text-align: center;
}

.price {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--black);
}

.btn-pro {
    background: var(--primary-gold);
    color: var(--black);
    border: none;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-pro:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.final-cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--black);
}

.final-cta p {
    font-size: 18px;
    color: var(--gray-medium);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.download-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links ul {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-gold);
    color: var(--black);
}

.footer-social i {
    width: 18px;
    height: 18px;
}

.footer-contact a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--gray-medium);
}

/* Legal Pages */
.legal-page {
    padding: 120px 0 80px;
    background: var(--off-white);
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.legal-content h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 32px;
    text-align: center;
}

.legal-content .intro {
    font-size: 18px;
    color: var(--gray-medium);
    margin-bottom: 40px;
    padding: 20px;
    background: var(--gray-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-gold);
}

.legal-content section {
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 16px;
    border-bottom: 2px solid var(--primary-gold);
    padding-bottom: 8px;
}

.legal-content h3 {
    font-size: 20px;
    font-weight: 500;
    color: var(--black);
    margin: 24px 0 12px 0;
}

.legal-content p {
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--black);
}

.legal-content ul {
    margin: 16px 0 16px 24px;
}

.legal-content li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: var(--black);
}

.legal-content strong {
    color: var(--black);
    font-weight: 600;
}

.legal-content a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
}

.legal-content a:hover {
    text-decoration: underline;
}

.back-link {
    margin-top: 60px;
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #E5E5E5;
}

.back-link .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-gold);
    color: var(--black);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.back-link .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.back-link .btn-primary i {
    width: 18px;
    height: 18px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 0;
        box-shadow: var(--shadow-medium);
        border-radius: 0 0 var(--border-radius) var(--border-radius);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }
    
    .nav.active {
        display: flex;
        max-height: 300px;
        padding: 20px;
    }
    
    .nav a {
        padding: 12px 0;
        border-bottom: 1px solid #E5E5E5;
        transition: var(--transition);
    }
    
    .nav a:last-child {
        border-bottom: none;
    }
    
    .nav a:hover {
        background: var(--gray-light);
        padding-left: 12px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .hero-text p {
        font-size: 18px;
    }
    
    .hero-text .hero-tagline {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .phone-mockup {
        width: 240px;
        height: 480px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-blocks {
        grid-template-columns: 1fr;
    }
    
    .feature-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-text h1 {
        font-size: 32px;
		    margin-top: 40px;
    }
    
    .why-choose h2,
    .detailed-features h2,
    .all-in-one h2 {
        font-size: 28px;
    }
    
    .storytelling-text {
        font-size: 18px;
    }
    
    .legal-content {
        padding: 40px 32px;
        margin: 0 16px;
    }
    
    .legal-content h1 {
        font-size: 28px;
    }
    
    .legal-content h2 {
        font-size: 20px;
    }
    
    .legal-content h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .why-choose,
    .detailed-features,
    .all-in-one,
    .final-cta {
        padding: 60px 0;
    }
    
    .feature-card {
        padding: 32px 24px;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
    }
    
    .legal-content {
        padding: 32px 24px;
        margin: 0 8px;
    }
    
    .legal-content h1 {
        font-size: 24px;
    }
}