*{
    margin: 0;
    padding: 0;
    font-family: "Atkinson Hyperlegible", sans-serif;  
}
/* Note: Use inspect to find the problem. !Important is a keyword that ensures priority. Overtype mode sucks*/
/* Primary: #6B9E9E Secondary:#354B45 Accents(Pink):#7B2D31 Accents(Hover):#279680 */
/* Lightest pink: #fff3f3 medium pink:#C64E4E Light grey: #ececec Off-white:#fbfaf8 /*
/* Main brand colours: #6B9E9E, #354B45, Accents(Pink):#ff8282*/
/* Alternative brand fonts: Verdana, Arvo*/

/* 1. Basic Navigation Layout */
nav {
    display: flex;
    padding: 2%;
    justify-content: space-between;
    align-items: center;
}
.logo-box{
    align-items: center;
    display: flex;
    gap: 0x; /* gap for cleaner look */
    
    /* match navn links box */
    background: #fff;
    border-radius: 15px;
    padding: 0px 30px 10px 0px;
}
.logo-box img {
    width: 100px;/* Adjust as needed*/
    height: auto;
}
.logo-box h1{
    font-size: 30px;
    color: #354B45;
}

/* 2. Desktop Menu (Horizontal) */
nav .fa-bars, 
nav .fa-times{
    display: none;
}
.nav-links ul li {
    list-style: none;
    display: inline-block;
    padding: 8px 10px;
    position: relative;
}
.nav-links ul li a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
}
.nav-links ul li::after{
    /*Pseudo element that inserts content or styling after the actual content of an element*/
    /*Combining :hover and ::after makes a decorative element appear only when the user hovers over the parent. */
    content: "";
    width: 0%;
    height: 2px;
    background: #279680;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;
}

/* 3. Mobile Menu (Vertical) */
@media(max-width: 700px){
    /* Hide desktop links and show the lil icon thingy */
    nav .fa-bars{
        display: block;
        cursor: pointer;
        background: #ececec;
        border: 2px solid  #ececec;
        border-radius: 15px;
        color: #2e2e2e;
        font-size: 22px; 
        padding: 5px;
    }
    /* Move the 'X' to the top of the teal menu */
    .nav-links .fa-times{
    /* Forces the X to be on top of the menu itself */
        display:flex; align-items: center; /* important for the red hover affect */
        position: absolute;
        top: 20px;
        left: 20px;
        cursor: pointer;
        z-index: 100;
        font-size: 22px;
        color: #4b4b4b;
        padding: 10px; /* big hit area for accessibility */
        transition: 0.3s;
    }
    .nav-links .fa-times:hover::after {
        content: "";
        position: inherit;
        top: 5px;
        left: 5px;
        padding: 12px;
        border: 3px solid #ff8282; /* Your red/pink color */
        border-radius: 5px; /* Optional: rounds the corners of the square */
        box-sizing: border-box;
    }
    .nav-links {
        position: absolute;
        padding-top: 50px;
        background: #ececec; /*Mobile vertical menu*/
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px; /* off-screen */
        z-index: 10; /* on top of other content */
        pointer-events: auto; /* clicks are registered */
        text-align: left;
        transition: 0.5s;
    }
    /* Stack the links vertically in the mobile menu */
    .nav-links ul {
        padding: 60px 20px;
    }
    .nav-links ul li{
        display: block;
    }
}

/*--- blank space babyy, and ill write your name---*/
.spacer-section {
    width: 100%;
    height: 110px; /* adjust this */
    /*border: 2px dashed #ccc; temp visual guide */
    background-color: transparent; /* optional colour */
}

