/*
Theme Name: GMFA Elite
Theme URI: https://gmfaelite.com
Author: GMFA Elite Team
Author URI: https://gmfaelite.com
Description: A luxurious, elegant online magazine theme for showcasing elite social media influencers. Features custom post types for models, built-in ad placements, and premium editorial design inspired by high-end fashion magazines.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gmfa-elite
Tags: blog, entertainment, featured-images, custom-menu, custom-logo, full-width-template, theme-options

GMFA Elite WordPress Theme
*/

/* ========================================
   CSS RESET & BASE STYLES
   ======================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

a:hover {
    color: #000000;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

.tracking-wide {
    letter-spacing: 0.1em;
}

.tracking-widest {
    letter-spacing: 0.2em;
}

.uppercase {
    text-transform: uppercase;
}

.font-light {
    font-weight: 300;
}

.font-sans {
    font-family: 'Lato', 'Helvetica Neue', sans-serif;
}

/* ========================================
   LAYOUT CONTAINERS
   ======================================== */

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 40px 0;
    }
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    border-bottom: 1px solid #f5f5f5;
    padding: 12px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #666;
    font-size: 18px;
}

.social-links a:hover {
    color: #000;
}

.tagline {
    font-size: 11px;
    letter-spacing: 0.15em;
    color: #999;
    text-transform: uppercase;
}

.subscribe-link {
    font-size: 11px;
    letter-spacing: 0.15em;
    color: #666;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
}

.subscribe-link:hover {
    color: #000;
}

.site-branding {
    text-align: center;
    padding: 30px 0;
}

.site-title {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0;
}

.site-title a {
    color: #000;
}

.site-title .elite {
    font-weight: 300;
    font-style: italic;
}

