@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&family=Signika:wght@300..700&family=Sour+Gummy:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --purple: #3d1959;
    --light-purple: #7133a1;
    --yellow:  #edb801;
    --slate: #708090ff;

    --box-shadow: 5px 5px 10px var(--slate);
}

body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Sour Gummy", sans-serif;
    font-weight: 200;
}

h2 {
    font-family: Signika;
    font-size: 2.5rem;
}

header {
    position: sticky;
    width: 100%;
    background-color: var(--purple);
}

.main-header {
    display: flex;
    padding: 1rem 4rem;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--yellow);
}

.logo {
    height: 100px;
    width: auto;
}
.nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-weight: bold;
}

.nav-links .page-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    
}

.nav-links .page-nav a {
    font-size: 1.25rem;
    font-family: Signika;
    text-decoration: none;
    color: var(--yellow);
    text-transform: uppercase;
}

.nav-drop {
    position: relative;
    z-index: 25;
}

.nav-drop-content {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99999;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-purple);
    border-radius: 25px;
    border: 1px solid var(--yellow);
    text-align: center;
    width: max-content;
}
.nav-drop:hover {
    .nav-drop-content {
        display: flex;
    }
}
.nav-drop-content a:hover {
    background-color: var(--purple);
}

.nav-links .page-nav a:hover {
    text-decoration: underline;
    text-decoration-color: var(--light-purple);    
}

.social-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

.social-nav img {
    height: 40px;
    width: auto;
}

.hero {
    display: flex;
    background-color: #edb80180;
    height: 70svh;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.home-hero-title {
    color: white;
    text-align: center;
    border-radius: 25px;
    padding: 2rem;
    background-color: #7133a199;
    position: relative;
    z-index: 10;

    h1 {
        font-family: Signika, sans-serif;
        font-size: 5rem;
        text-transform: uppercase;
        text-shadow: 5px 5px 5px #3d1959;
        color: var(--yellow);
        opacity: 0;
        transform: translateY(50px);
        animation: fadeIn 2s ease-in forwards;
    }

    p {
        font-size: 2rem;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tour {
    display: flex;
    gap: 1rem;
    padding: 2rem;
    margin: 2rem;
    background-color: var(--light-purple);
    border-radius: 25px;
    color: white;
}

#tour-vid {
    border: 2px solid var(--yellow);
    border-radius: 25px;
    width: 50%;
    height: auto;
}

.tour-text {
    display: flex;
    justify-content: space-around;
    flex-direction: column;
}

.tour-text h2 {
    color: var(--yellow);
    text-decoration: underline;
}

.tour-text a {
    border-radius: 25px;
    padding: 1rem;
    background-color: var(--yellow);
    font-size: 1rem;
    border: 1px solid var(--yellow);
    font-weight: bold;
    text-decoration: none;
    max-width: fit-content;
}

.tour-text a:hover {
    color: var(--yellow);
    background-color: var(--purple);
}

.about {
    display: flex;
    flex-direction: column;
    max-width: 60%;
    margin: auto;
    padding: 2rem;

}

.about h2,
.social-text h2,
.room-text h2 {
    color: var(--light-purple);
    text-decoration: underline;
    text-decoration-color: var(--yellow);
}

.gov-rating {
    max-width: 80%;
    margin: auto;
}

.gov-rating h2,
.award-intro h2,
.meet-team-desc h2 {
    color: var(--light-purple);
    text-align: center;
    text-decoration: underline;
    text-decoration-color: var(--yellow);
}
.gov-awards-wrapper {
    display: flex;
    width: 90%;
    margin: auto;
}
.gov-award-card {
    display: flex;
    align-items: center;
    margin: auto;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
}

.gov-award-card img {
    max-width: 200px;
    max-height: 200px;
}

.award-intro {
    padding: 2rem;
    margin: auto;
    max-width: 80%;
}

.award-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.award-info a {
    text-decoration: none;
    padding: 1rem;
    border-radius: 25px;
    font-weight: bold;
    width: max-content;
    margin-inline: auto;
    background-color: var(--purple);
    color: var(--yellow);
    
}

.award-info a:hover {
    background-color: var(--yellow);
    color: var(--purple);
}

.awards {
    padding: 2rem;
}

.award-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;

}

.award-card {
    display: flex;
    flex-direction: column;
    background-color: #edb801;
    border: 1px solid var(--light-purple);
    box-shadow: 2px 2px 5px grey;
    justify-content: space-evenly;
    padding: 1rem;
    align-items: center;
    border-radius: 25px;
    
}

.award-card a {
    display: inline-block;
}

.award-card img {
    display: block;
    margin: auto;
    width: 80%;
}

.award-details {
    text-align: center;
    color: white;

    .company {
        font-size: 1.5rem;
        color: var(--light-purple);
        text-decoration: underline;
    }
}

.offer {
    margin: auto;
    justify-items: center;
    padding: 2rem;
}

.offer h2 {
    font-size: 2rem;
    text-decoration: underline;
    text-align: center;
    color: var(--yellow);
}

.offer p {
    color: var(--yellow);
}

.offer ul {
    border: 2px solid var(--yellow);
    border-radius: 25px;
    padding: 2rem;
    line-height: 2rem;
    list-style: none;
    color: white;
    background-color: var(--light-purple);
}

.offer ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-block: 1rem;
}

