* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #fff;
    font-family: 'Inter', sans-serif;
}


h1, h2, h3, h4 {
    font-family: 'Inter', sans-serif;
}

h2 {
    color: #343434;
    font-size: 1.8rem;
}

h3 {
    color: #343434;
    font-size: 1.4rem;
}

.body-txt {
    color: #4e4e4e;
    font-size: 1.1rem;
    line-height: 30px;
}

.button, .button:visited {
    color: #fff;
    background-color: #d4af37;
    padding: 15px 30px;
    display: inline-block;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 50px;
    transition: 0.2s ease-in-out;
}

.button:hover {
    background-color: #000;
    transition: 0.2s ease-in-out;
}

.heading-p {
    font-size: 1.2rem;
    color: #838282;
    margin: 0 auto;
    margin-top: 5px;
    max-width: 90%;
    text-align: center;
}

.heading-p-two {
    font-size: 1.2rem;
    color: #cadde4;
    margin-top: 5px;
}

::selection {
  background: #000;
  color: white;
}

/*************************************************************************************************************

BOUNCE-IN ANIMATION

**************************************************************************************************************/

@keyframes bounceIn {
    0%   { opacity: 0; transform: translateY(40px) scale(0.95); }
    60%  { opacity: 1; transform: translateY(-8px) scale(1.02); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
  }

  .bounce-in {
    opacity: 0;
  }

  .bounce-in.visible {
    animation: bounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    animation-delay: calc(var(--animation-order, 0) * 0.1s);
    opacity: 1;
  }

@media (prefers-reduced-motion: reduce) {
  .bounce-in {
    opacity: 1;
  }
  .bounce-in.visible {
    animation: none;
  }
}

/*************************************************************************************************************

ADMIN

**************************************************************************************************************/

.admin-container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 5fr;
}

/*************************************************************************************************************

ADMIN LEFT

**************************************************************************************************************/

.admin-left {
    height: 100vh;
    background-color: #0f313f;
}

.admin-left p {
    color: #cadde4;
}

.admin-actions {
    margin-top: 50px;
}

.admin-actions ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
}

.admin-actions h2 {
    color: #fff;
    font-size: clamp(1.5rem, 2vw, 1.8rem);
    margin: 0px 0px 20px 20px;
}

.admin-actions a:link, .admin-actions a:visited {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    display: block;
    padding: 10px 20px;
    border-bottom: 2px solid #305a6b;
    transition: 0.3s ease-in-out;
}

.admin-actions a:hover {
    background-color: #1f4554;
    transition: 0.3s ease-in-out;
}

.admin-actions i {
    margin-right: 8px;
}


/*************************************************************************************************************

ADMIN MAIN

**************************************************************************************************************/

.admin-main {
    background-color: #f3f3f3;
    padding: 50px 0px;
}

.admin-main h2 {
    color: #343434;
    font-size: clamp(1.5rem, 2vw, 1.8rem);
}

.generic-container {
    width: 90%;
    margin: 0 auto;
}

.admin-messages-content {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
}

.admin-messages-content > div {
    background-color: #fff;
    border-radius: 25px;
    border: 1px solid #e2e2e2;
    border-bottom: 3px solid #e2e2e2;
    padding: 30px;
    transition: 0.3s ease-in-out;
}

.lighter {
    color: #4e4e4e;
}



/*************************************************************************************************************

HOME - HAMBURGER

**************************************************************************************************************/

.hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hamburger-btn span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: #000;
    transition: all 0.3s ease;
    transform-origin: center;
}
        