.main-navigation {
    border-top: 1px solid #f5f5f5;
    padding: 15px 0;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.main-navigation li {
    margin: 0;
}

.main-navigation a {
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #666;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}

.main-navigation a:hover,
.main-navigation .current-menu-item a {
    color: #000;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

@media (max-width: 768px) {
    .site-title {
        font-size: 2rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .main-navigation {
        display: none;
    }
    
    .main-navigation.toggled {
        display: block;
    }
    
    .main-navigation ul {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .tagline {
        display: none;
    }
}

/* ========================================
   AD PLACEMENTS
   ======================================== */

.ad-banner {
    background: #f8f8f8;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    padding: 30px 20px;
    text-align: center;
}

.ad-label {
    font-size: 10px;
    letter-spacing: 0.2em;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-family: 'Lato', sans-serif;
}

.ad-placeholder {
    background: #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    margin: 0 auto;
}

.ad-728x90 {
    max-width: 728px;
    height: 90px;
}

.ad-300x250 {
    max-width: 300px;
    height: 250px;
    margin: 0 auto;
}

.sidebar-ad {
    background: #f8f8f8;
    padding: 20px;
    margin-top: 30px;
}

/* ========================================
   FEATURED MODEL SECTION
   ======================================== */

.featured-model-section {
    padding: 80px 0;
    border-bottom: 1px solid #e5e5e5;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-icon {
    width: 30px;
    height: 30px;
}

.featured-model-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.model-image-wrapper {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #f5f5f5;
}

.model-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.model-image-wrapper:hover img {
    transform: scale(1.05);
}

.model-content {
    padding: 0 20px;
}

.content-label {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 15px;
    font-family: 'Lato', sans-serif;
}

.model-name {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 10px;
}

.model-instagram {
    font-size: 14px;
    letter-spacing: 0.05em;
    color: #666;
    margin-bottom: 30px;
    display: inline-block;
}

.model-instagram:hover {
    color: #000;
}

.model-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    font-family: 'Lato', sans-serif;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 300;
}

.stat-label {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #999;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: #e5e5e5;
}

.model-bio {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
    font-family: 'Lato', sans-serif;
}

.btn-primary {
    background: #000;
    color: #fff;
    padding: 15px 35px;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Lato', sans-serif;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #333;
    color: #fff;
}

@media (max-width: 992px) {
    .featured-model-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .model-name {
        font-size: 2.5rem;
    }
}

/* ========================================
   GRID SECTIONS (Trending, Categories)
   ======================================== */

.models-grid-section {
    padding: 80px 0;
    background: #fafafa;
    border-bottom: 1px solid #e5e5e5;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.model-card {
    cursor: pointer;
}

.model-card-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #e5e5e5;
    margin-bottom: 20px;
}

.model-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.model-card:hover .model-card-image img {
    transform: scale(1.05);
}

.model-card-category {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 10px;
    font-family: 'Lato', sans-serif;
}

.model-card-name {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 5px;
}

.model-card-instagram {
    font-size: 14px;
    color: #666;
}

@media (max-width: 992px) {
    .models-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .models-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   SPOTLIGHT SECTIONS (Beauty, Fitness, Business)
   ======================================== */

.spotlight-section {
    padding: 80px 0;
    border-bottom: 1px solid #e5e5e5;
}

.spotlight-section.alt-bg {
    background: #fafafa;
}

.spotlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.spotlight-grid.reverse .spotlight-image {
    order: 2;
}

.spotlight-grid.reverse .spotlight-content {
    order: 1;
}

.spotlight-image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: #f5f5f5;
}

.spotlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.spotlight-image:hover img {
    transform: scale(1.05);
}

.spotlight-content {
    padding: 0 20px;
}

.spotlight-quote {
    border-left: 2px solid #000;
    padding-left: 25px;
    margin: 30px 0;
}

.spotlight-quote p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    font-style: italic;
    font-family: 'Lato', sans-serif;
}

.spotlight-specialty {
    margin-top: 30px;
}

.specialty-label {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 5px;
    font-family: 'Lato', sans-serif;
}

.specialty-text {
    font-size: 20px;
    font-weight: 300;
}

@media (max-width: 992px) {
    .spotlight-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .spotlight-grid.reverse .spotlight-image,
    .spotlight-grid.reverse .spotlight-content {
        order: 0;
    }
}

/* ========================================
   NEWSLETTER SECTION
   ======================================== */

.newsletter-section {
    background: #000;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 30px;
}

.newsletter-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.newsletter-description {
    font-size: 18px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 40px;
    font-family: 'Lato', sans-serif;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 18px 25px;
    font-size: 14px;
    border: none;
    background: #fff;
    color: #000;
    font-family: 'Lato', sans-serif;
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-submit {
    background: #fff;
    color: #000;
    padding: 18px 35px;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    white-space: nowrap;
    transition: background 0.3s ease;
}

.newsletter-submit:hover {
    background: #e5e5e5;
}

.newsletter-privacy {
    font-size: 12px;
    color: #999;
    margin-top: 20px;
    letter-spacing: 0.05em;
    font-family: 'Lato', sans-serif;
}

.newsletter-success {
    background: #fff;
    color: #000;
    padding: 20px 30px;
    font-size: 14px;
    letter-spacing: 0.05em;
    font-family: 'Lato', sans-serif;
}

@media (max-width: 576px) {
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-section h2 {
        font-size: 2rem;
    }
}

/* ========================================
   FOOTER
   ======================================== */

.site-footer {
    background: #fff;
    border-top: 1px solid #e5e5e5;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}

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

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    font-size: 14px;
    color: #666;
    font-family: 'Lato', sans-serif;
}

.footer-column a:hover {
    color: #000;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: #666;
    font-size: 20px;
}

.footer-social a:hover {
    color: #000;
}

.footer-bottom {
    border-top: 1px solid #e5e5e5;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #999;
    font-family: 'Lato', sans-serif;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: #999;
}

.footer-links a:hover {
    color: #000;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* ========================================
   WORDPRESS SPECIFIC STYLES
   ======================================== */

.alignleft {
    float: left;
    margin: 0 20px 20px 0;
}

.alignright {
    float: right;
    margin: 0 0 20px 20px;
}

.aligncenter {
    display: block;
    margin: 0 auto 20px;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 14px;
    color: #666;
    font-style: italic;
    padding: 10px 0;
    text-align: center;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* ========================================
   SINGLE MODEL PAGE
   ======================================== */

.single-model .entry-header {
    text-align: center;
    padding: 60px 0 40px;
    border-bottom: 1px solid #e5e5e5;
}

.single-model .entry-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 15px;
}

.single-model .model-meta {
    font-size: 14px;
    color: #666;
    font-family: 'Lato', sans-serif;
}

.single-model .entry-content {
    max-width: 800px;
    margin: 60px auto;
    font-size: 18px;
    line-height: 1.8;
    font-family: 'Lato', sans-serif;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.text-center {
    text-align: center;
}

.mt-30 {
    margin-top: 30px;
}

.mb-30 {
    margin-bottom: 30px;
}

.hidden {
    display: none;
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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