/*--- examples ---*/
.examples{
    /*border: 5px solid #ff8282;*/
    width: 80%;
    margin: auto;
    text-align: center;
}
.examples-col{
    flex: 1 1 300px; /* Grow, Shrink, Base width */
    max-width: 400px;    
    height: 350px;        
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.examples-col img{
    width: 100%;
    height: 100%;
    object-fit: cover;/* crops to fill */
    display: block;
}
.row{
    display: flex;
    flex-wrap: wrap;/* allows images to move to the next line */
    justify-content: center;/* centre art if  last row !full */
    gap: 20px;/* consistent spacing between all items */
    padding: 20px 0;
}
.layer{
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}
.layer:hover{
    transition: 0.5s;
    background: rgba(54, 244, 212, 0.3);
}
.layer h3{
    /* currently not in use */
    width: 100%;
    font-weight: 300;
    color: #fff;
    font-size: 26px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    transition: 0.5s;
}
.layer:hover h3{
    /* currently not in use */
    bottom: 50%;
    opacity: 1;
}


@media(max-width: 700px){
    /* 1. Turn the row into a scrollable horizontal container */
    .row{
        display: flex;
        flex-direction: row;     /* horizontal alignment */
        flex-wrap: nowrap;       /* prevent images from dropping */
        overflow-x: auto;        /* horizontal scrolling */
        scroll-snap-type: x mandatory; /* scrolling snaps to elements */
        gap: 15px;               /* Space between */
        padding-bottom: 20px;    /* scrollbar */
    }
    /* 2. Size the columns for swiping */
    .examples-col {
        /* sets the width to 85% of the screen. 
           with slight preview for swipe info. */
        flex: 0 0 85%; 
        max-width: 85%; 
        scroll-snap-align: center; /* image snap to centre of screen */
    }

    /* 3. text layer for mobile*/
    .layer{
        /* may need to change on mobile */
        background: linear-gradient(transparent, rgba(0,0,0,0.7)); /* dark gradient at bottom so text pops */
    }
    .layer h3 {
        opacity: none; /* do not show title on mobile */
        bottom: 20px;
        font-size: 18px;
    }
}

/*--- skills/ info ---*/
.skills{
    margin: 80px auto;
    width: 80%;
    background: #ececec;
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 20px 0;
    gap: 10px;
}
.skills h1{
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}
.skills p{
    color: #000000;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;/* 1px of space between each letter */
    padding: 10px;
    margin-bottom: 40px;
    padding: 0;
}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #000000;
    border: 2px solid #000000;
    padding: 12px 34px;
    font-size: 16px;
    font-weight: 600;
    /*letter-spacing: 2px; Add 2px of space between each letter */
    background: #fff;
    position: relative;
    cursor: pointer;
    border-radius: 10px;
}
.hero-btn:hover{
    /*background: #36f4d4;*/
    border: 3px solid #279680;
    transition: 1s;
}
.hero-btn2{
    display: inline-block;
    text-decoration: none;
    color: #000000;
    border: 2px solid #000000;
    padding: 12px 34px;
    font-size: 16px;
    font-weight: 600;
    background: #fff;
    position: relative;
    cursor: pointer;
    border-radius: 10px;
}
.hero-btn2:hover{
    border: 3px solid #7B2D31;
    /*background: #36f4d4;*/
    transition: 1s;
}

/*--- call to action ---*/

.cta{
    margin: 100px auto;
    width: 80%;
    background: #6B9E9E;
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 20px 0;
}
.cta h1{
    color: #000000;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 40px;
    padding: 0;
}
@media(max-width: 700px){
    .cta h1{
        font-size: 24px;
    }
}

/*--- footer ---*/

.footer{
    width: 100%;
    text-align: center;
    padding: 40px 0;
    margin-top: 50px;
    border-top: 1px solid #ddd; /* Visual separation */
}
.footer-info p {
    color: #666666;
    font-size: 14px;
    margin-bottom: 10px;
}
.footer h4{
    margin-bottom: 15px;
    margin-top: 20px;
    font-weight: 600;
}
.icons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}
.icons img {
    width: 80px !important;; /* fixed size */
    height: auto !important;;    
    background: #fff; 
    border: 1px solid #7B2D31;  /*pink red border */
    border-radius: 50%; 
    padding: 0px !important;; /* the space inside the circle */
    object-fit: contain;
    transition: 0.3s;
}
.icons img:hover {
    background: rgb(39, 150, 128, 0.3); /* teal highlight on hover */
    border-color: #279680;
    transform: translateY(-5px); /* lil hop*/
}
/* About us */