.hamburger-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; }
.hamburger-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    z-index: 999;
}
.overlay.open { opacity: 1; pointer-events: all; }
.overlay a {
    font-size: 22px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    padding: 1rem 2rem;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #eee;
}
.overlay a:first-child { border-top: 1px solid #eee; }
.overlay a:hover { color: #d4af37; }

/*************************************************************************************************************

HOME - TOP CONTAINER

**************************************************************************************************************/

.top-container {
    width: 100%;
    padding: 20px 0px;
    background-color: #0f313f;
}

.top-content {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.top-content ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.top-content i {
    color: #d4af37;
    margin-right: 8px;
}

.top-content li {
    color: #fff;
}

/*************************************************************************************************************

HOME - NAV

**************************************************************************************************************/

nav {
    width: 100%;
    background-color: #fff;
    padding: 20px 0px;
}

.nav-content {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.nav-content ul {
    list-style-type: none;
    display: none;
    flex-direction: row;
    gap: 20px;
}

.nav-content a:link, .nav-content a:visited {
    color: #000;
    font-weight: 700;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s ease-in-out;
}

.nav-content a:hover {
    color: #d4af37;
    transition: 0.3s ease-in-out;
}

/*************************************************************************************************************

HOME - HEADER

**************************************************************************************************************/

header {
    width: 100%;
    background-image: url('/static/images/hero.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #0f313f;
    padding: 100px 0px;
}

.header-content {
    width: 90%;
    margin: 0 auto;
    text-align: center;
}

.header-content h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
    font-weight: 1000;
    color: #fff;
    margin-bottom: 20px;
}

.header-large-text {
    font-size: 1.6rem;
    font-weight: 200;
    color: #fff;
}

.header-content a:link, .header-content a:visited {
    color: #fff;
    background-color: #d4af37;
    border-radius: 30px;
    text-decoration: none;
    padding: 12px 25px;
    font-weight: 700;
    display: inline-block;
    margin: 30px 0px;
}

.header-content a:hover {
    transform: translateX(20px);
    transition: 0.3s;
}

.header-details {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 25px;
}

.header-details p {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 700;
}

.icon {
    color: #d4af37;
}

.header-details i {
    margin-right: 5px;
}


/*************************************************************************************************************

HOME - MAIN

**************************************************************************************************************/


/************************************************************************************************

INDEX - INTRO SECTION

*************************************************************************************************/

.intro-container {
    width: 100%;
    background-color: #f3f3f3;
    text-align: center;
    padding: 50px 0px;
}

.intro-content {
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    padding-top: 50px;
    gap: 30px;
}

.intro-content > div {
    position: relative;
    text-align: left;
}

.intro-content img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 25px;
    transition: 0.3s ease-in-out;
}

.intro-content img:hover {
    transform: scale(1.1);
    transition: 0.3s ease-in-out;
}

.img-container {
    overflow: hidden;
    border-radius: 25px;
    position: relative;
}

.info {
    position: absolute;
    bottom: 30px;
    left: 30px;
    border-radius: 25px;
    background-color: #d4af37;
    padding: 8px 20px;
    font-size: 0.8rem;
}

.info p {
    color: #fff;
}

.small-text {
    color: #919090;
    font-size: 1rem;
    margin-bottom: 20px;
    display: block;
}

.intro-content h3 {
    margin: 30px 0px 5px 0px;
}

/************************************************************************************************

INDEX - CHILDCARE SECTION

*************************************************************************************************/

.childcare-container {
    width: 100%;
    background-color: #f3f3f3;
    text-align: center;
    padding-bottom: 50px;
    
}

.childcare-content {
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 50px;
}

.childcare-content > div {
    background-color: #fff;
    border-radius: 25px;
    border: 1px solid #e2e2e2;
    border-bottom: 3px solid #e2e2e2;
    padding: 30px;
    transition: 0.3s ease-in-out;
}



.childcare-content > div i {
    font-size: 4rem;
    color: #c4c4c4;
    margin-bottom: 15px;
}

.childcare-item {
    font-weight: 700;
    font-size: 1.1rem;
}

.childcare-text {
    font-size: 1rem;
    color: #4e4e4e;
    margin-top: 5px;
}

/************************************************************************************************

INDEX - STUDYPOINT SECTION

*************************************************************************************************/

.studypoint-container {
    width: 100%;
    background-color: #fff;
    text-align: center;
    padding: 50px 0px;
}

.studypoint-content {
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: left;
    padding-top: 50px;
    align-items: center;
}

.studypoint-content > div i {
    font-size: 1.2rem;
    color: #c4c4c4;
    margin-right: 10px;
}

.studypoint-content img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 25px;
    transition: 0.3s ease-in-out;
}

.studypoint-content img:hover {
    transform: scale(1.1);
    transition: 0.3s ease-in-out;
}

.item {
    background-color: #fff;
    border-radius: 25px;
    border: 1px solid #e2e2e2;
    border-bottom: 3px solid #e2e2e2;
    padding: 20px 30px; 
    margin-top: 20px;
}

.item i {
    color: #c4c4c4;
    display: inline;
}

.item p {
    display: inline;
}

.studypoint-content h3 {
    margin-bottom: 20px;
}



/************************************************************************************************

INDEX - SHORT BREAKS SECTION

*************************************************************************************************/

.shortbreaks-container {
    width: 100%;
    background-color: #f3f3f3;
    text-align: center;
    padding: 50px 0px;
}

.shortbreaks-content {
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: left;
    padding-top: 50px;
}

.shortbreaks-content h3 {
    margin: 30px 0px 20px 0px;
}

.shortbreaks-content img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 25px;
    transition: 0.3s ease-in-out;
}

.shortbreaks-content img:hover {
    transform: scale(1.1);
    transition: 0.3s ease-in-out;
}

.shortbreaks-generic {
    width: 90%;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 25px;
    border: 1px solid #e2e2e2;
    border-bottom: 3px solid #e2e2e2;
    padding: 30px;
    margin-top: 50px;
}

.shortbreaks-generic h3 {
    margin-bottom: 20px;
}


/************************************************************************************************

INDEX - PARENT REVIEWS SECTION

*************************************************************************************************/

.parent-container {
    width: 100%;
    background-color: #0f313f;
    text-align: center;
    padding: 50px 0px;
}

.parent-content {
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 50px;
}

.parent-content > div {
    background-color: #1f4554;
    padding: 30px;
    border-radius: 25px;
}

.parent-content > div i {
    font-size: 1.4rem;
    color: #d4af37;
}

.parent-container h2 {
    color: #fff;
}

.light-blue {
    color: #cadde4;
    font-size: 1.1rem;
    line-height: 30px;
    margin: 20px 0px;
}



/************************************************************************************************

INDEX - UNIVERSAL CREDIT SECTION

*************************************************************************************************/

.universal-container {
    width: 100%;
    background-color: #1c4455;
    padding: 50px 0px;
}

.universal-content {
    width: 90%;
    margin: 0 auto;
    text-align: center;
}

.universal-content h2 {
    color: #fff;
    margin-bottom: 5px;
}

.gold {
    color: #d4af37;
}

.universal-text-larger {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 20px;
}

.universal-text-small {
    color: #cadde4;
    font-size: 1.1rem;
}


/************************************************************************************************

INDEX - CONTACT SECTION

*************************************************************************************************/

.contact-container {
    width: 100%;
    background-color: #f3f3f3;
    text-align: center;
    padding: 50px 0px;
}

.contact-content {
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: left;
    padding-top: 50px;
}

input[type=text], input[type=email], textarea {
    width: 100%;
    padding: 15px;
    background-color: #fff;
    border-radius: 25px;
    border: 1px solid #e2e2e2;
    border-bottom: 3px solid #e2e2e2;
    margin-top: 10px;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

label {
    color: #4e4e4e;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
}

iframe {
    width: 100%;
    height: 100%;
    border-radius: 25px;
}

#form-button {
    color: #fff;
    background-color: #d4af37;
    padding: 15px 30px;
    display: inline-block;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.2s ease-in-out;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

#form-button:hover {
    background-color: #000;
    transition: 0.2s ease-in-out;
    cursor: pointer;
}

/************************************************************************************************

INDEX - PARTNERS SECTION

*************************************************************************************************/

.partners-container {
    width: 100%;
    background-color: #fff;
    text-align: center;
    padding: 50px 0px;
}

.partners-content {
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    padding-top: 50px;
    align-items: center;
}

.partners-content > div {
    background-color: #fff;
    border-radius: 25px;
    border: 1px solid #e2e2e2;
    border-bottom: 3px solid #e2e2e2;
    padding: 20px;
    transition: 0.3s ease-in-out;
}

.partners-content > div img {
    width: 80%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.parent-entry {
    display: flex;
    text-align: left;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.parent-entry img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.parent-name {
    color: #d4af37;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.customer-since {
    color: #fff;
    font-size: 1.1rem;
}

/************************************************************************************************

INDEX - FOOTER

*************************************************************************************************/

footer {
    width: 100%;
    background-color: #0f313f;
    text-align: center;
    padding: 50px 0px 0px 0px;
}

.footer-content {
    width: 90%;
    margin: 0 auto;
}

.footer-socials {
    
}

.footer-links ul {
    list-style-type: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a:link, .footer-links a:visited {
    color: #fff;
    font-size: clamp(1.1rem, 2vw, 1.2rem);
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s ease-in-out;
}

.footer-links a:hover {
    color: #d4af37;
    transition: 0.3s ease-in-out;
}

.footer-socials a:link, .footer-socials a:visited {
    color: #d4af37;
    font-size: 2rem;
}

.footer-socials a:hover {
    color: #fff;
    transition: 0.3s ease-in-out;
}

.footer-socials ul {
    list-style-type: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
}

.copyright {
    width: 100%;
    background-color: #1c4455;
    padding: 20px 0px;
    text-align: center;
    margin-top: 50px;
    color: #cadde4;
}


/************************************************************************************************

CHILDCARE / STUDYPOINT / SHORTBREAKS PAGE

*************************************************************************************************/

.generic-container {
    width: 100%;
    background-color: #fff;
    text-align: center;
    padding: 50px 0px;
}

.generic-content {
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 50px;
    text-align: left;
}

.generic-content h3 {
    margin: 30px 0px 20px 0px;
}

.generic-content img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 25px;
    transition: 0.3s ease-in-out;
}

.generic-content img:hover {
    transform: scale(1.1);
    transition: 0.3s ease-in-out;
}

.generic-generic {
    width: 90%;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 25px;
    border: 1px solid #e2e2e2;
    border-bottom: 3px solid #e2e2e2;
    padding: 30px;
    margin-top: 50px;
}

.generic-generic h3 {
    margin-bottom: 20px;
}

.faq-container {
    width: 100%;
    background-color: #f3f3f3;
    text-align: center;
    padding: 50px 0px;
}

.faq-content {
    width: 90%;
    margin: 0 auto;
    padding-top: 50px;
}

.accordion-item {
    margin-bottom: 30px;
}

.accordion-item:last-of-type {
    margin-bottom: 0px;
}

.accordion-btn {
    width: 100%;
    background-color: #fff;
    border-radius: 25px;
    border: 1px solid #e2e2e2;
    border-bottom: 3px solid #e2e2e2;
    text-align: left;
    padding: 30px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.accordion-btn i {
    transition: transform 0.3s ease;
}
.accordion-btn.active i {
    transform: rotate(180deg);
}
.accordion-content {
    display: none;
    text-align: left;
    padding: 30px;
}
.accordion-content.active {
    display: block;
}



/*************************************************************************************************************

DESKTOP

**************************************************************************************************************/


@media (min-width: 1800px) {

    .hamburger {
        display: none;
    }

    #hamburger-links {
        display: none;
    }

    .top-content {
        width: 60%;
        flex-direction: row;
    }

    .top-content ul {
        flex-direction: row;
    }

    .nav-content {
        width: 60%;
    }

    .nav-content ul {
        display: flex;
    }
    

    .header-content {
        width: 60%;
    }

    .header-details {
        width: 60%;
    }

    .intro-container {
        padding: 120px 0px;
    }

    .childcare-container {
        padding-bottom: 120px;
    }

    .studypoint-container {
        padding: 120px 0px;
    }

    .shortbreaks-container {
        padding: 120px 0px;
    }

    .parent-container {
        padding: 120px 0px;
    }

    .intro-content {
        width: 60%;
        gap: 30px;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .childcare-content {
        width: 60%;
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .studypoint-content {
        width: 60%;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .shortbreaks-content {
        width: 60%;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
    }

    .shortbreaks-generic {
        width: 60%;
    }

    .parent-content {
        width: 60%;
        grid-template-columns: 1fr 1fr 1fr;
    }

    .universal-container {
        padding: 120px 0px;
    }

    .universal-content {
        width: 60%;
    }

    .contact-container {
        padding: 120px 0px;
    }

    .contact-content {
        width: 60%;
        grid-template-columns: 1fr 1fr;
    }

    .partners-container {
        padding: 120px 0px;
    }

    .partners-content {
        width: 60%;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
        gap: 30px;
    }

    .footer-content {
        width: 50%;
    }

    .generic-container {
        padding: 120px 0px;
    }

    .generic-content {
        width: 60%;
        grid-template-columns: 1fr 1fr 1fr;
    }

    .faq-container {
        padding: 120px 0px;
    }

    .faq-content {
        width: 60%;
    }

}