@charset "utf-8";
@import url(./root.css);

/*--------------------------------*/
/*General Rules*/
/*--------------------------------*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.5;
}

html {
    font-family: 'Nunito Sans', 'Open Sans', Arial, sans-serif;
    font-size: 62.5%;
}

/* Font utility classes */
.roboto {
    font-family: 'Roboto', sans-serif;
}

.orbitron {
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
}

.kanit {
    font-family: 'Kanit', sans-serif;
    font-weight: 400;
}

/* Optional: Target specific tags with fonts */
h1, h2{
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
}

p, a, li, span {
    font-family: 'Roboto', sans-serif;
}

/* For more creative style */
.hero-content h1 {
    font-family: 'Kanit', sans-serif;
    font-weight: 700;
}

.container {
    width: min(100% - 30px, 1400px);
    margin-inline: auto;
}

.flex {
    display: flex;
}

.section-two {
    padding: 50px 0;
    background-color: #292e40;
}

.bg {
    background:#F9FAFB ;
}

/********************/
/****** Header ******/
/********************/

header {
    background-color: 	#002D62;
}

.logo {
    font-size: 25px;
    font-weight: 700;
    cursor: default;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 30px;
    height: 30px;
    vertical-align: middle;
}

.logo-text {
    color: var(--app-font-color);
}

.menu-icon {
    display: none;
    line-height: 50px;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin:  5px auto;
    transition: all 0.3s ease-in-out;
    background-color: 	#FFF;
}

.nav {
    justify-content: space-between;
    align-items: center;
}

.nav-list li {
    line-height: 50px;
    margin-left: 15px;
    font-size: 20px;
    cursor: pointer;
}

.home {
    color: var(--app-button-color);
}

a {
    text-decoration: none;
    color: 	#FFF;
}

a:hover {
    color: #FFA347;
}

@media (max-width: 1000px) {
    .menu-icon {
        display: block;
    }

    .menu-icon.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-icon.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-icon.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-list {
        position: fixed;
        left: -100%;
        top: 50px;
        gap: 0;
        flex-direction: column;
        background-color: #1a1d28;
        width: 100%;
        height: 100%;
        text-align: center;
        transition: left 0.3s ease-in-out;
        z-index: 1000;
    }  

    .nav-list.active {
        left: 0;
    }

    .logo-text {
        font-size: 15px;
        font-weight: 700;
        line-height: 50px;
        cursor: default;
    }
}

@media screen and (max-width: 480px) {
    .logo-text {
        font-size: 10px;
        font-weight: 500;
        line-height: 50px;
        cursor: default;
    }
}

/********************/
/****** body ******/
/********************/

body {
    display: flex;
    flex-direction: column;
    min-height: 100svh;
    margin: 0;
}

main {
    min-height: 100svh;
}

/*--------------------------------*/
/* Mini Banner                    */
/*--------------------------------*/

.hero-banner {
    position: relative;
    height: calc(50svh - 65px);
    background: rgb(255, 255, 255) url("../img/contactus.jpg") center center / cover no-repeat;
    line-height: calc(50svh - 65px);
    z-index: 1;
    overflow: hidden;
  
    h2 {
      font-weight: 800;
      font-size: 70px;
      letter-spacing: 3px;
      line-height: calc(50svh - 65px);
      color: var(--app-font-color);
      width: 100%;
      text-align: center;
    }
}
  
.hero-banner::before {
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgb(0 0 0 / 0.6);
    z-index: -1;
}

/*******************************************/
.contact-section {
    padding: 4rem 1rem;
    animation: fadeInUp 1s ease-in-out;
}

.contact-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--app-font-color);
    text-align: center;
}

.contact-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.6rem;
    color: var(--app-font-color);
}

.contact-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact-form {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    font-size: 1.4rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #002D62;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 45, 98, 0.3);
}

.contact-form textarea {
    height: 120px;
    resize: none;
}

.contact-form button {
    padding: 1rem;
    font-size: 1.6rem;
    background-color: var(--app-button-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background-color: #FFA347;
}

.contact-details {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    font-size: 1.6rem;
    color: var(--app-font-color);
}

.contact-details i {
    margin-right: 1rem;
    /* color: var(--app-button-color); */
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width: 768px) {
    .contact-grid {
        flex-direction: column;
    }

    .hero-banner {
        position: relative;
        height: calc(50svh - 65px);
        background: rgb(255, 255, 255) url("../img/contactus.jpg") center center / cover no-repeat;
        line-height: calc(50svh - 65px);
        z-index: 1;
        overflow: hidden;
      
        h2 {
          font-weight: 800;
          font-size: 40px;
          letter-spacing: 3px;
          line-height: calc(50svh - 65px);
          color: var(--app-font-color);
          width: 100%;
          text-align: center;
        }
    }
}


/***************/
/****footer*****/
/***************/

footer {
    background-color: 	#002D62;
    color: 	#FFF;
}

.footer {
    justify-content: space-between;
}

.copyright {
    height: 50px;
    cursor: default;
}

p {
    line-height: 50px; 
}

.social-list li {
    line-height: 50px;
    font-size: 20px;
}

.follow {
    font-size: 50px;
}

.yt {
    color: #FF0000;
}

.fb {
    color: #1877F2;
}

.ig {
    background: linear-gradient(45deg, #833AB4, #E1306C, #F56040);} 

.lk {
    color: #0A66C2;
}

.follow:hover {
    color: #FFA347;
}

.social-list li a {
    margin-right: 20px;
    color: 	#FFF;
}

.social-list li a:hover {
    color: #FFA347;
}

