/*
Theme Name: Adelaide Tiling Theme
Theme URI: https://yourdomain.com
Author: Iimagine Global Web
Author URI: https://iimagineglobalweb.com
Description: Custom WordPress theme for Adelaide Tiling website
Version: 1.0
*/

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

body {
    font-family: Arial, sans-serif;
    background: #ffffff;
    color: #111111;
    line-height: 1.6;
}

/* Header */
.site-header {
    background: #000;
    color: #fff;
    padding: 20px 40px;
}

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

.site-header ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.site-header a {
    color: white;
    text-decoration: none;
}

/* Hero */
.hero-section {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 60px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
}

/* Services */
.services-section {
    padding: 80px 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.service-card {
    padding: 30px;
    background: #f8f8f8;
    transition: 0.3s ease;
}

.service-card:nth-child(1):hover {
    background: #d4af37;
    color: white;
}

.service-card:nth-child(2):hover {
    background: #2563eb;
    color: white;
}

.service-card:nth-child(3):hover {
    background: #16a34a;
    color: white;
}

.service-card:nth-child(4):hover {
    background: #dc2626;
    color: white;
}

.service-card:nth-child(5):hover {
    background: #7c3aed;
    color: white;
}

.service-card:nth-child(6):hover {
    background: #ea580c;
    color: white;
}

/* Gallery */
.gallery-section {
    padding: 80px 40px;
}

/* Footer */
.site-footer {
    background: #000;
    color: white;
    text-align: center;
    padding: 30px;
}