.sub-header{
    height: 30vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),
    url(images/background.jpeg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #ff8282;
}
.sub-header h1{
    margin-top: 0px;
}
.about-us .row {
    display: flex;
    align-items: center; /* vertically aligns the text w middle of the image */
    justify-content: flex-start;
    gap: 70px; /* large space btw image and text*/
    flex-wrap: nowrap; /* prevents jumping to new lines on desktop */
}
.about-col {
    flex: 1; /* Allows both columns to take up equal space */
    padding: 0; 
}
.about-img-col img {
    border-radius: 15px;
    box-shadow: 10px 10px 0px rgb(39, 150, 128, 0.7); /* teal shadow accent */
    max-height: 400px; /* prevents image from being too tall */
    object-fit: cover;
}
.about-text-col h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 15px;
}
.about-text-col .bio-intro {
    font-size: 18px;
    color: #6B9E9E; /* logo teal */
    font-weight: 700;
    margin-bottom: 10px;
    padding: 0;
}
/* Fun Fact Box */
.fun-fact-box {
    background: #fff3f3; /* light pink background used throughout */
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #7B2D31;
    display: inline-flex;
    flex-direction: column;
    margin-top: 25px;
    gap: 10px;
}
.fact-item {
    align-items: center; /* aligns star and text*/
    gap: 10px;
    font-size: 14px;
    color: #333;
}
.fun-fact-box i {
    color: #7B2D31;
}
.fun-fact-box p {
    margin: 0;
    padding: 0;
    font-size: 14px;
}

/* Toolkit*/
.toolkit-skills h3{
    text-align: left; 
    width: 80%;    
    margin: 20px auto 10px auto;
}
.toolkit-grid {
    display: flex;
    justify-content: flex-start; /* Change from center to flex-start */
    gap: 10px;
    flex-wrap: wrap;
    margin: 10px auto 25px auto;
    width: 80%;       /* Match the width of your text above */
}
.toolkit-grid span {
    background: #ececec;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    border: 1px solid transparent;
    transition: 0.3s;
}
.toolkit-grid span:hover {
    background: rgb(39, 150, 128, 0.3); /* Teal highlight on hover */
    border-color: #279680;
    /* color: #36f4d4;*/
    cursor: default;
}

.hero-btn3{
    display: block;
    width: fit-content;
    text-decoration: none;
    color: #000000;
    margin: 30px auto;
    border: 2px solid #000000;
    padding: 20px 60px;
    font-size: 16px;
    font-weight: 600;
    background: #ffffff;
    position: relative;
    cursor: pointer;
    border-radius: 10px;
}
.hero-btn3:hover{
    border: 3px solid #7B2D31;
    /*background: #36f4d4;*/
    transition: 1s;
}

/* min-width for tablets/phones */
@media (min-width: 701px) {
    .about-page .nav-links{
      background: #fff;
      border-radius: 15px;
      padding: 10px;
    }
}

/* Mobile Adjustments for About Page */
@media(max-width: 700px){
    .about-us .row {
        flex-direction: column; /* stacks image on top of text */
        text-align: center;
    }
    .about-col {
        flex-basis: 100%; /* full width */
        width: 100%;
        margin-bottom: 30px;
    }
    .toolkit-grid {
        justify-content: center; /* centers on mobile */
    }
    .fun-fact-box {
        text-align: left; /* keeps the fact readable */
    }
}

