/*
Theme Name: Skyline Construction
Theme URI: https://skyline-contractors.co.uk
Author: Skyline Theme
Author URI: https://skyline-contractors.co.uk
Description: A modern, professional theme for Skyline Construction Specialist featuring their construction and renovation services.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: skyline
*/

:root {
    --primary-color: #ff3333;
    --secondary-color: #333333;
    --light-gray: #f5f5f5;
    --text-color: #333333;
    --white: #ffffff;
}

/* Global Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    max-width: 200px;
}

/* Hero Section */
.hero {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 150px 0 80px;
    text-align: center;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-info {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
.site-footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 40px 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #ff0000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero h1 {
        font-size: 2em;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
} 