/*
Theme Name: PROPTORY - World Class App Landing
Theme URI: https://proptory.com
Author: Chris Ndoyin Sam
Description: Premium Black & Yellow landing page for the Proptory Real Estate App.
Version: 1.1
Text Domain: proptory
*/

/* 1. Global Variables & Reset */
:root {
    --black: #0A0A0A;
    --dark-grey: #1A1A1A;
    --yellow: #FFD700;
    --white: #FFFFFF;
    --text-grey: #A0A0A0;
    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--black);
    color: var(--white);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* 2. Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-yellow { color: var(--yellow); }

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
}

.btn-yellow {
    background-color: var(--yellow);
    color: var(--black);
}

.btn-yellow:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

.btn-outline {
    border: 2px solid var(--yellow);
    color: var(--yellow);
}

.btn-outline:hover {
    background: var(--yellow);
    color: var(--black);
}

/* 3. Branding & Logo System */

/* Main wrapper for logo + text */
.branding {
    display: flex;
    align-items: center;
    gap: 15px; 
    text-decoration: none;
}

/* The actual Logo Image */
.custom-logo-link {
    display: inline-block;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 0;
}

.custom-logo {
    max-height: 70px; /* Increased for better visibility */
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.custom-logo:hover {
    transform: scale(1.05);
}

/* Site Name and Tagline Group */
.site-title-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
}

.site-name {
    font-size: 22px; /* Slightly larger */
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.site-name span { 
    color: var(--yellow); 
}

.site-tagline {
    font-size: 10px;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 2px;
    font-weight: 700;
    opacity: 0.9;
}

/* Responsive Fix for Branding */
@media (max-width: 480px) {
    .custom-logo {
        max-height: 50px; /* Smaller on mobile devices */
    }
    .site-name {
        font-size: 18px;
    }
}

/* App Mockup Floating Animation */
@keyframes float {
	0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(-20px);
	}
	100% {
		transform: translatey(0px);
	}
}

.floating-mockup {
	animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
}

/* Contact Form Focus States */
#proptory-contact-form input:focus, 
#proptory-contact-form textarea:focus {
    border-color: var(--yellow) !important;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

#proptory-contact-form input::placeholder,
#proptory-contact-form textarea::placeholder {
    color: #444;
}

/* Update Card Hover Effects */
.update-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.3) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.update-card:hover img {
    transform: scale(1.1);
}

/* Ensure Menu items are visible and horizontal */
.main-nav ul {
    display: flex !important; /* Forces it to stay horizontal */
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.main-nav ul li a {
    color: var(--white) !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.main-nav ul li a:hover {
    color: var(--yellow) !important;
}

/* Ensure the header is always on top of everything */
header {
    z-index: 9999 !important;
}