/*
Theme Name: PrimeSense Theme
Theme URI: https://primesense.com
Author: Manus AI
Author URI: https://manus.ai
Description: A custom WordPress theme for PrimeSense, designed to be modern, attractive, and professional, with dynamic content capabilities.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
Text Domain: primesense-theme
*/

/* Global Styles */
body {
    font-family: 'Arial', sans-serif; /* Will select a more modern font later */
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f9f9f9;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
header {
    background-color: #2c3e50; /* Dark blue/grey from 'PRIME' in logo - placeholder */
    color: #ffffff;
    padding: 1em 0;
    border-bottom: 5px solid #8e44ad; /* Purple from logo */
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    max-height: 60px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li.current-menu-item a {
    color: #e74c3c; /* Accent color - placeholder, will refine based on logo's pink/yellow */
}

/* Main Content Area */
.main-content {
    padding: 40px 0;
}

/* Footer Styles */
footer {
    background-color: #34495e; /* Slightly lighter dark blue/grey */
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: #8e44ad; /* Purple from logo */
    margin-bottom: 0.5em;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: #8e44ad; /* Purple from logo */
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #732d91; /* Darker purple */
}

/* Loading Animation Placeholder - to be implemented with JS and more CSS */
.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #8e44ad; /* Purple */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    display: none; /* Hidden by default, shown via JS */
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }

    nav ul {
        margin-top: 15px;
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 10px 0;
    }
}