.offer ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 1rem;
    background-image: url('Assets/Icons/Ystar.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.testimonials {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--yellow);
    border-top: 5px double var(--purple);
    border-bottom: 5px double var(--purple);
    
    h2 {
        font-size: 2rem;
        color: var(--light-purple);
        text-decoration: underline;
    }

    p {
        color: white;
        padding-inline: 2rem;
    }
}

.testimonial-carosel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    padding: 2rem;
    gap: 1rem;
    
}

.testimonial-card {
    justify-items: center; 
    padding: 2rem;
    border-radius: 25px;
    background-color: white;
    height: max-content;
}

.testimonial-card img {
    border-radius: 50%;
    height: 2rem;
    border: 2px solid var(--purple);
    background-color: grey;
}

.testimonial-card p {
    font-style: italic;
    color: black;
}

.testimonial-card p b {
    font-size: 1.25rem;
}

.testimonial-card .test-name {
    color: var(--light-purple);
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
}

.social-wrapper {
    display: flex;
    padding: 2rem;
    max-width: 90%;
    margin-inline: auto;
    margin-block: 2rem;
    justify-content: space-around;
    box-shadow: 3px 2px 5px var(--yellow);
    border: 2px solid var(--light-purple);
    border-radius: 25px;
}

.social-text {
    padding: 2rem;
}

.social-wrapper #facebook-plugin {
    border: 2px solid var(--light-purple);
    border-radius: 25px;
    box-shadow: 3px 2px 5px var(--light-purple);
}

.contact {
    display: flex;
    gap: 2rem;
    padding: 2rem;
}

.contact-form {
    display: flex;
    color: white;
    gap: 1rem;
    width: 50%;
    flex-direction: column;
    padding-inline: 1rem;
    background-color: var(--light-purple);
    border: 1px solid var(--yellow);
    border-radius: 25px;
}

.contact-form h2,
.contact-form a {
    color: var(--yellow);
    text-decoration: underline;
}


.contact-form input,
.contact-form textarea {
    padding: 0.5rem;
    border-radius: 25px;
    border: none;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"] {
    width: 50%;
}

.contact-form textarea {
    padding: 1rem;
    height: 5rem;
}

.contact-form input[type="submit"] {
    padding: 1rem;
    background-color: var(--yellow);
    border: none;
    border-radius: 25px;
    width: 50%;
    align-self: center;
}

.g-map {
    width: 50%;
}

.rooms-intro {
    width: 80%;
    margin: auto;
}

.room-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
}

.room-card {
    display: flex;
    max-width: 80%;
    gap: 1.5rem;
    align-items: center;
    border-radius: 25px;
    border: 2px solid var(--purple);
    box-shadow: var(--box-shadow);
}

.room-thumb {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    align-items: center;
}

.room-thumb img {
    height: 250px;
    width: 250px;
    object-fit: cover;
    border-radius: 25px;
}
.more-info-btn {
    padding: 1rem;
    border-radius: 25px;
    text-align: center;
    width: fit-content;
    text-decoration: none;
    background-color: var(--yellow);
    color: var(--light-purple);
}

