/* 
===== ShibArrr Professional CSS (بدون هيدر) =====
Pirate-themed meme coin website without header
*/

/* ===== CSS VARIABLES ===== */
:root {
    --primary-gold: #DAA520;
    --secondary-gold: #B8860B;
    --pirate-navy: #0a0e1a;
    --dark-bg: #0f172a;
    --pearl-white: #f8fafc;
    --ocean-blue: #1e40af;
    --treasure-amber: #f59e0b;
    
    /* Gradients */
    --gold-gradient: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
    --ocean-gradient: linear-gradient(135deg, #1e40af 0%, #3730a3 100%);
    --night-gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    
    /* Shadows & Effects */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.25);
    --glow-gold: 0 0 20px rgba(218, 165, 32, 0.5);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-smooth: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== BODY & CONTENT بدون هيدر ===== */
* {
    box-sizing: border-box;
}

html, body {
    max-width: 100vw;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--pearl-white);
    background: var(--night-gradient);
}

/* Hero Section بدون مساحة للهيدر */
.hero-section {
    margin-top: 0;
    padding-top: 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.95) 0%,
        rgba(30, 64, 175, 0.1) 50%,
        rgba(15, 23, 42, 0.95) 100%
    );
}

/* جميع الأقسام */
section {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* Container عام */
.container, .container-fluid {
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== ANIMATIONS & EFFECTS ===== */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOut {
    0% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(100%);
    }
}

@keyframes twinkleStars {
    0%, 100% { 
        opacity: 0.7; 
        transform: translateY(0px); 
    }
    50% { 
        opacity: 1; 
        transform: translateY(-2px); 
    }
}

/* ===== BUTTONS & INTERACTIONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-smooth);
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.copy-btn {
    background: var(--gold-gradient);
    color: var(--pirate-navy);
    box-shadow: var(--shadow-lg);
}

.copy-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--glow-gold);
    text-decoration: none;
    color: var(--pirate-navy);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .container, .container-fluid {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .hero-section {
        padding-top: 15px;
    }
}

@media (max-width: 576px) {
    .container, .container-fluid {
        padding-left: 8px;
        padding-right: 8px;
    }
    
    .hero-section {
        padding-top: 10px;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.d-flex { display: flex; }
.d-inline-flex { display: inline-flex; }
.d-block { display: block; }
.d-inline-block { display: inline-block; }

.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

.mt-15 { margin-top: 15px; }
.mt-30 { margin-top: 30px; }
.mb-10 { margin-bottom: 10px; }
.mb-100 { margin-bottom: 100px; }

.fadeInUp { animation: fadeInUp 0.6s ease forwards; }

/* ===== PIRATE THEME ENHANCEMENTS ===== */
.gradient-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-t {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.green {
    color: var(--primary-gold);
}

/* Box shadows and effects */
.box-shadow {
    box-shadow: var(--shadow-lg);
}

.has-shadow {
    box-shadow: var(--shadow-xl);
    border-radius: 15px;
    padding: 2rem;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(218, 165, 32, 0.2);
}

/* ===== BACKGROUND PATTERNS ===== */
.dotted-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(218, 165, 32, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(30, 64, 175, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
    pointer-events: none;
    z-index: 0;
}

.about-bg {
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.95) 0%,
        rgba(30, 64, 175, 0.05) 50%,
        rgba(15, 23, 42, 0.95) 100%
    );
    position: relative;
}

.counter-bg {
    background: linear-gradient(
        45deg,
        rgba(15, 23, 42, 0.9) 0%,
        rgba(218, 165, 32, 0.1) 50%,
        rgba(15, 23, 42, 0.9) 100%
    );
}

/* ===== SECTION PADDING ===== */
.section-padding-100 {
    padding: 100px 0;
}

.section-padding-100-50 {
    padding: 100px 0 50px;
}

.section-padding-100-70 {
    padding: 100px 0 70px;
}

.section-padding-100-85 {
    padding: 100px 0 85px;
}

.section-padding-0-100 {
    padding: 0 0 100px;
}

.section-padding {
    padding: 80px 0;
}

/* للهواتف */
@media (max-width: 768px) {
    .section-padding-100 {
        padding: 60px 0;
    }
    
    .section-padding-100-50 {
        padding: 60px 0 30px;
    }
    
    .section-padding-100-70 {
        padding: 60px 0 40px;
    }
    
    .section-padding-100-85 {
        padding: 60px 0 50px;
    }
    
    .section-padding-0-100 {
        padding: 0 0 60px;
    }
    
    .section-padding {
        padding: 50px 0;
    }
}

/* ===== FINAL CLEANUP ===== */
.relative { position: relative; }
.floating-anim { animation: float 3s ease-in-out infinite; }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* إزالة أي مراجع للهيدر */
.navbar, .navbar-brand, .navbar-nav, .nav-item, .nav-link, .navbar-toggler, .pirate-header {
    display: none !important;
}

/* Hero Image Styling */
.hero-main-image {
    max-width: 560px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
    transition: all 0.4s ease;
    animation: floatingHero 4s ease-in-out infinite;
}

.hero-main-image:hover {
    transform: scale(1.08) rotate(3deg);
    filter: drop-shadow(0 15px 35px rgba(218, 165, 32, 0.4));
    animation-play-state: paused;
}

/* Hero floating animation */
@keyframes floatingHero {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(1deg);
    }
    75% {
        transform: translateY(-3px) rotate(-1deg);
    }
}

/* Mobile responsive for hero image */
@media (max-width: 768px) {
    .hero-main-image {
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .hero-main-image {
        max-width: 300px;
    }
}
