@import "./theme.css";

* {
    margin: 0;
    box-sizing: border-box;
    font-family: "Rubik", sans-serif;
    color: var(--white);
	scroll-behavior: smooth;
}

*::-webkit-scrollbar {
	display: none;
}

body, html {
	background: var(--black);
	width: 100%;
	overflow-x: hidden;
}

a:hover {
    cursor: pointer;
}

nav {
	position: relative;
    height: 100px;
    width: 100%;

    padding: 10px 0;
    z-index: 100;
    position: relative;
}

nav .nav-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
    height: 80px;
    overflow: hidden;
    padding: 0 70px;
    gap: 60px;
}

nav .logo {
    flex-shrink: 0;
}

nav .nav-container img {
    height: 50px;
	width: 50px;
}

nav .nav-container #collapsing-nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 1;
}

nav .nav-container #collapsing-nav a {
    margin: 0 20px;
    font-size: 18px;
    color: var(--white);
    text-align: center;
    display: inline-block;
    position: relative;
    user-select: none;
    text-decoration: none;
}

nav .nav-container #collapsing-nav a:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    left: 0;
    bottom: -2px;
    background-color: var(--light-blue);
    transform-origin: bottom right;
    transition: transform 0.5s ease-out;
}
  
nav .nav-container #collapsing-nav a:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

hr {
	position: absolute;
	left    : calc(50% - (75% /2));
	height  : 1px;
	width   : 75%;  /* or 100px */
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

footer {
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 100%);
    color: white;
    overflow: hidden;
    padding: 60px 0 40px;
    margin-top: 80px;
}

footer #footer-main-row {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    padding: 0 70px;
}

footer .logo-container {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 20px !important;
}

footer #footer-logo {
    width: 60px;
    height: 60px;
    filter: brightness(1.1);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

footer #footer-logo:hover {
    transform: scale(1.05);
}

footer .copyright {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    flex: 1;
}

footer .links-row {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

footer .links-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--light-blue);
}

footer .links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

footer .links a {
    font-size: 14px;
    font-weight: 300;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

footer .links a:hover {
    color: white;
    padding-left: 5px;
}

footer .links a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: var(--light-blue);
    transition: width 0.3s ease;
}

footer .links a:hover::before {
    width: 10px;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    footer #footer-main-row {
        flex-direction: column;
        gap: 40px;
    }

    footer .links-row {
        justify-content: flex-start;
        gap: 30px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    footer {
        padding: 40px 0 30px;
        margin-top: 60px;
    }

    footer #footer-main-row {
        padding: 0 20px;
        gap: 40px;
    }

    footer .logo-container {
        align-items: flex-start;
        text-align: left;
    }

    footer #footer-logo {
        width: 50px;
        height: 50px;
    }

    footer .copyright {
        font-size: 12px;
        text-align: center;
    }

    footer .links-row {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    footer .links-col h4 {
        font-size: 14px;
        margin-bottom: 15px;
    }

    footer .links {
        align-items: center;
    }

    footer .links a {
        font-size: 13px;
    }

    footer .links a::before {
        display: none;
    }

    footer .links a:hover {
        padding-left: 0;
        transform: translateY(-2px);
    }
}

@media(max-width: 750px) {
    nav .nav-container {
        padding: 0 20px;
        gap: 30px;
    }

    nav .nav-container img {
        height: 35px;
		width: 35px;
    }

    nav .nav-container #collapsing-nav {
        z-index: 100;
        flex-flow: column;
        position: absolute;
        left: 0;
        top: 100px;
        background: var(--dark);
        height: 0;
        overflow: hidden;
        transition: height 0.5s ease-in-out;
    }

    nav .nav-container #collapsing-nav a {
        text-align: left;
        font-size: 25px;
        margin: 20px 0;
    }

    nav .nav-container #collapsing-nav a:first-of-type {
        margin-top: 10px;
    }

    nav .nav-container #collapsing-nav a:last-of-type {
        margin-bottom: 40px;
    }

    nav .nav-container #collapsing-nav.open {
        height: max-content;
    }
}

#header {
    width: 100%;
    background-size: cover;
    background-position: center;
    text-align: center;
    overflow: hidden;
}

