html{
    scroll-behavior: smooth;
    background-color: rgb(0, 0, 0);
}

* {
    box-sizing: border-box;
}

body{
    margin: 0%;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    background-image: url(../Images/BackgroundGraphic.webp);
}

.Wrapper{
    background: linear-gradient(
        to left,
        rgba(0,0,0,0.7) 50%,
        rgba(0,0,0,0.3) 52%,
        rgba(0,0,0,0.1) 54%,
        rgba(0,0,0,0) 56%
        ),
        url('../Images/landscapeMe.webp');
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 55vh;
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: right;
    box-shadow: 0 18px 20px rgba(0, 0, 0, 1);
}

.HeaderInformation{
    display: flex;
    justify-content: center;
    width: 50%;
    text-align: center;
    flex-direction: column;
}

#Header{
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-left: 1%;
    margin-right: 1%;
    font-size: clamp(25px, 2vw, 30px);
    margin-top: 0%;
}

#Tagline{
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-left: 2%;
    margin-right: 2%;
    font-size: clamp(12px, 2vw, 30px);
}

#HeroInformation{
    color: white;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    margin-left: 2%;
    margin-right: 2%;
    font-size: clamp(12px, 2vw, 22px);
    text-align: left;
}

@media(max-width:1024px){
    .Wrapper{
        width: 100%;
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url(../Images/landscapeMe.webp);
        background-size: cover;
    }

    .HeaderInformation{
        width: 100%;
        margin: 5%;
    }
}

@media(max-width:768px){
    .Wrapper{
        min-height: 45vh;
    }
}

@media(max-width:425px){
    .Wrapper{
        min-height: 25vh;
        background-position: center;
    }
}



/*Accordion*/
.SocialsSection {
    display: flex;
    justify-content: center;
    padding: 80px 20px;
}

.SocialsWrapper {
    width: 80%;       
    max-width: 1100px; 
}

.SocialsHeading {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: clamp(24px, 2vw, 40px);
    margin-bottom: 12px;
    color: white;
}

.SocialsText {
    text-align: center;
    color: #ffffff;
    font-size: clamp(16px, 2vw, 24px);
    margin-bottom: 40px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

.AccordionItem {
    margin-bottom: 18px;
    border-radius: 12px;
    overflow: hidden;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
}

.AccordionHeader {
    width: 100%;
    padding: 22px 28px;
    background: transparent;
    border: none;
    color: #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.AccordionHeader:hover {
    background: #222;
}

.AccordionHeader.active {
    background: #2a2a2a;
}

.AccordionIcon {
    font-size: 20px;
    transition: 0.3s;
}

.AccordionContent {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.AccordionContentInner {
    padding: 20px 28px;
}

.AccordionLink {
    color: #ccc;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

.AccordionLink:hover {
    color: white;
}

@media (max-width: 768px) {

    .SocialsWrapper {
        width: 60%; 
        max-width: 700px;
    }

    .SocialsHeading {
        font-size: 22px;
    }

    .AccordionHeader {
        padding: 16px 20px;
        font-size: 16px;
    }

    .AccordionContentInner {
        padding: 15px 20px;
    }

    .AccordionLink {
        font-size: 14px;
    }
}

@media (max-width: 425px) {
    .SocialsWrapper {
        width: 80%;
        max-width: 700px;
    }
}



/*What I do Code*/
.WhatIDoSection {
    display: flex;
    justify-content: center;
    padding: 80px 20px;
}

.WhatIDoWrapper {
    width: 80%;
    max-width: 1100px;
}

.WhatIDoHeading {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    margin-bottom: 12px;
    color: white;
    font-weight: 600;
    font-size: clamp(24px, 2vw, 40px);
}

.WhatIDoText {
    text-align: center;
    color: #aaa;
    font-size: 16px;
    margin-bottom: 50px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: clamp(16px, 2vw, 24px);
}

.WhatIDoGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.WhatIDoCard {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 25px;
    transition: 0.3s;
}

.WhatIDoCard h3 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
    font-size: 18px;
    color: white;
}

.WhatIDoCard p {
    color: #bbb;
    line-height: 1.6;
    font-size: 14px;
}

.WhatIDoCard:hover {
    background: #202020;
    border-color: #3a3a3a;
    transform: translateY(-3px);
}

@media (max-width: 768px) {

    .WhatIDoWrapper {
        width: 60%;
        max-width: 700px;
    }

    .WhatIDoGrid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 425px) {

    .WhatIDoWrapper {
        width: 80%;
        max-width: 700px;
    }
}



/*Footer Code*/
.Footer {
    border-top: 1px solid #ffffff;
    padding: 25px 20px;
    margin-top: 60px;
    background-color: #1a1a1a;
}

.FooterWrapper {
    max-width: 1100px;
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.FooterLeft {
    color: white;
    font-size: 14px;
}

.FooterCenter {
    color: white;
    font-size: 14px;
    text-align: center;
}

.FooterRight a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.FooterRight a:hover {
    color: grey;
}

@media (max-width: 768px) {

    .FooterWrapper {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .FooterLeft,
    .FooterCenter,
    .FooterRight {
        font-size: 13px;
    }
}
