/* Reset & Base Styles */
:root {
    --primary-color: #a82e1e; /* Dark Red/Brown from button */
    --accent-color: #e6b356; /* Gold/Yellow from text */
    --dark-bg: #1a1a1a;
    --light-bg: #ffffff;
    --text-color: #333333;
    --text-light: #cccccc;
    --font-main: 'Arial', sans-serif; /* Fallback */
}

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

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f9f9f9;
}

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

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
.site-header {
    background-color: transparent;
    color: #fff;
    padding: 20px 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 28px;
    font-weight: 400; /* Looks lighter in screenshot */
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Arial', sans-serif; /* Or a specific font if known */
}

.main-nav ul {
    display: flex;
    gap: 20px;
    align-items: center;
}

.main-nav a {
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
}

.main-nav a.active {
    color: #fff;
    border-bottom: 2px solid #fff;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: #922915; /* Darker red from screenshot */
    color: #fff;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: capitalize; /* "View Photos" is Title Case */
    font-size: 16px;
    border: 1px solid #fff; /* White border from screenshot */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    background-color: #a3321a;
    text-decoration: none;
}

.btn-signin {
    color: #fff;
}

/* Hero Section */
.hero-section {
    background-color: #222; /* Fallback */
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../images/banner5.jpg');
    background-size: cover;
    background-position: center top;
    height: 700px; /* Looks taller */
    display: flex;
    align-items: center;
    color: #fff;
    text-align: left;
    padding-top: 0; /* Centered content */
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 30px;
    max-width: 600px;
}

/* Features Section */
.features-section {
    padding: 60px 0;
    background-color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.feature-item .icon-box {
    font-size: 40px;
    color: #333;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.feature-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Profiles Section */
.profiles-section {
    padding: 60px 0;
    background-color: #fff;
}

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

.section-header h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 15px;
}

.divider {
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 0 auto;
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
}

.profile-card {
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
}

.profile-img {
    height: 380px;
    background-color: #eee;
    overflow: hidden;
}

.profile-img a {
    display: block;
    width: 100%;
    height: 100%;
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.profile-info {
    padding: 20px;
}

.profile-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #333;
}

.profile-info p {
    font-size: 14px;
    color: #777;
}

/* SEO Text Section */
.seo-text-section {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}

.seo-text-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.seo-text-section .content-wrapper {
    max-width: 900px;
    margin: 30px auto 0;
    text-align: left;
}

.seo-text-section p {
    margin-bottom: 20px;
    color: #555;
}

.highlight {
    color: #d35400; /* Orange highlight */
    font-weight: bold;
}

/* Why Choose Section */
.why-choose-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.why-choose-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
}

.two-column-layout {
    display: flex;
    margin-top: 40px;
    gap: 40px;
    align-items: flex-start;
}

.column-image {
    flex: 1;
}

.img-placeholder-large {
    width: 100%;
    height: 400px;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
}

.column-content {
    flex: 1;
    background: #fff;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.btn-block {
    display: block;
    text-align: center;
    margin-top: 20px;
}

/* Footer */
.site-footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.footer-col a {
    color: #ccc;
    font-size: 14px;
}

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

.social-icons a {
    margin-right: 15px;
    font-size: 16px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .two-column-layout {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .profiles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .profile-img {
        height: 300px;
    }
}
