/*
Theme Name: STARZ & MODELS - Casting Board
Theme URI: https://starz-models.com
Description: A highly polished model casting and talent portfolio discovery board for STARZ & MODELS. Features advanced model portfolio browsing, casting applications, and talent booking management.
Version: 1.0.0
Author: STARZ & MODELS International
Author URI: https://starz-models.com
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: starz-models-theme
Domain Path: /languages
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
*/

/* ============================================
   STARZ & MODELS - Casting Board Theme
   ============================================ */

:root {
  --color-primary: #F26522;
  --color-dark: #100f0f;
  --color-light: #faf7f2;
  --color-accent: #c5a880;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
}

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

html {
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-dark);
  color: var(--color-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-accent);
}

/* Header */
.site-header {
  background-color: rgba(16, 15, 15, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(25, 25, 23, 0.5);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-branding h1 {
  font-size: 1.75rem;
  color: var(--color-primary);
  margin: 0;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.site-nav a {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
}

.site-nav a:hover {
  background-color: var(--color-primary);
  color: white;
}

/* Main Content */
.site-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.entry-content {
  line-height: 1.8;
}

.entry-content p {
  margin-bottom: 1.5rem;
}

/* Buttons */
.btn, button, input[type="button"], input[type="submit"] {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--color-primary);
  color: white;
  border: none;
  border-radius: 0.25rem;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover, button:hover {
  background-color: #e05a1a;
  transform: translateY(-2px);
}

/* Footer */
.site-footer {
  background-color: rgba(12, 12, 12, 0.8);
  border-top: 1px solid rgba(25, 25, 23, 0.5);
  padding: 3rem 1.5rem;
  margin-top: 4rem;
}

.site-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-section ul {
  list-style: none;
}

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

.footer-bottom {
  border-top: 1px solid rgba(197, 168, 128, 0.2);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(250, 247, 242, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }
  
  .site-header-inner {
    flex-direction: column;
    gap: 1rem;
  }
  
  .site-nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .site-content {
    padding: 1.5rem 1rem;
  }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(25, 25, 23, 0.3);
}

::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #aa906b;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}
