/*
Theme Name: TwentyFourTalents (No Elementor)
Theme URI: https://twentyfourtalents.com/
Author: Manus
Description: A custom WordPress theme for TwentyFourTalents based on Adobe XD design. Works without Elementor, using native WordPress functionality.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentyfourtalents-no-elementor
Tags: custom-colors, custom-logo, custom-menu, featured-images, flexible-header
*/

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #e9f0f7; /* Light blue background from design */
    color: #333;
    line-height: 1.6;
}

/* Container */
.site-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
.site-header {
    background-color: #fff;
    padding: 20px 0;
    border-radius: 15px;
    margin: 20px auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Logo */
.site-logo {
    display: inline-block;
}

.site-logo .twentyfour {
    font-weight: normal;
    color: #003366;
}

.site-logo .talents {
    font-weight: bold;
    color: #003366;
}

/* Navigation */
.main-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-navigation ul {
    list-style: none;
    display: flex;
}

.main-navigation li {
    margin-left: 20px;
}

.main-navigation a {
    text-decoration: none;
    color: #003366;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: #0066cc;
}

/* Content area */
.site-content {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    margin: 20px auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Arial', sans-serif;
    color: #003366;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5em;
}

h2 {
    font-size: 2em;
}

h3 {
    font-size: 1.75em;
}

p {
    margin-bottom: 20px;
}

/* Buttons */
.button {
    display: inline-block;
    background-color: #ff6b6b;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #ff5252;
}

/* Footer */
.site-footer {
    background-color: #fff;
    padding: 30px 0;
    border-radius: 15px;
    margin: 20px auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

/* Responsive styles */
@media (max-width: 768px) {
    .main-navigation {
        flex-direction: column;
    }
    
    .main-navigation ul {
        margin-top: 20px;
        flex-direction: column;
        align-items: center;
    }
    
    .main-navigation li {
        margin: 10px 0;
    }
}

/* Elementor compatibility */
.elementor-section {
    padding: 0;
}

.elementor-column-gap-default > .elementor-row > .elementor-column > .elementor-element-populated {
    padding: 10px;
}
