﻿/* styles.css - Enhanced Styling for Sietch Solutions */
body {
    background-color: #EAD7C5 ; /* Light sand-like tan */
    
}
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif; /* Default - Stability */
}

/* Header Styling (Strength & Stability) */
header {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: #8B5E3C; /* Warm desert brown */
    color: #fff;
    padding: 20px 40px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo and Title Alignment */
.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    display: block;
    margin-right: 10px;
}

/* Logo and Site Title */
.site-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}
/* Navigation Bar */
nav {
    margin-left: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
nav ul li a:hover {
    color: #0E76A8;
}

/* Main Content Styling */
main {
    background-color: #1A1A1A; /* Dark background */
    color: #fff;
    padding: 0px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    margin-top: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

main h1, main h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #E0C097; /* Warm desert gold */
}
/* Subheadings & Body Text - Adaptability & Flow */
h3, h4, p {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    color: #fff;
}
/* Screenshot Gallery */
.screenshot-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.screenshot-gallery img {
    width: 300px; /* Set a fixed width */
    height: 300px; /* Set a fixed height */
    object-fit: cover; /* Ensures the image fills the space without distortion */
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease-in-out;
}

.screenshot-gallery img:hover {
    transform: scale(1.05);
}
/* Responsive styles for smaller screens */
@media (max-width: 768px) {
    .screenshot-gallery {
        flex-direction: column; /* Stack images in one column on mobile */
        align-items: center;
    }

    .screenshot-gallery img {
        width: 90%; /* Allow images to scale while keeping spacing */
        max-width: 300px; /* Prevent them from being too big */
        height: auto; /* Keep aspect ratio */
	transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    }
.screenshot-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 12px rgba(255, 255, 255, 0.3);
}
}
/* About and Mission Sections */
.about-sietch, .mission-statement, .progress-section {
    font-family: 'Raleway', sans-serif;
    color: #E0C097; /* Soft contrast */
    background-color: #2E2E2E;
    padding: 20px;
    margin-top: 30px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 800px;
    text-align: center;
}

/* Progress & Changelog */
.progress-section h2 {
    color: #E0C097;
}

.progress-list {
    list-style: none;
    padding: 0;
}

.progress-list li {
    background: #333;
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
    box-shadow: 0px 2px 5px rgba(255, 255, 255, 0.1);
}
/* Footer Styling */
footer {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: #fff;
    text-align: center;
    padding: 10px;
    background-color: #1A1A1A;
}
 /* Radiance Page Layout - Text and Images Side by Side */
.radiance-content {
    display: flex;
    justify-content: flex-start; /* Aligns text and images side by side */
    align-items: flex-start; /* Aligns content to the top */
    flex-wrap: nowrap; /* Prevents wrapping */
    width: 90%;
    max-width: 1200px;
    margin: 0px auto;
    padding: 40px;
    background-color: #1A1A1A;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.2);
}
        .radiance-text h1 {
            color: #E0C097; /* Warm desert gold to match your headings */
            margin-bottom: 20px;
        }
        .radiance-text p {
            font-family: 'Raleway', sans-serif;
            line-height: 1.6;
            margin-bottom: 15px;
        }
/* Radiance Image Section - Now Stacked Vertically */
.radiance-images {
    display: flex;
    flex-direction: column; /* Stack images vertically */
    align-items: flex-start; /* Align images to the top */
    justify-content: flex-start;
    gap: 20px;
}
.radiance-images img {
  width: 300px;
  height: 300px;
  object-fit: cover;
}                @media (max-width: 768px) {
            .radiance-content {
                flex-direction: column;
                align-items: center;
            }
            /* Contact Text Section */
.radiance-text {
    flex: 1;
    min-width: 50%;
    max-width: 600px;
    text-align: left;
    padding-right: 40px;
}
/* Contact Page Styling */
.contact-container {
    display: flex;  /* Makes text and form sit next to each other */
    flex-wrap: wrap; /* Ensures responsiveness on smaller screens */
    justify-content: space-between; /* Distributes space evenly */
    align-items: center; /* Aligns items properly */
    max-width: 900px;
    margin: 40px auto;
    background-color: #1A1A1A;
    color: #EAD7C5;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.2);
    }
/* Profile Section */
.profile-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.profile-bio-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%; /* Adjust layout properly */
    max-width: 400px;
    margin: 0 auto;
}
.profile-pic {
    width: 120px;         /* Smaller circle */
    height: 120px;        /* Keeps it square */
    border-radius: 50%;   /* Makes it circular */
    object-fit: cover;    /* No stretching */
    border: 3px solid #8B5E3C; /* Desert bronze theme */
    display: block;
}
.bio {
    max-width: 600px;
    text-align: left;
}