.more-info-btn:hover {
    background-color: var(--light-purple);
    color: var(--yellow);
}

.room-text {
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

.room-nav {
    display: flex;
    justify-content: space-evenly;
    gap: 1rem;
    width: 100%;
    padding-block: 1rem;
    background-color: var(--light-purple);
}

.room-nav a {
    text-decoration: none;
    color: var(--yellow);
    text-align: center;
    font-weight: bold;
}

.room-nav a:hover {
    text-shadow: 5px 5px 5px #3d1959;
    scale: 1.2;
}

.meet-team-desc {
    max-width: 80%;
    margin: auto;
    padding: 2rem;
}


.divider {
    display: flex;
    width: 100%;
    justify-content: space-around;
    align-items: baseline;
}

.y-star-div {
    height: 3rem;
    width: auto;
}

.p-star-div {
    height: 5rem;
    width: auto;
}

.role-wrapper {
    border-radius: 25px;
    border: 1px solid var(--purple);
    margin: 2rem;
    display: flex;
    flex-direction: column;
    box-shadow: 2px 2px 5px grey;
}

.role-description {
    display: flex;
    flex-direction: column;
    border-radius: 25px 25px 0 0 ;
    align-items: center;
    background-color: var(--purple);
    padding: 2rem;
    color: white;
}

.role-heading {
    font-family: "Signika";
    text-decoration: underline;
    font-size: 2rem;
    color: var(--yellow);
}

.role-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 2rem;
    
}

.team-card {
    display: flex;
    padding: 2rem;
    gap: 1rem;
    align-items: center;
    border-radius: 25px;
    border: 2px solid var(--purple);
    color: white;
    background-color: var(--yellow);
    box-shadow: 2px 2px 5px var(--light-purple);
}

.team-pic img{
    max-height: 150px;
    width: auto;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--light-purple);
}

.team-details {
    padding-inline: 1rem;
}

.team-name {
    font-size: 1.5rem;
    color: var(--purple);
}

.team-qualification {
    color: var(--light-purple);
}

.team-icon {
    display: flex;
    gap: 1rem;
}

.team-icon img {
    max-height: 50px;
    width: auto;
    border-radius: 50%;
    justify-content: right;
}

footer {
    color: white;
    background-color: var(--light-purple);
    padding: 0 2rem 2rem 2rem;
    border-top: 2px solid var(--purple);
}

footer h3 {
    color: var(--yellow);
    font-family: Signika;
}

footer a {
    color: inherit;
    text-decoration: none;
}

footer a:hover {
   color: var(--yellow); 
}

.footer-main{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2rem;
}

.credits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.credits img{
    max-height: 100px;
    width: auto;
}

.footer-social img {
    max-height: 50px;
}

.footer-links-pages {
    display: flex;
    flex-direction: column;
    color: white;
}


.footer-cp {
    display: flex;
    justify-content: space-between;
    color: var(--yellow);

}

.footer-cp a:hover {
    color: white;
    text-decoration: underline;
}

@media screen and (max-width: 900px) {

    .home-hero-title h1 {
        font-size: 3rem;
    }

    .tour{
        flex-direction: column;
        align-items: center;

        #tour-vid {
            width: 95%;
        }

        .tour-text {
            align-items: center;
        }

        .tour-text a {
            max-width: none;
            width: 100%;
            text-align: center;
            margin-top: 2rem;
        }
    }

    .award-container,
    .role-gallery,
    .testimonial-carosel {
        grid-template-columns: 1fr;
    }

    .gov-awards-wrapper,
    .social-wrapper
     {
        flex-direction: column;
        align-items: center;
    }

    .gov-award-card {
        margin: 0;
    }

    

    .testimonial-card {
        width: 80vw;
    }

    .contact {
        flex-direction: column-reverse;
        align-items: center;
        gap: 0;
    }

    .contact-form,
    .g-map {
        width: 90%;
    }

    .g-map {
        height: 500px;
    }
    

    .team-card {
        flex-direction: column;
        justify-content: space-evenly;
    }

    .footer-main,
    .footer-cp {
        flex-direction: column;
    }
    
}