/*
Theme Name: BestGroup Theme
Theme URI: 
Author: Artic Designs
Author URI: https://articdesigns.se
Description: A custom WordPress theme for BestGroup.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bestgroup
Tags: custom, responsive, modern
*/


/* ---------------------------------- */
/* BASE STYLES */
/* ---------------------------------- */
body {
    background-color: #D2C1B6; /* Light background for contrast */
    color: black;
    font-family: Arial, Helvetica, sans-serif; /* Readable body font */
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Headings use the premium font */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #1B3C53; /* Dark Primary Accent */
}

.brand-highlight {
    color: #D2C1B6; /* Light Accent for contrast on dark background */
}

/* ---------------------------------- */
/* CTA BUTTONS */
/* ---------------------------------- */
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s, color 0.3s;
    border: 2px solid transparent;
}

.cta-primary {
    background-color: #1B3C53; /* Dark Accent Fill */
    color: #D2C1B6; /* Light Accent Text */
    border-color: #1B3C53;
}

.cta-primary:hover {
    background-color: #234C6A; /* Slightly lighter hover */
    color: white;
}

.cta-secondary {
    background-color: transparent; /* Transparent Fill */
    color: #D2C1B6; /* Light Accent Text */
    border-color: #D2C1B6; /* Light Accent Border */
}

.cta-secondary:hover {
    background-color: #D2C1B6;
    color: #1B3C53; /* Dark Accent Text on hover */
}

/* ---------------------------------- */
/* HERO SECTION */
/* ---------------------------------- */
.hero-section {
    position: relative;
    height: 100vh; /* Full screen height */
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    text-align: center;
}

/* --- Revised Styles for Hero Section Scroll Down Arrow --- */

/* 1. Make the hero section a positioning context for the arrow */
.hero-section {
    position: relative; /* Essential for positioning the arrow absolutely within it */
    overflow: hidden; 
    padding-bottom: 80px;
}

/* 2. Style and position the scroll down arrow */
.scroll-down-arrow {
    position: absolute; 
    bottom: 50px; /* Moved up slightly from 30px to 50px */
    left: 50%; 
    transform: translateX(-50%); /* Keeps it centered */
    
    /* Appearance */
    color: #fff; /* White color */
    font-size: 2.5rem; 
    line-height: 1;
    z-index: 10; 
    cursor: pointer;
    text-decoration: none; 
    
    /* Removed the 'animation: bounce 2s infinite;' line */
    transition: color 0.3s ease; /* Keep the smooth hover transition */
}

/* 3. Add a hover effect with a beige color */
.scroll-down-arrow:hover {
    color: #F5F5DC; /* Light Beige color on hover */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(27, 60, 83, 0.7); /* Dark Primary Accent with 70% opacity */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
}

.hero-title {
    font-size: 4em;
    margin-bottom: 0.2em;
    color: white; /* White text for maximum contrast */
}

.hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 2em;
    color: #D2C1B6; /* Light accent for secondary text */
}

.hero-cta-group a {
    margin: 0 10px;
}

/* ---------------------------------- */
/* SERVICES PREVIEW SECTION */
/* ---------------------------------- */
.services-preview-section {
    padding: 80px 0;
    background-color: white; /* Clean white background */
}

.service-card-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns: Image and Content */
    gap: 40px;
    align-items: center;
    padding: 40px;
    /* Subtle border to frame the content */
    border: 1px solid #456882; 
}

.service-image-side {
    overflow: hidden;
}

.service-card-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
}

/* Hover effect for a little polish */
.service-card-container:hover .service-card-image {
    transform: scale(1.05);
}

.service-content-side {
    padding-right: 20px;
}

.service-title {
    font-size: 2.5em;
    margin-bottom: 0.1em;
    color: #1B3C53;
}

.service-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 1.2em;
    font-style: italic;
    color: #234C6A; /* Secondary Accent */
    margin-bottom: 1.5em;
}

.service-description {
    margin-bottom: 2em;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2em;
}

.service-features-list li {
    padding: 8px 0;
    border-bottom: 1px solid #D2C1B6;
    color: black;
    position: relative;
    padding-left: 20px;
}

/* Custom list marker (a subtle touch of color) */
.service-features-list li::before {
    content: "•";
    color: #456882; /* Detail color */
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
    left: 0;
}

.service-cta-button {
    /* Override for services section to stand out on a light background */
    background-color: #234C6A;
    color: #D2C1B6;
    border-color: #234C6A;
}

.service-cta-button:hover {
    background-color: #1B3C53;
    color: white;
    border-color: #1B3C53;
}

