/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #1A1A1A;
    background: #FAFAFA;
    min-height: 100vh;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #1A1A1A;
    text-shadow: 1px 1px 0px #FFFFFF, -1px -1px 0px #FFFFFF, 1px -1px 0px #FFFFFF, -1px 1px 0px #FFFFFF;
}

.lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: #2D2D2D;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 2px solid #1A1A1A;
    box-shadow: 0 2px 0px #1A1A1A;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    width: 45px;
    height: 45px;
    filter: drop-shadow(2px 2px 0px #1A1A1A);
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05) rotate(2deg);
}

.logo-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1A1A1A;
    letter-spacing: -0.025em;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #2D2D2D;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 8px 16px;
    border: 2px solid transparent;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: #1A1A1A;
    border: 2px solid #1A1A1A;
    background: #FFFFFF;
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #1A1A1A;
    border-radius: 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #FFFFFF;
    overflow: hidden;
    padding-top: 80px;
}

/* Background Banner */
.hero-banner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    max-width: 1200px;
    opacity: 0.2;
    z-index: 1;
}

.banner-img {
    width: 100%;
    height: auto;
    filter: grayscale(20%);
}

.hero-background {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 0 20px;
}

.hero-logo {
    margin-bottom: 2rem;
}

.floating-logo {
    width: 150px;
    height: 150px;
    filter: drop-shadow(4px 4px 0px #1A1A1A);
    animation: sketchFloat 6s ease-in-out infinite;
    border: 3px solid #1A1A1A;
    background: #FFFFFF;
    padding: 15px;
    border-radius: 0;
}

@keyframes sketchFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(1deg); }
    50% { transform: translateY(-15px) rotate(0deg); }
    75% { transform: translateY(-10px) rotate(-1deg); }
}

.hero-title {
    font-size: 4.5rem;
    color: #1A1A1A;
    margin-bottom: 1rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    text-shadow: 3px 3px 0px #FFFFFF, -3px -3px 0px #FFFFFF, 3px -3px 0px #FFFFFF, -3px 3px 0px #FFFFFF;
    text-transform: uppercase;
    border: 4px solid #1A1A1A;
    background: #FFFFFF;
    padding: 20px;
    display: inline-block;
    transform: rotate(-1deg);
}

