/* 
   LEGO Ibiza Final Boss ($BOSS) - Meme Token Website
   Main Stylesheet
*/

/* ===== VARIABLES ===== */
:root {
    /* Color Scheme */
    --primary-color: #FF3E96; /* Neon Pink */
    --secondary-color: #4B0082; /* Deep Purple */
    --accent-color: #FFD700; /* Gold */
    --dark-bg: #0A0A0A; /* Near Black */
    --light-text: #FFFFFF;
    --highlight: #00BFFF; /* Bright Blue */
    
    /* Fonts */
    --heading-font: 'Impact', sans-serif;
    --body-font: 'Roboto', sans-serif;
    
    /* Spacing */
    --section-spacing: 100px;
}

/* ===== ABOUT LAYOUT IMAGE TUNING ===== */
.about-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  align-items: center;
}

.about-image {
  display: flex;
  justify-content: center;
}

.legend-image {
  display: block;
  width: auto;           /* don't stretch to container width */
  max-width: 420px;      /* cap width */
  height: auto;          /* preserve ratio */
  max-height: 55vh;      /* cap height */
  object-fit: contain;   /* ensure no distortion within caps */
  border-radius: 14px;
  box-shadow: 0 0 24px rgba(255, 62, 150, 0.35);
}

@media (max-width: 992px) {
  .about-layout {
    grid-template-columns: 1fr;
  }
  .legend-image {
    max-width: 360px;
    max-height: 45vh;
  }
}

@media (max-width: 480px) {
  .legend-image {
    max-width: 300px;
    max-height: 40vh;
  }
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: linear-gradient(to bottom, #0A0A0A, #1A0033);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    text-transform: uppercase;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: var(--light-text);
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: var(--section-spacing) 0;
    position: relative;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(255, 62, 150, 0.7);
}

/* LEGO Box Style */
.lego-box {
    border: 8px solid var(--accent-color);
    border-radius: 15px;
    padding: 30px;
    position: relative;
    background: rgba(10, 10, 10, 0.8);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.lego-box:before {
    content: '';
    position: absolute;
    top: -15px;
    left: 20px;
    width: 30px;
    height: 15px;
    background: var(--accent-color);
    border-radius: 5px 5px 0 0;
}

.lego-box:after {
    content: '';
    position: absolute;
    top: -15px;
    left: 60px;
    width: 30px;
    height: 15px;
    background: var(--accent-color);
    border-radius: 5px 5px 0 0;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-tertiary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin: 10px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--light-text);
    box-shadow: 0 0 15px rgba(255, 62, 150, 0.7);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(255, 62, 150, 0.9);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--light-text);
    box-shadow: 0 0 15px rgba(75, 0, 130, 0.7);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(75, 0, 130, 0.9);
}

.btn-tertiary {
    background: var(--accent-color);
    color: var(--dark-bg);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

.btn-tertiary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.9);
}

/* Quote Box */
.quote-box {
    background: var(--secondary-color);
    padding: 20px;
    border-radius: 10px;
    margin: 40px auto;
    max-width: 80%;
    text-align: center;
    box-shadow: 0 0 15px rgba(75, 0, 130, 0.7);
    transform: rotate(-1deg);
}

.quote-box p {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    color: var(--light-text);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

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

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

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo span {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    margin: 0 15px;
    font-weight: 700;
}

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

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.8), rgba(10, 10, 10, 0.9));
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/grid-bg.png');
    opacity: 0.1;
    z-index: 1;
}

.hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    padding-right: 30px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--light-text);
    text-shadow: 0 0 15px rgba(255, 62, 150, 0.7);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--light-text);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    position: relative;
    text-align: center;
}

.boss-image {
    max-height: 70vh;
    position: relative;
    z-index: 2;
    transform: rotate(3deg);
    transition: all 0.5s ease;
}

.boss-image:hover {
    transform: rotate(0deg) scale(1.05);
}

.hero-video {
    position: relative;
    z-index: 2;
}

.boss-video {
    max-height: 70vh;
    width: auto;
    border-radius: 15px;
    transform: rotate(3deg);
    transition: all 0.5s ease;
    box-shadow: 0 0 30px rgba(255, 62, 150, 0.5);
}

.boss-video:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 0 40px rgba(255, 62, 150, 0.7);
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 62, 150, 0.5) 0%, rgba(75, 0, 130, 0.3) 50%, transparent 70%);
    z-index: 1;
    filter: blur(30px);
}

/* ===== ABOUT SECTION ===== */
.about {
    position: relative;
}

