/*
Theme Name: LeaseaWebsite.US Theme
Theme URI: https://leaseawebsite.us
Author: Ottaway Digital
Author URI: https://ottawaydigital.com/
Description: Modern, stylish theme for leasing website templates.
Version: 1.0
Text Domain: leaseawebsite
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Outfit:wght@500;700;800&display=swap');

:root {
    --primary-color: #00C551;
    --primary-color-hover: #00aa45;
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --bg-color: #ffffff;
    --bg-light: #f9fafb;
    --border-color: #e5e7eb;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    
    --container-max: 1200px;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

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

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Utilities */
.text-center { text-align: center; }
.mt-4 { margin-top: 1rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: repeat(1, 1fr); }
.grid-3 { grid-template-columns: repeat(1, 1fr); }

@media (min-width: 768px) {
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(0, 197, 81, 0.39);
}

.btn-primary:hover {
    background-color: var(--primary-color-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 197, 81, 0.4);
}

/* Header */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 50;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.site-logo img {
    max-height: 40px;
    width: auto;
}

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

.main-navigation a {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1.05rem;
}

.main-navigation a:hover, .main-navigation a.active {
    color: var(--primary-color);
}

/* Page content wrapper to account for fixed header */
.site-content {
    margin-top: 80px;
}

/* Hero Sections */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    overflow: hidden;
}

.hero-inner {
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.hero-content {
    flex: 1;
    z-index: 2;
    padding-right: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-content h1 span {
    color: var(--primary-color);
}

.hero-image {
    flex: 1;
    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.hero-image img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

@media (max-width: 900px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

/* Services / Info Section */
.info-section {
    background-color: white;
}

.info-inner {
    align-items: center;
}

.info-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.info-text p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.info-text ul {
    list-style: none;
    margin-top: 1.5rem;
}

.info-text li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.info-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.info-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* Our Sites Grid */
.sites-section {
    background-color: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.sites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.site-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 400px;
    box-shadow: var(--shadow-md);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.site-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.site-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}

.site-card:hover .site-card-bg {
    transform: scale(1.05);
}

.site-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    color: white;
}

.site-card h3 {
    margin: 0;
    font-size: 1.5rem;
    color: white;
}

/* Pricing Section */
.pricing-section {
    background-color: white;
}

.pricing-box {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.pricing-features {
    flex: 2;
}

.pricing-features h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.pricing-features ul {
    list-style: none;
}

.pricing-features li {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
}

.pricing-features li::before {
    content: '→';
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-weight: bold;
}

.pricing-rate {
    flex: 1;
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    border-top: 4px solid var(--primary-color);
}

.pricing-rate .price {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    font-family: 'Outfit', sans-serif;
}

.pricing-rate .period {
    color: var(--text-secondary);
    font-size: 1.25rem;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .pricing-box {
        flex-direction: column;
    }
    .pricing-rate {
        width: 100%;
    }
}

/* Contact Section */
.contact-section {
    background-color: var(--text-primary);
    color: white;
}

.contact-section .section-title {
    color: white;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 197, 81, 0.1);
}

.contact-form button[type="submit"] {
    width: 100%;
    padding: 1rem;
    font-size: 1.125rem;
}

/* Footer */
.site-footer {
    background-color: #000000;
    color: #9ca3af;
    padding: 2rem 0;
    text-align: center;
}

.site-footer p {
    margin: 0;
}

/* About Section Specifics */
.about-section {
    background-color: white;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
    color: var(--text-secondary);
}

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