/*
Theme Name: HaitianMeet
Theme URI: https://haitianmeet.com
Author: Victor Ekong
Author URI: https://yourwebsite.com
Description: A custom WordPress theme for HaitianMeet dating platform.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: haitianmeet
Tags: dating, haitian, community, mobile-first
*/
/* 
 * Main style.css file for the HaitianMeet WordPress theme
 */

 :root {
    --brand-color: #7800C1;
    --brand-purple: #5C1289;
}

html, body {
    overflow-x: hidden;
    font-family: 'Montserrat', 'Sora', 'Inter', sans-serif;
}

body {
    font-family: 'Montserrat', 'Sora', 'Inter', sans-serif;
}

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

/* Navigation */
nav {
    background-color: white;
}

.navbar {
    background-color: white;
    display: flex;
    justify-content: space-between;
    margin: auto;
    width: 90%;
}

.btn-brand {
    background-color: var(--brand-color);
    color: white;
}

.bg-brand {
    background-color: var(--brand-color);
}

.text-brand {
    color: var(--brand-color);
}

.bg-brand-purple {
    background-color: var(--brand-purple);
}

.rounded-25 {
    border-radius: 25px;
}

/* Hero Section */
.hero {
    background-color: #f8f9fa;
}

.hero-row {
    display: flex;
    flex-wrap: wrap;
}

.hero-item {
    display: flex;
    align-items: center;
}

.hero-text-content {
    padding: 20px;
}

.store-btn {
    display: flex;
    gap: 10px;
}

/* Hero 2 for Live Match */
.hero-2 {
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/background.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stars {
    color: gold;
}

.btn-gradient {
    background: linear-gradient(to right, var(--brand-color), var(--brand-purple));
    color: white;
}

/* Features */
.feature {
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
}

/* CTA Section */
.cta {
    background-color: var(--brand-purple);
}

/* Footer */
.footer {
    background-color: #f8f9fa;
}

.footer-links {
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 20px 0;
}

.footer-links li {
    list-style: none;
    margin: 0 15px;
}

.footer-links li a {
    text-decoration: none;
    color: #333;
}

.social-links {
    display: flex;
    list-style: none;
    padding: 0;
}

.social-links li {
    margin-left: 20px;
}

.social-links li a {
    color: var(--brand-color);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links li a:hover {
    color: var(--brand-purple);
}

.copyright-and-socials {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

/* Modal */
.bg-trans {
    background-color: rgba(255, 255, 255, 0.95);
}

.hide {
    display: none;
}

/* Spinner */
.spinner {
    position: absolute;
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .hero-row {
        flex-direction: column;
    }
    
    .hero-item {
        width: 100%;
    }
    
    .store-btn {
        flex-direction: column;
    }
    
    .copyright-and-socials {
        flex-direction: column;
    }
    
    .social-links {
        margin-top: 20px;
    }
}
/* 
Main theme styles are imported from the assets/css/style.css file
via the functions.php file. This file is primarily for theme information.
*/