/* Bobo the Bear - Clone Style */

:root {
    --color-bg: #e3d4c1; /* Carton Base */
    --color-brown: #966f33; /* Carton Brown */
    --color-brown-dark: #7a5a29; /* Darker Carton */
    --color-text: #3d2b1f; /* Text Brown */
    --color-white: #ffffff;
    --color-text-muted: rgba(61, 43, 31, 0.7);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --container-max-width: 1200px;
    --navbar-height: 100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-main);
    line-height: 1.5;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    height: var(--navbar-height);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--color-bg);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.Navbar-Shadow {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease-in-out;
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-img {
    height: 60px;
    width: auto;
}

.logotype-img {
    height: 30px;
    width: auto;
}

/* Main Content */
.main-content {
    padding-top: var(--navbar-height);
}

.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 80px 20px;
    align-items: center;
}

@media (max-width: 991px) {
    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.marquee-wrapper {
    position: relative;
    width: 100%;
}

.hero-marquee {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.hand-wrapper {
    position: absolute;
    bottom: -20px;
    right: -20px;
    z-index: 2;
}

.hero-hand {
    transition: transform 0.1s ease-out;
}

/* Content Area */
.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
}

@media (max-width: 991px) {
    .content-wrapper {
        align-items: center;
    }
}

.tagline-block {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tagline-logo {
    width: 250px;
    height: auto;
}

.tagline-text {
    width: 300px;
    height: auto;
}

.interact-button {
    background-color: var(--color-brown);
    color: var(--color-white);
    border: 2px solid transparent;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.interact-button:hover {
    background-color: var(--color-brown-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.interact-button:active {
    transform: translateY(0);
}

.social-block {
    display: flex;
    gap: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    transition: background 0.3s ease;
}

.social-link:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

/* Info Section */
.info-section {
    padding: 60px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.etherscan-link {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    word-break: break-all;
    transition: color 0.3s ease;
}

.etherscan-link:hover {
    color: var(--color-text);
}

.spacer {
    height: 100px;
}

/* Footer placeholders to match the structure */
.footer-sections {
    padding-bottom: 100px;
}

.footer-container {
    height: 150px;
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
}

/* Responsive Overrides */
@media (max-width: 767px) {
    .hero-section {
        padding: 40px 20px;
    }
    
    .tagline-logo {
        width: 180px;
    }
    
    .tagline-text {
        width: 220px;
    }
    
    .navbar {
        height: 80px;
    }
}
