/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Comic Neue', cursive;
}

:root {
    --primary-color: #FFDE59; /* Sally yellow */
    --secondary-color: #FF9800; /* Orange for beak */
    --accent-color: #4CAF50; /* Green accent */
    --dark-color: #333333;
    --light-color: #FFFFFF;
    --background-color: #F8F9FA;
    --section-padding: 80px 0;
}

body {
    background-color: #F5E28E;
    color: var(--dark-color);
    line-height: 1.6;
}

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

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

.section-divider {
    height: 60px;
    overflow: hidden;
    position: relative;
}

.section-divider svg {
    position: absolute;
    width: 100%;
    height: 100%;
    fill: #FF903F;
}

h1, h2, h3 {
    margin-bottom: 20px;
    font-weight: 700;
    font-family: 'Bangers', cursive;
    letter-spacing: 2px;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    position: relative;
}

h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

p {
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 10px;
}

.primary {
    background-color: var(--primary-color);
    color: var(--dark-color);
    border: 2px solid var(--primary-color);
}

.primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.secondary:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

/* Navbar Styles */
.navbar {
    background-color: #FF903F;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
}

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

.nav-links {
    display: flex;
    list-style: none;
    justify-content: center;
}

.nav-links li {
    margin: 0 30px;
}

.nav-links a {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 1.2rem;
}

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

/* Hero Section */
.hero {
    background: #FF903F;
    padding: 160px 0 80px;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    text-shadow: 3px 3px 0 #fff, 5px 5px 0 rgba(0, 0, 0, 0.2);
    transform: rotate(-2deg);
    display: inline-block;
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #FFFFFF;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.contract-address {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 500px;
}

.contract-address p {
    margin-right: 10px;
    margin-bottom: 0;
    font-weight: 600;
    color: var(--dark-color);
}

.contract-address code {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 5px 10px;
    border-radius: 5px;
    font-family: monospace;
    margin-right: 10px;
}

.copy-btn {
    background-color: var(--primary-color);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background-color: var(--secondary-color);
}

.hero-image {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-right {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 250px;
    z-index: 1;
    pointer-events: none;
}

.sally-right-img {
    max-width: 100%;
    height: auto;
    animation: float-right 4s ease-in-out infinite;
}

@keyframes float-right {
    0% {
        transform: translateY(0px) rotate(5deg);
    }
    50% {
        transform: translateY(-15px) rotate(-5deg);
    }
    100% {
        transform: translateY(0px) rotate(5deg);
    }
}

.sally-img {
    max-width: 250px;
    height: auto;
    animation: float 3s ease-in-out infinite;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* About Section */
.about {
    background-color: #F5E28E;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    flex: 1;
    min-width: 300px;
}

.friend.sally-img {
    max-width: 80%;
    height: auto;
    transition: transform 0.3s ease;
}

.sally-img:hover {
    transform: scale(1.05);
}

.friends-img {
    max-width: 80%;
    height: auto;
    transition: transform 0.3s ease;
}

.friends-img:hover {
    transform: scale(1.05);
}

/* Tokenomics Section */
.tokenomics {
    background-color: #F5E28E;
    padding: 60px 0;
}

.tokenomics-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    position: relative;
}

.tokenomics-left {
    margin-right: 30px;
    max-width: 200px;
}

.sally-tokenomics-img {
    max-width: 100%;
    height: auto;
    animation: float-tokenomics 4s ease-in-out infinite;
}

@keyframes float-tokenomics {
    0% {
        transform: translateY(0px) rotate(-5deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
    100% {
        transform: translateY(0px) rotate(-5deg);
    }
}

.comic-box {
    background-color: white;
    border: 3px solid #000;
    border-radius: 10px;
    position: relative;
    padding: 30px;
    max-width: 500px;
    width: 100%;
    box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.2);
    transform: rotate(-1deg);
}

.comic-box:before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px dashed #FF903F;
    border-radius: 15px;
    z-index: -1;
}

.comic-content {
    position: relative;
}

.token-info {
    text-align: center;
}

.token-info p {
    font-family: 'Bangers', cursive;
    font-size: 1.8rem;
    margin: 20px 0;
    letter-spacing: 1px;
    color: #333;
}

.token-info span {
    color: #FF903F;
    margin-right: 10px;
}

/* Socials Section */
.socials {
    background-color: #F5E28E;
    padding: 60px 0;
}

.socials-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.social-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    width: 200px;
    text-align: center;
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.social-card:hover {
    transform: translateY(-10px);
    background-color: #FFF5D6;
}

.social-card i {
    font-size: 4rem;
    color: #FF903F;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.social-card:hover i {
    transform: scale(1.1);
}

.social-card h3 {
    margin-bottom: 10px;
    color: #333;
    font-family: 'Bangers', cursive;
    letter-spacing: 1px;
}

/* How to Buy Section */
.how-to-buy {
    background-color: #F5E28E;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step {
    background-color: var(--background-color);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--dark-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Roadmap Section */
.roadmap {
    background-color: #F5E28E;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: var(--primary-color);
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    padding: 20px 0;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
    margin-right: 60px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
    margin-left: 60px;
}

.timeline-content {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    width: calc(50% - 60px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.timeline-content:before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content:before {
    right: -70px;
}

.timeline-item:nth-child(even) .timeline-content:before {
    left: -70px;
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.timeline-content ul {
    list-style-position: inside;
}

.timeline-content li {
    margin-bottom: 8px;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 60px 0 30px;
}

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

.footer-logo h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-right {
        margin-top: 30px;
    }
    
    .hero-content {
        margin-bottom: 40px;
    }
    
    .contract-address {
        justify-content: center;
    }
    
    .timeline:before {
        left: 30px;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
        margin-right: 0 !important;
    }
    
    .timeline-item:nth-child(odd) .timeline-content:before,
    .timeline-item:nth-child(even) .timeline-content:before {
        left: -50px;
    }
}

@media screen and (max-width: 768px) {
    .nav-links {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .nav-links li {
        margin: 0 15px;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media screen and (max-width: 576px) {
    .nav-links {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .hero {
        padding: 140px 0 60px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
