/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #4CAF50;
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (max-width: 768px) {
  .bridge-content {
    flex-direction: column;      /* stack iframe and image vertically */
    align-items: center;         /* center them horizontally */
    gap: 20px;                   /* spacing between iframe and image */
  }
  .bridge-content img {
    width: 100% !important;      /* make image fill available width */
    max-width: 300px;            /* limit max size on mobile */
    height: auto !important;     /* keep aspect ratio */
    margin: 0 auto;              /* center the image */
    transform: scaleX(-1);       /* keep the flip */
  }
}

.hidden {
    display: none !important;
}

/* Custom Colors - Exact match from original */
:root {
    --pepe-green: #4CAF50;
    --pepe-dark-green: #388E3C;
    --pepe-light-green: #81C784;
    --font-montserrat: 'Montserrat', sans-serif;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #4CAF50; /* solid green to match body */
    backdrop-filter: none; /* remove blur effect */
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: none;
    list-style: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #4ade80;
}

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

@media (min-width: 768px) {
    .hamburger {
        display: none;
    }
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 8rem 0 5rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--pepe-green);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/background.png');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.hero-left {
    flex: 1;
    text-align: center;
}

@media (min-width: 768px) {
    .hero-left {
        text-align: left;
    }
}

.hero-title-main {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 1rem;
    text-transform: lowercase;
    letter-spacing: 1px;
    font-family: var(--font-montserrat);
}

@media (min-width: 768px) {
    .hero-title-main {
        font-size: 6rem;
    }
}

.hero-subtitle {
    display: block;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.5;
    font-family: var(--font-montserrat);
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .social-links {
        justify-content: flex-start;
    }
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: var(--pepe-dark-green);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .social-link {
        width: 4rem;
        height: 4rem;
    }
}

.social-link:hover {
    background: var(--pepe-light-green);
    transform: translateY(-2px);
}

.social-link img {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
}

@media (min-width: 768px) {
    .social-link img {
        width: 3rem;
        height: 3rem;
    }
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 300px;
}

@media (min-width: 768px) {
    .hero-image {
        height: 500px;
    }
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Trading Platforms */
.trading-platforms {
    margin-top: 3rem;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

@media (min-width: 640px) {
    .platform-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
}

@media (min-width: 768px) {
    .platform-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}

.platform-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 9999px;
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: lowercase;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .platform-button {
        padding: 1rem;
        font-size: 1rem;
    }
}

.platform-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.platform-button img {
    width: 2rem;
    height: 2rem;
    margin-right: 0.75rem;
    object-fit: contain;
}

@media (min-width: 768px) {
    .platform-button img {
        width: 2.5rem;
        height: 2.5rem;
        margin-right: 1rem;
    }
}

/* Contract Address Section */
.contract-section {
    padding: 3rem 0;
    background: var(--pepe-green);
    position: relative;
}

@media (min-width: 768px) {
    .contract-section {
        padding: 4rem 0;
    }
}

.contract-content {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.contract-box {
    background: var(--pepe-dark-green);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.5rem;
    padding: 1.5rem;
    max-width: 48rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .contract-box {
        padding: 2rem;
    }
}

.contract-address-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.contract-info {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.contract-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.contract-address {
    color: white;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.875rem;
    word-break: break-all;
}

@media (min-width: 768px) {
    .contract-address {
        font-size: 1rem;
    }
}

.copy-button {
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.5rem;
    padding: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    color: white;
}

.copy-button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.copy-feedback {
    color: #4ade80;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    text-align: left;
}

.contract-warning {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Section Styles */
.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    padding: 2rem 0;
    color: white;
    text-transform: lowercase;
    letter-spacing: 1px;
    font-family: var(--font-montserrat);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
        padding: 1.5rem 0;
    }
}

.section-divider {
    height: 2px;
    background-color: white;
    width: 100%;
    margin: 0;
}

/* About Section */
.about-section {
    padding: 4rem 0;
    position: relative;
    background: var(--pepe-green);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .about-content {
        flex-direction: row;
    }
}

.about-left, .about-right {
    flex: 1;
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
}

.about-text {
    font-size: 1.125rem;
    line-height: 1.8;
    font-family: var(--font-montserrat);
    font-weight: 400;
}

@media (min-width: 768px) {
    .about-text {
        font-size: 1.25rem;
    }
}

/* How To Buy Section */
.how-to-buy-section {
    padding: 4rem 0;
    background: var(--pepe-green);
}

.buy-steps {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .buy-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

.step {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: #4ade80;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: black;
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: var(--font-montserrat);
}

.step p {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-montserrat);
}

/* Bridge Section */
.bridge-section {
    padding: 4rem 0;
    background: var(--pepe-green);
    position: relative;
}

.bridge-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/1f3f2b_45e0862f90b549b2b8858d28a44b60cc~mv2.avif');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.bridge-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.uniswap-iframe {
    width: 100%;
    height: 660px;
    border: 0;
    border-radius: 10px;
    max-width: 600px;
    min-width: 300px;
    margin: 0 auto;
    display: block;
}

/* Tokenomics Section */
.tokenomics-section {
    padding: 4rem 0;
    background: var(--pepe-green);
}

.tokenomics-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .tokenomics-content {
        flex-direction: row;
    }
}

.tokenomics-left, .tokenomics-right {
    flex: 1;
}

.tokenomics-image {
    text-align: center;
}

.tokenomics-image img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
}

.tokenomics-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tokenomics-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #4ade80;
    font-family: var(--font-montserrat);
}

.tokenomics-item p {
    font-size: 1.125rem;
    line-height: 1.6;
    font-family: var(--font-montserrat);
}

/* Roadmap Section */
.roadmap-section {
    padding: 4rem 0;
    background: var(--pepe-green);
}

.roadmap-phases {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .roadmap-phases {
        grid-template-columns: repeat(3, 1fr);
    }
}

.roadmap-phase {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 2rem;
}

.phase-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #4ade80;
    font-family: var(--font-montserrat);
}

.phase-content ul {
    list-style: none;
    font-family: var(--font-montserrat);
}

.phase-content li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.phase-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: bold;
}

/* Footer */
.footer {
    padding: 2rem 0;
    background: var(--pepe-green);
    position: relative;
}

.footer:before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/1f3f2b_45e0862f90b549b2b8858d28a44b60cc~mv2.avif');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
}

.footer-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-montserrat);
}

@media (min-width: 768px) {
    .footer p {
        font-size: 1rem;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: #4ade80;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #22c55e;
}

/* Hide scrollbar for mobile */
@media (max-width: 768px) {
    ::-webkit-scrollbar {
        display: none;
    }
    
    * {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}

/* Smooth scrolling behavior */
html {
    scroll-behavior: smooth;
} 