#header .header-content {
    background-image: url("../img/landing-background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 20px;
}

#header .header-content h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: var(--white);
}

#header .header-content p {
    font-weight: 100;
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto;
    color: var(--white);
}

@media (max-width: 750px) {
    #header .header-content {
        padding: 80px 20px;
    }

    #header .header-content h1 {
        font-size: 2em;
    }

    #header .header-content p {
        font-size: 1em;
    }
}

#main-content {
    background-color: var(--black);
    padding-top: 50px;
}

#faq-container {
    max-width: 900px;
    margin: 60px auto 80px;
    padding: 0 30px;
}

#faq-container h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5em;
    font-weight: 600;
    background: linear-gradient(135deg, var(--light-blue), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.faq-question {
    font-size: 1.1em;
    font-weight: 500;
    color: var(--white);
    padding: 25px 30px;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--light-blue);
}

.faq-question::after {
    content: '+';
    font-size: 1.5em;
    font-weight: 300;
    color: var(--light-blue);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
    font-size: 1em;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 30px 25px;
}

@media (max-width: 768px) {
    #faq-container {
        margin: 40px auto 60px;
        padding: 0 20px;
    }
    
    #faq-container h2 {
        font-size: 2em;
        margin-bottom: 40px;
    }
    
    .faq-question {
        font-size: 1em;
        padding: 20px;
    }
    
    .faq-question::after {
        font-size: 1.3em;
    }
    
    .faq-answer {
        font-size: 0.95em;
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
}

@media (max-width: 750px) {
    #header .header-content {
        padding: 80px 20px 30px;
    }

    #header .header-content h1 {
        font-size: 2em;
    }

    #header .header-content p {
        font-size: 1em;
    }

    #faq-container {
        margin-bottom: 30px;
    }
    
    .faq-question {
        font-size: 16px;
    }
    
    .faq-answer {
        font-size: 14px;
    }
}

#brands-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 120px auto;
    padding: 0 30px;
}

#brands-container h2 {
    font-size: 2.5em;
    font-weight: 600;
    margin-bottom: 80px;
    background: linear-gradient(135deg, var(--light-blue), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-align: center;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 60px;
    width: 100%;
    max-width: 900px;
}

.brand {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.brand::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.brand:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.04);
}

.brand:hover::before {
    opacity: 1;
}

.brand-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 25px;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.3));
    transition: transform 0.4s ease;
}

.brand:hover .brand-icon {
    transform: none;
}

.brand-name {
    font-size: 1.8em;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white);
}

.brand-description {
    font-size: 1em;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    min-height: 60px;
}

.brand-link-mysub, .brand-link-photojar {
    display: inline-block;
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.brand-link-mysub {
    background: var(--mysub-primary);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(236, 25, 66, 0.3);
}

.brand-link-mysub:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 25, 66, 0.5);
}

.brand-link-photojar {
    background: var(--photojar-primary);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(255, 103, 222, 0.3);
}

.brand-link-photojar:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 103, 222, 0.5);
}

@media (max-width: 768px) {
    #brands-container {
        margin: 80px auto;
        padding: 0 20px;
    }

    #brands-container h2 {
        font-size: 2em;
        margin-bottom: 50px;
    }

    .brands-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .brand {
        padding: 30px 20px;
    }

    .brand-icon {
        width: 80px;
        height: 80px;
    }

    .brand-name {
        font-size: 1.5em;
    }

    .brand-description {
        font-size: 0.95em;
    }
}



/* Contact Us Section Styling */
#contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 120px auto;
    padding: 0 30px;
    text-align: center;
}

#contact-container h2 {
    font-size: 2.5em;
    font-weight: 600;
    margin-bottom: 60px;
    background: linear-gradient(135deg, var(--light-blue), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
    width: 100%;
    align-items: center;
}

.contact-section {
    width: 100%;
    max-width: 500px;
}

.contact-section h3 {
    font-size: 1.2em;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item strong {
    display: inline-block;
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item a {
    color: var(--light-blue);
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 300;
    transition: all 0.3s ease;
    display: block;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-top: 8px;
}

.contact-item a:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--light-blue);
}

.contact-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    margin: 0 auto;
}