/*--- contact us ---*/
.contact-us {
    width: 80%;
    margin: 50px auto;
}
.contact-us .row {
    display: flex;
    flex-wrap: flex;
    align-items: center;
    justify-content: center;
    gap: 50px; /* Adjust this to control the space between image and text */
    padding: 40px;
    border-radius: 15px; 
    background: #fff3f3; /* light pink background */
}
.contact-col{
    flex: 1 1 300px; /* Flex-grow, Flex-shrink, Basis */
    min-width: 300px;
}
.contact-col > img {
    width: 100%;
    max-width: 400px; /* limits width */
    height: auto;
    border-radius: 15px; 
    box-shadow: 10px 10px 0px rgb(39, 150, 128, 0.7);
    display: block;
    margin: 0 auto;
}
.contact-info-box {
    display: flex;
    flex-direction: column;
    gap: 30px; /* Space between Discord, Email, Insta */
}
.contact-item {
    display: flex;
    align-items: center; /* Aligns icon with text */
    gap: 20px;
}
.contact-item img {
    width: 120px;  /* Icon fixed size */
    height: auto;
    object-fit: contain;
    /* Optional: If icons are black pngs */
    /* filter: invert(64%) sepia(48%) saturate(2450%) hue-rotate(314deg) brightness(102%) contrast(101%); */
}
.contact-text h2 {
    font-size: 20px;
    margin: 0 0 5px 0;
    color: #354B45; /* contrast accessibility */
}
.contact-text p {
    margin: 0;
    color: #000000;
    font-size: 16px;
}
/*--- commissions/ price ---*/
.information {
    border: 5px solid #ff8282;
    width: 90%;          /* Width */
    margin: 40px auto;   /* vertical margin to separate from the gallery */
    padding: 30px;
    text-align: center;
    border-radius: 15px;
    background: #fff5f5; /* light pink colour */
    box-sizing: border-box; /* ensures padding doesn't break 90% width */
}

.information h1 {
    margin: 0 0 20px 0;
    color: #354B45;      /* Logo colour */
    font-size: 40px;   /* (adjust)*/
    border-bottom: 2px solid #ff8282;
    display: inline-block; /* border underline only the text */
    padding-bottom: 5px;
}

.information p {
    margin: 0;
    color: #000000;
    font-size: 18px;
    line-height: 1.8;    /* Adds space between the lines of text */
    font-weight: 500;
}
.price-examples{
    /*border: 5px solid #ff8282;*/
    width: 80%;
    margin: auto;
    text-align: center;
    border-radius: 15px; 
}
.price-examples .row{
    display: grid;
    grid-template-columns: repeat(auto-fit, 400px); 
    gap: 30px;
    padding: 20px;
    justify-content: center; /* cEntres cards */
}
.price-col{
    background: #fff5f5; /* the pink */
    width: 400px;    /* Adjust this*/
    height: 500px;   /* Adjust this*/
    border-radius: 15px;
    border: 2px solid #ff8282;
    overflow: hidden;
    margin: 0 auto;
    
    display: grid; /* stack the image and text boxes */
    grid-template-rows: 350px 150px;
}
.price-col img{
    width: 400px;
    height: 350px;
    object-fit: contain; /* art styling (no cut off)*/
    display: block;
    padding: 20px 0;   /* Top Padding */
}
.price-details {
    background: #f4f4f4;
    height: 150px;
    border-top: 2px solid #ff8282;
    display: grid;
    align-content: center;
}
.price-details h3 {
    margin: 0;
    color: #2b9eb3;
    font-size: 30px;
}
.price-details p {
    color: #000000;
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    text-align: center; /* Aligns the text*/
}
.charity-info {
    border: 5px solid #ff8282;
    width: 800px;         /* fixed width for consistency */
    margin: 40px auto;    /* centres the box */
    padding: 0;           /* leave empty */
    text-align: center;
    border-radius: 15px;
    background: #fff5f5;  /* Mamore pink */
    overflow: hidden;     /* rounds */
}
.charity-info h1 {
    margin: 0;
    padding: 25px 10px;
    color: #354B45;       /* more blue logo colour */
    font-size: 32px;
}
.charity-info h3 {
    margin: 0 0 15px 0;
    padding: 25px 10px;
    color: #000000;
    font-size: 22px;
}
.charity-details {
    background: #ffffff;  /* white background */
    padding: 30px;
    border-top: 2px solid #ff8282;
}
.charity-info p {
    margin: 0 0 15px 0;
    color: #000000;
    font-size: 18px;
    line-height: 28px;  
}
.charity-info ul {/* optional styling if use list */
    list-style-position: inside;
    padding: 0;
    margin: 0;
    color: #000000;
    font-size: 18px;
    text-align: center;
}