* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', monospace;
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    background-color: #2c2c2c;
    color: rgb(255, 255, 255);
    padding-top: 80px;
}

section {
    padding: 60px 20px;
    max-width: 1500px;
    margin: 0 auto;
    text-align: center;
}

section h2 {
    margin-bottom: 20px;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

section p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    position: relative;
    max-width: 100%;
    margin-bottom: 20px;
}

.hero-content {
    padding: 20px;
    
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-shadow: #000000 0 0 4px;
    font-weight: bold;
}

.hero-content img{
    max-width: 60%;
    height: auto;
}

.hero-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1.2rem;
    color: #000000;
    background-color: #3bb54a;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.6s ease;
    box-shadow: 0 0 8px rgb(36, 36, 36);
}

.hero-button:hover {
    background-color: #1d1d1d;
    color: #fff;
}

a{
    color: #ffffff;
    transition: 0.3s ease;
}

a:hover{
    color: #c2c2c2;
}

footer {
    text-align: center;
    padding: 20px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer p {
    margin: 0;
    font-size: 1rem;
}

footer img{
    max-width: 15%;
    height: auto;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.about-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
}

.about-section img {
    max-width: 50%;
    height: auto;
    border-radius: 10px;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (max-width: 768px) {

    .hero-section {
        height: 100vh;
    }

    .about-section {
        flex-direction: column;
        text-align: center;
    }

    .about-section img, .about-section p {
        max-width: 100%;
    }

    .about-text {
        text-align: center;
    }

    footer img {
        max-width: 30%;
    }
}

@media (max-width: 1024px) {
    .hero-content img {
        max-width: 80%;
    }
    .hero-content{
        height: 50vh;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero-section {
        padding-top: 100px;
    }
}

#different {
    padding: 60px 20px;
    text-align: center;
}

.different-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.different-boxes {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.box {
    background-color: #df7b4a;
    padding: 20px;
    border-radius: 10px;
    flex: 1;
    min-width: 300px;
    margin: 20px;
    transition: 0.3s ease;
}

.box:hover{
    background-color: #9b5938;
    cursor: default;
}

.box.wide {
    flex: 100%;
}

.box h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.box h3::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s;
}

.box:hover h3::after {
    width: 100%;
}

.box p {
    font-size: 1rem;
    line-height: 1.6;
}

#contact-info p{
    font-size: 1.7rem;
}

.collection-section{
    max-width: 100%;
}

.collection {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.collection-item {
    flex: 1 1 calc(25% - 40px);
    max-width: 15%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s ease;
}

.collection-item img {
    width: 100%;
    height: auto;
    display: block;
}

.collection-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.contact-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1.2rem;
    color: #000000;
    background-color: #3bb54a;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.6s ease;
    box-shadow: 0 0 8px rgb(36, 36, 36);
    
}

.contact-button:hover {
    background-color: #1d1d1d;
    color: #fff;
}

#contact {
    padding: 60px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.charity-boxes {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}

.charity-box {
    background-color: #3bb54a;
    padding: 20px;
    border-radius: 10px;
    flex: 1;
    min-width: 300px;
    margin: 20px;
    transition: 0.3s ease;
    text-align: center;
}

.charity-box:hover {
    background-color: #1d1d1d;
    color: #fff;
}

.charity-box img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.charity-box h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.charity-box p {
    font-size: 1rem;
    line-height: 1.6;
}

.charity-box a{
    text-decoration: none;
    
}

@media (max-width: 768px) {
    .collection-item {
        flex: 1 1 calc(50% - 40px);
        max-width: calc(50% - 40px);
    }
}

@media (max-width: 480px) {
    .collection-item {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

.addon-section {
    padding: 60px 20px;
    max-width: 1500px;
    margin: 0 auto;
    text-align: center;
}

.addon-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.addon-section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.addon-box {
    background-color: #182630;
    padding: 40px;
    border-radius: 10px;
    margin: 40px 0;
    transition: 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.addon-box:hover {
    background-color: #14202a;
}

.addon-box h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.addon-box p {
    font-size: 1.2rem;
    line-height: 1.8;
}

.addon-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.addon-content.reverse {
    flex-direction: row-reverse;
}

.addon-content.reverse .addon-text {
    text-align: right;
}

.addon-text {
    flex: 1;
    text-align: left;
}

.addon-image {
    flex: 1;
}

.addon-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .addon-content {
        flex-direction: column;
    }
    .addon-content.reverse {
        flex-direction: column;
    }
    .addon-text {
        text-align: center;
    }
}