.bio h2 {
    color: #E0C097;
    margin-bottom: 10px;
}

.bio p {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Contact Form */
.contact-section {
    width: 55%; /* Adjust for balance */
    text-align: left;
    }
.contact-section form {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    background-color: #2E2E2E;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
}
.contact-section form input,
.contact-section form textarea {
    min-width: 300px; /* Prevents input fields from shrinking */
    width: 100%;
}
.contact-section h2 {
    color: #E0C097;
}

.contact-section p {
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
    background-color: #2E2E2E;
    padding: 20px;
    border-radius: 8px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

form label {
    font-weight: bold;
    margin-top: 10px;
    color: #EAD7C5;
}

form input, form textarea {
    padding: 10px;
    margin-top: 5px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #333;
    color: #fff;
}

form button {
    margin-top: 20px;
    padding: 12px;
    font-size: 1em;
    background-color: #8B5E3C;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

form button:hover {
    background-color: #A66F4E;
}

/* Responsive Design */
@media (max-width: 768px) {
    .profile-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .bio {
        max-width: 90%;
    }

    .profile-pic {
    width: 300px; /* Change this size */
    height: 300px; /* Adjust as needed */
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #8B5E3C;
}
/* About Page Content Layout */
.about-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 20px;
}

/* Left Text Section */
.about-text {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    text-align: left;
    padding-right: 20px; /* Ensure spacing between text and images */
}

.about-text h1, .about-text h2 {
    color: #E0C097; /* Warm gold for headings */
    margin-bottom: 15px;
}

.about-text p {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Right Side: Images */
.about-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.about-images img {
    width: 300px; /* Force all images to be exactly 300x300 */
    height: 300px;
    object-fit: cover; /* Ensures the images fill the space without stretching */
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(255, 255, 255, 0.2);
}

/* Ensure Proper Spacing and Alignment on Smaller Screens */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-text {
        max-width: 90%;
        padding-right: 0; /* Remove right padding for mobile */
    }

    .about-images {
        flex-direction: column;
        gap: 15px;
    }

    .about-images img {
        width: 90%;
        max-width: 300px;
        height: auto;
    }
}
/* About Page Layout - Match Radiance */
.about-container {
    display: flex;
    justify-content: flex-start; /* Aligns text and images side by side */
    align-items: flex-start; /* Aligns content to the top */
    flex-wrap: nowrap; /* Prevents wrapping */
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px;
    background-color: #1A1A1A;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.2);
}

/* About Page Content Layout */
.about-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 20px;
}

/* About Text Section */
.about-text {
    flex: 1;
    min-width: 50%; /* Ensures text takes up half the space */
    max-width: 600px;
    text-align: left;
    padding-right: 40px; /* Adds spacing between text and images */
}
.about-text h1, .about-text h2 {
    color: #E0C097; /* Warm gold for headings */
    margin-bottom: 15px;
}

.about-text p {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* About Image Section - Stacked Vertically */
.about-images {
    display: flex;
    flex-direction: column; /* Stack images vertically */
    align-items: flex-start; /* Align images to the top */
    justify-content: flex-start;
    gap: 20px;
}
/* Ensure About Page Images are Properly Sized */
.about-images img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(255, 255, 255, 0.2);
}
/* Mobile Fix - Stack Text & Images on Smaller Screens */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        align-items: center;
    }

    .about-text {
        padding-right: 0;
        max-width: 90%;
        text-align: center;
    }

    .about-images {
        align-items: center;
    }

    .about-images img {
        width: 90%;
        max-width: 300px;
        height: auto;
    }
}
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}