/* 
* Chicken Rage - Main Stylesheet
* chickenragestore.com
*/

:root {
    --primary-color: #ff6b35;
    --secondary-color: #f7c59f;
    --accent-color: #efefd0;
    --dark-color: #004e89;
    --light-color: #f8f9fa;
    --text-color: #333;
    --chicken-yellow: #ffcc00;
    --chicken-red: #e63946;
}

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

section {
    padding: 100px 0;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 30px;
    padding: 10px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--dark-color);
    border-color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline-light {
    border-radius: 30px;
    padding: 10px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-family: 'Bangers', cursive;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.section-divider {
    height: 4px;
    width: 70px;
    background-color: var(--primary-color);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-subheading {
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
}

/* Navbar */
.navbar {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: var(--dark-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: 'Bangers', cursive;
    font-size: 1.8rem;
    font-weight: 700;
}

.chicken-text {
    color: var(--chicken-yellow);
}

.rage-text {
    color: var(--chicken-red);
}

.navbar-nav .nav-link {
    color: var(--light-color);
    font-weight: 600;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-image: url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light-color);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-family: 'Bangers', cursive;
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content h1 span {
    color: var(--chicken-yellow);
}

.hero-content .lead {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.hero-description {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.hero-buttons {
    margin-top: 30px;
}

.hero-image {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* About Section */
.about-section {
    background-color: var(--light-color);
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.about-image img {
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content {
    padding: 30px 0;
}

.about-content h3 {
    color: var(--dark-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.feature-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.feature-list li i {
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 5px;
}

/* Features Section */
.features-section {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.feature-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 30px;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

/* Gallery Section */
.gallery-section {
    background-color: white;
}

.gallery-item {
    position: relative;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-info {
    text-align: center;
    padding: 20px;
    color: white;
}

.gallery-info h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Download Section */
.download-section {
    background-color: var(--dark-color);
    color: white;
    position: relative;
    overflow: hidden;
}

.download-section .section-header h2 {
    color: white;
}

.download-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.btn-download {
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-download:hover {
    transform: translateY(-5px);
}

.btn-download img {
    height: 60px;
}

.download-info {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.download-stat {
    text-align: center;
}

.download-stat i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.download-stat span {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #f8f9fa;
}

.testimonial-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--chicken-yellow);
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
}

.testimonial-author h4 {
    margin-bottom: 5px;
    color: var(--dark-color);
}

/* Contact Section */
.contact-section {
    background-color: white;
}

.contact-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    background-color: #f8f9fa;
    height: 100%;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 30px;
    color: white;
}

.contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.social-links h3 {
    margin-bottom: 20px;
    color: var(--dark-color);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 50px;
    height: 50px;
    background-color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

/* Footer */
.footer {
    background-color: #222;
    color: #ccc;
    padding: 80px 0 30px;
}

.footer-brand h3 {
    font-family: 'Bangers', cursive;
    font-size: 2rem;
    margin-bottom: 20px;
}

.footer-social {
    margin-top: 20px;
}

.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: white;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-heading {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 25px;
    position: relative;
}

.footer-heading:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-newsletter {
    position: relative;
    margin-top: 20px;
}

.footer-newsletter input {
    padding-right: 120px;
    border-radius: 30px;
    height: 50px;
}

.footer-newsletter button {
    position: absolute;
    right: 5px;
    top: 5px;
    height: 40px;
    border-radius: 30px;
    padding: 0 20px;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #444;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    section {
        padding: 80px 0;
    }
    
    .about-content {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content .lead {
        font-size: 1.2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .download-info {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 575px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
}

/* Animations and Special Effects */
.floating-chicken {
    position: fixed;
    width: 30px;
    height: 30px;
    background-image: url('../img/chicken-icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 9999;
    animation: floatAcross linear forwards;
}

@keyframes floatAcross {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

.egg-counter {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--chicken-yellow);
    color: var(--dark-color);
    padding: 10px 15px;
    border-radius: 30px;
    font-weight: 700;
    z-index: 9999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
}

.egg-counter i {
    color: white;
}

.collect-egg {
    position: absolute;
    width: 30px;
    height: 30px;
    background-image: url('../img/golden-egg.png');
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 9999;
    animation: collectEgg 1s ease-out forwards;
}

@keyframes collectEgg {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.achievement {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    transform: translateX(120%);
    transition: transform 0.5s ease;
    z-index: 9999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    max-width: 300px;
}

.achievement.show {
    transform: translateX(0);
}

.achievement-icon {
    width: 40px;
    height: 40px;
    background-color: var(--chicken-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.achievement-icon i {
    color: var(--dark-color);
    font-size: 1.2rem;
}

.achievement-content h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.achievement-content p {
    font-size: 0.8rem;
    margin-bottom: 0;
    opacity: 0.8;
}

.shake {
    animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
}

@keyframes shake {
    10%, 90% {
        transform: translate3d(-1px, 0, 0);
    }
    20%, 80% {
        transform: translate3d(2px, 0, 0);
    }
    30%, 50%, 70% {
        transform: translate3d(-4px, 0, 0);
    }
    40%, 60% {
        transform: translate3d(4px, 0, 0);
    }
}

/* Feather animations for various elements */
.feature-card:hover .feature-icon {
    animation: wiggle 1s ease;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(15deg); }
    50% { transform: rotate(-15deg); }
    75% { transform: rotate(5deg); }
}

/* Egg pulsing effect */
.fa-egg {
    cursor: pointer;
    transition: all 0.3s ease;
}

.fa-egg:hover {
    color: var(--chicken-yellow);
    transform: scale(1.2);
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* Page transitions */
.fade-in {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Chicken footprints that follow cursor */
.chicken-footprint {
    position: absolute;
    width: 20px;
    height: 20px;
    background-image: url('../img/footprint.png');
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.7;
    animation: fadeFootprint 2s forwards;
}

@keyframes fadeFootprint {
    0% {
        opacity: 0.7;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.5);
    }
} 

/* Cool Google Play Button */
.cool-btn {
    display: inline-block;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.cool-btn:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cool-play-button {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #000000, #333333);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    gap: 15px;
}

.cool-play-button i {
    font-size: 2.5rem;
    color: var(--chicken-yellow);
}

.cool-play-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.small-text {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.big-text {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
} 

/* Policy Pages Styles */
.policy-section {
    padding-top: 120px;
    padding-bottom: 80px;
}

.policy-content {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.policy-content h1 {
    font-family: 'Bangers', cursive;
    color: var(--dark-color);
    margin-bottom: 10px;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #777;
    margin-bottom: 40px;
}

.policy-section-item {
    margin-bottom: 40px;
}

.policy-section-item h2 {
    color: var(--dark-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.policy-section-item h3 {
    color: var(--dark-color);
    font-size: 1.4rem;
    margin: 25px 0 15px;
}

.policy-section-item p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.policy-section-item ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.policy-section-item ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.policy-section-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.policy-section-item a:hover {
    color: var(--dark-color);
    text-decoration: underline;
}

@media (max-width: 767px) {
    .policy-section {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .policy-content {
        padding: 25px;
    }
    
    .policy-section-item h2 {
        font-size: 1.5rem;
    }
    
    .policy-section-item h3 {
        font-size: 1.2rem;
    }
} 