.hero-tagline {
    font-size: 1.8rem;
    color: #2D2D2D;
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    text-transform: uppercase;
    border: 2px solid #1A1A1A;
    background: #FFFFFF;
    padding: 10px 20px;
    display: inline-block;
    transform: rotate(1deg);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #2D2D2D;
    margin-bottom: 3rem;
    font-weight: 500;
    border: 2px solid #1A1A1A;
    background: #FFFFFF;
    padding: 15px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn {
    padding: 18px 36px;
    border: 3px solid #1A1A1A;
    border-radius: 0;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 4px 4px 0px #1A1A1A;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    background: #FFFFFF;
    color: #1A1A1A;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 7px 7px 0px #1A1A1A;
}

.btn:active {
    transform: translateY(0px);
    box-shadow: 2px 2px 0px #1A1A1A;
}

.btn-primary {
    background: #1A1A1A;
    color: #FFFFFF;
    border: 3px solid #1A1A1A;
}

.btn-primary:hover {
    background: #2D2D2D;
    transform: translateY(-3px);
    box-shadow: 7px 7px 0px #1A1A1A;
}

.btn-secondary {
    background: #FFFFFF;
    color: #1A1A1A;
    border: 3px solid #1A1A1A;
}

.btn-secondary:hover {
    background: #FAFAFA;
    transform: translateY(-3px);
    box-shadow: 7px 7px 0px #1A1A1A;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    padding: 12px 24px;
    background: #FFFFFF;
    color: #1A1A1A;
    text-decoration: none;
    border: 2px solid #1A1A1A;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 3px 3px 0px #1A1A1A;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 5px 5px 0px #1A1A1A;
    background: #FAFAFA;
}

/* Social Icon Styling */
.social-icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    vertical-align: middle;
    display: inline-block;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Sections */
.about-section {
    padding: 100px 0;
    position: relative;
    background: #FFFFFF;
    border-bottom: 3px solid #1A1A1A;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1A1A1A;
    font-weight: 900;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    border: 3px solid #1A1A1A;
    background: #FFFFFF;
    padding: 20px;
    display: inline-block;
    transform: rotate(-1deg);
    margin-left: 50%;
    transform: translateX(-50%) rotate(-1deg);
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #2D2D2D;
    border: 2px solid #1A1A1A;
    background: #FFFFFF;
    padding: 20px;
    box-shadow: 4px 4px 0px #1A1A1A;
    font-weight: 500;
}

.about-text p:nth-child(odd) {
    transform: rotate(0.5deg);
}

.about-text p:nth-child(even) {
    transform: rotate(-0.5deg);
}

.feature-card {
    background: #FFFFFF;
    padding: 2rem;
    border: 3px solid #1A1A1A;
    text-align: center;
    box-shadow: 6px 6px 0px #1A1A1A;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.feature-card:hover {
    transform: translateY(-5px) rotate(1deg);
    box-shadow: 10px 10px 0px #1A1A1A;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1A1A1A;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1A1A1A;
    font-weight: 700;
    text-transform: uppercase;
}

.feature-card p {
    color: #2D2D2D;
    line-height: 1.6;
    font-weight: 500;
}

/* Footer */
.footer {
    background: #1A1A1A;
    color: #FFFFFF;
    padding: 3rem 0 2rem;
    border-top: 3px solid #1A1A1A;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

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

.footer-logo-img {
    width: 45px;
    height: 45px;
    filter: drop-shadow(2px 2px 0px #FFFFFF);
    border: 2px solid #FFFFFF;
    background: #1A1A1A;
    padding: 5px;
}

.footer-logo span {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    color: #FFFFFF;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 2px 2px 0px #1A1A1A;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    padding: 8px 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-link:hover {
    border: 2px solid #FFFFFF;
    background: #2D2D2D;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid #FFFFFF;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    color: #FFFFFF;
    font-weight: 600;
}

.disclaimer {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
}

/* Notification */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: #1A1A1A;
    color: #FFFFFF;
    padding: 1rem 2rem;
    border: 3px solid #1A1A1A;
    box-shadow: 5px 5px 0px #2D2D2D;
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.notification.show {
    transform: translateX(0);
}

.notification.hidden {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
        padding: 15px;
    }
    
    .floating-logo {
        width: 100px;
        height: 100px;
        padding: 10px;
    }
    
    .banner-img {
        padding: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 250px;
        padding: 15px 30px;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .social-btn {
        width: 200px;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .section-title {
        font-size: 2rem;
        padding: 15px;
    }
    
    .hero-tagline {
        font-size: 1.3rem;
        padding: 8px 15px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        padding: 10px;
    }
    
    .section-title {
        font-size: 1.5rem;
        padding: 10px;
    }
    
    .floating-logo {
        width: 80px;
        height: 80px;
        padding: 8px;
    }
    
    .banner-img {
        padding: 10px;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
        padding: 6px 12px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        padding: 10px;
    }
}

/* Sketch-style Animations */
@keyframes sketchDraw {
    from {
        stroke-dashoffset: 1000;
    }
    to {
        stroke-dashoffset: 0;
    }
}

.sketch-border {
    stroke-dasharray: 10;
    animation: sketchDraw 2s ease-in-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Colors */
::selection {
    background: #1A1A1A;
    color: #FFFFFF;
}

::-moz-selection {
    background: #1A1A1A;
    color: #FFFFFF;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #FFFFFF;
        border: 3px solid #1A1A1A;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        margin: 1rem 0;
        padding: 1rem 2rem;
        width: 80%;
        text-align: center;
        border: 2px solid #1A1A1A;
        background: #FFFFFF;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Focus states for accessibility */
.btn:focus,
.social-btn:focus,
.nav-link:focus {
    outline: 3px solid #1A1A1A;
    outline-offset: 2px;
}