@media (max-width: 768px) {
    #contact-container {
        margin: 80px auto;
        padding: 0 20px;
    }

    #contact-container h2 {
        font-size: 2em;
        margin-bottom: 40px;
    }

    .contact-content {
        gap: 40px;
    }

    .contact-section h3 {
        font-size: 1.1em;
        margin-bottom: 20px;
    }

    .contact-item a {
        font-size: 1.1em;
        padding: 12px 20px;
    }
}

/* Existing styles... */

/* About page styles */
.about-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 0 20px;
}

.gradient-title {
    font-size: 3em;
    font-weight: bold;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 30px;
    text-align: center;
}

.about-content {
    line-height: 1.6;
    color: #333;
}

.about-content p {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .gradient-title {
        font-size: 2.5em;
    }
}

.jobs-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    text-align: center;
}

.gradient-title {
    font-size: 3em;
    font-weight: bold;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 30px;
}

.intro-text {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.vacancies-title {
    font-size: 2em;
    margin-bottom: 20px;
}

.vacancies {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.vacancy-box {
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 20px);
    text-align: left;
    background-color: #333;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: var(--white);
    margin-bottom: 20px;
}

.vacancy-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
}

.vacancy-info {
    padding: 15px;
}

.vacancy-info h2 {
    font-size: 1.5em;
    margin-top: 0;
}

.vacancy-info p {
    font-size: 1em;
    margin: 10px 0;
}

.vacancy-info button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1em;
    color: var(--black); /* Dark text color to contrast with light button background */
    background-color: var(--light-blue); /* Use a color from the theme for the button */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    width: 100%;
    margin-top: 10px;
}

.vacancy-info button:hover {
    background-color: #0056b3; /* Slightly darker shade on hover */
}


/* Hamburger menu styles */
.hamburger-checkbox {
    display: none;
}

.hamburger-label {
    display: none;
    cursor: pointer;
    padding: 10px;
    z-index: 10;
}

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

@media (max-width: 750px) {
    .hamburger-label {
        display: block;
        margin-left: auto;
    }

    nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: var(--black);
        z-index: 1000;
    }

    body {
        padding-top: 100px;
    }


    nav .nav-container #collapsing-nav {
        position: fixed;
        left: -100%;
        top: 100px;
        gap: 0;
        flex-direction: column;
        background-color: var(--black);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        display: flex;
        justify-content: flex-start;
        padding-top: 20px;
        overflow-y: auto;
    }

    .hamburger-checkbox:checked ~ #collapsing-nav {
        left: 0;
    }

    .hamburger-checkbox:checked + .hamburger-label .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger-checkbox:checked + .hamburger-label .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger-checkbox:checked + .hamburger-label .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    nav .nav-container #collapsing-nav a {
        margin: 16px 0;
        font-size: 1.2em;
        display: block;
    }
}

/* For larger screens, ensure the menu is always visible */
@media (min-width: 751px) {
    nav .nav-container #collapsing-nav {
        display: flex;
    }
}

/* Rest of the existing styles ... */

@media (max-width: 768px) {
    .vacancy-box {
        width: 100%; /* Full width on smaller screens */
    }

    .vacancy-image {
        height: 250px; /* Optionally increase height for mobile */
    }
}


.application-form form {
    display: flex;
    flex-direction: column;
}

.application-form label, 
.application-form input, 
.application-form select, 
.application-form textarea {
    margin-bottom: 1rem;
}

.other-source {
    display: none;
}

#hearAboutUs:has(option[value="other"]:checked) + .other-source {
    display: block;
}


.job-details {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.job-title {
    border-bottom: 2px solid #ddd;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.job-summary {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.job-section {
    margin-bottom: 2rem;
}

.job-section h3 {
    margin-bottom: 1rem;
}

.job-section ul {
    padding-left: 1.5rem;
}

.job-section li {
    margin-bottom: 0.5rem;
}

.job-details-footer {
    border-top: 1px solid #ddd;
    padding-top: 1rem;
    margin-top: 2rem;
    font-size: 0.9rem;
}

.job-details-footer p {
    margin-bottom: 0.5rem;
}

.no-bullets {
    list-style-type: none;
    padding-left: 0;
}

.no-bullets li {
    margin-bottom: 0.75rem;
}