.about-content {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.about-content p {
    margin-bottom: 20px;
}

.boss-features {
    margin: 30px 0;
    padding: 20px;
    background: rgba(75, 0, 130, 0.3);
    border-radius: 10px;
}

.boss-features h3 {
    margin-bottom: 15px;
    color: var(--accent-color);
}

.boss-features ul {
    list-style: none;
}

.boss-features li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.boss-features li:before {
    content: '🧱';
    position: absolute;
    left: 0;
    top: 0;
}

.highlight {
    color: var(--primary-color);
    font-weight: 700;
}

.final-line {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-color);
}

/* ===== HOW TO BUY SECTION ===== */
.how-to-buy {
    position: relative;
}

.buy-guide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.pump-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step {
    display: flex;
    align-items: center;
    padding: 25px;
    background: rgba(75, 0, 130, 0.2);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
    min-height: 80px;
}

.step:hover {
    background: rgba(75, 0, 130, 0.4);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(255, 62, 150, 0.3);
}

.step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--light-text);
    border-radius: 50%;
    font-size: 1.4rem;
    font-weight: 700;
    margin-right: 25px;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(255, 62, 150, 0.5);
}

.step-content {
    flex: 1;
}

.step h3 {
    color: var(--accent-color);
    margin-bottom: 5px;
    font-size: 1.4rem;
    line-height: 1.2;
}

.step p {
    color: var(--light-text);
    line-height: 1.4;
    margin: 0;
    font-size: 1rem;
}

.pump-note {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 62, 150, 0.1));
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--accent-color);
    position: relative;
    overflow: hidden;
}

.pump-note:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.pump-note h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.pump-note ul {
    list-style: none;
    position: relative;
    z-index: 2;
}

.pump-note li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: var(--light-text);
    font-weight: 500;
}

.pump-note li:before {
    content: '⚡';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* ===== ROADMAP SECTION ===== */
.roadmap-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.roadmap-item {
    padding: 30px;
    transition: all 0.3s ease;
}

.roadmap-item:hover {
    transform: translateY(-10px);
}

.level {
    display: inline-block;
    background: var(--primary-color);
    color: var(--light-text);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.roadmap-item h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
}

/* ===== BUY SECTION ===== */
.buy-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.buy-step {
    text-align: center;
    padding: 20px;
    background: rgba(75, 0, 130, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.buy-step:hover {
    background: rgba(75, 0, 130, 0.5);
}

.step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--light-text);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 15px;
}

.contract-address {
    text-align: center;
    margin: 40px 0;
}

.address-box {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(10, 10, 10, 0.5);
    padding: 15px;
    border-radius: 10px;
    margin-top: 10px;
}

.address-box span {
    font-family: monospace;
    font-size: 1rem;
    color: var(--accent-color);
    margin-right: 10px;
}

#copyButton {
    background: none;
    border: none;
    color: var(--light-text);
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

#copyButton:hover {
    color: var(--primary-color);
}

.buy-buttons {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

/* ===== COMMUNITY SECTION ===== */
.community {
    text-align: center;
}

.community-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 50px;
    margin: 0 15px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.social-btn i {
    margin-right: 10px;
    font-size: 1.5rem;
}

.telegram {
    background: #0088cc;
    box-shadow: 0 0 15px rgba(0, 136, 204, 0.7);
}

.telegram:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0, 136, 204, 0.9);
}

.twitter {
    background: #1DA1F2;
    box-shadow: 0 0 15px rgba(29, 161, 242, 0.7);
}

.twitter:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(29, 161, 242, 0.9);
}

.meme-gallery {
    margin-top: 50px;
}

.meme-gallery h3 {
    margin-bottom: 30px;
    color: var(--primary-color);
}

.meme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.meme-item {
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.meme-item:hover {
    transform: scale(1.05);
}

/* ===== FOOTER ===== */
.footer {
    background: rgba(10, 10, 10, 0.9);
    padding: 50px 0 20px;
}

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

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

.footer-logo img {
    height: 30px;
    margin-right: 10px;
}

.footer-logo span {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    color: var(--accent-color);
}

.footer-links {
    display: flex;
}

.footer-links a {
    margin: 0 15px;
}

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

.copyright {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .boss-image {
        max-height: 50vh;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .buy-guide {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .social-links {
        flex-direction: column;
    }
    
    .social-btn {
        margin: 10px 0;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-logo {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .quote-box {
        max-width: 100%;
    }
    
    .quote-box p {
        font-size: 1.2rem;
    }
    
    .buy-steps {
        grid-template-columns: 1fr;
    }
}
