/* Custom CSS for Shopfronts.uk - Distinct and Modern Design */

/* Define a new, distinct colour palette */
:root {
    --color-primary-dark: #2F4F4F; /* Dark Slate Gray / Deep Teal - strong, professional */
    --color-accent: #66CDAA; /* Medium Aquamarine - fresh, vibrant accent */
    --color-light-background: #F5F8F8; /* Very Light Blue-Grey - clean, airy background */
    --color-white: #FFFFFF; /* Pure White - for main backgrounds and elements */
    --color-text-dark: #36454F; /* Charcoal Grey - for high readability of main text */
    --color-text-subtle: #A9A9A9; /* Dark Grey - for secondary text/borders */
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--color-text-dark);
    background-color: var(--color-white);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header Styling */
header {
    background-color: var(--color-white);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08); /* More prominent, softer shadow */
    padding: 1.5rem 2.5rem; /* Increased padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: none; /* Removed accent border for a cleaner look */
}

@media (min-width: 768px) {
    header {
        flex-direction: row;
        padding: 1.5rem 5rem; /* Increased padding */
    }
}

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 1rem; /* More space below logo on mobile */
}

@media (min-width: 768px) {
    .site-logo {
        margin-bottom: 0;
    }
}

.logo-icon {
    height: 2.5rem; /* Slightly larger icon */
    width: 2.5rem;
    margin-right: 0.8rem;
    color: var(--color-accent); /* Accent color for the icon */
    transition: transform 0.3s ease;
}

.site-logo:hover .logo-icon {
    transform: rotate(5deg); /* Subtle rotate on hover */
}

.logo-text {
    font-size: 2.6rem; /* Larger font for logo text */
    font-weight: 900; /* Extra bold */
    color: var(--color-primary-dark);
    letter-spacing: -0.07em; /* Tighter letter spacing */
}

.logo-text span {
    font-weight: 600; /* Bolder weight for .uk */
    color: var(--color-text-subtle); /* Different color for .uk */
}

.header-contact-info {
    text-align: center;
}

@media (min-width: 768px) {
    .header-contact-info {
        text-align: right;
    }
}

.header-phone-label {
    font-size: 1rem; /* Larger label */
    color: var(--color-text-subtle);
    margin-bottom: 0.3rem;
}

.header-phone-number {
    font-size: 2.2rem; /* Larger phone number */
    font-weight: 800; /* Bolder */
    color: var(--color-primary-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.header-phone-number:hover {
    color: var(--color-accent);
}

/* Hero Section */
.hero-section {
    background-color: var(--color-light-background);
    padding: 7rem 1.5rem; /* Increased vertical padding */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .hero-section {
        padding: 9rem 5rem;
    }
}

.hero-heading {
    color: var(--color-primary-dark);
    font-size: 3.5rem; /* Significantly larger heading */
    font-weight: 900; /* Extra bold */
    line-height: 1.1; /* Tighter line height */
    margin-bottom: 2rem;
    max-width: 60rem; /* Wider max-width */
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero-heading {
        font-size: 5.5rem; /* Even larger on desktop */
    }
}

.hero-subheading {
    font-size: 1.3rem; /* Larger subheading */
    color: var(--color-text-dark);
    margin-bottom: 3.5rem;
    max-width: 55rem; /* Wider max-width */
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero-subheading {
        font-size: 1.6rem;
    }
}

.btn-primary {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    padding: 1.2rem 2.8rem; /* Larger padding */
    border-radius: 0.5rem; /* Slightly less rounded for a modern edge */
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25); /* Stronger shadow */
}

.btn-primary:hover {
    background-color: var(--color-accent);
    transform: translateY(-7px); /* More pronounced lift */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35); /* Darker, larger shadow on hover */
}

.hero-image {
    width: 100%;
    max-width: 70rem; /* Larger image */
    height: auto;
    object-fit: cover;
    border-radius: 0.8rem; /* Less rounded corners for a modern feel */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3); /* Stronger, deeper shadow */
    margin-top: 5rem; /* More space above image */
}

/* Section Common Styling */
section {
    padding: 6rem 1.5rem; /* Consistent, increased padding */
}

@media (min-width: 768px) {
    section {
        padding: 8rem 5rem;
    }
}

.section-heading {
    text-align: center;
    color: var(--color-primary-dark);
    font-size: 2.8rem; /* Larger section headings */
    font-weight: 800;
    margin-bottom: 4rem; /* More space below heading */
}

@media (min-width: 768px) {
    .section-heading {
        font-size: 4rem;
    }
}

/* Grids - Services, Why Choose Us */
.services-grid, .why-choose-us-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem; /* Increased gap */
    max-width: 85rem; /* Wider grid */
    margin: 0 auto;
}

@media (min-width: 640px) {
    .services-grid, .why-choose-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Card Styling - Service, Reason, Testimonial */
.service-card, .reason-card, .testimonial-card-item {
    background-color: var(--color-white);
    border-radius: 0.8rem; /* Less rounded cards */
    padding: 3rem; /* More padding inside cards */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12); /* Stronger, crisper shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--color-light-background); /* Subtle border */
    text-align: left; /* Default text alignment for cards */
}

.reason-card {
    text-align: center; /* Override for reason cards */
}

.service-card:hover, .reason-card:hover {
    transform: translateY(-12px); /* More pronounced lift on hover */
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2); /* Darker, larger shadow on hover */
}

.service-card h3, .reason-card h3 {
    font-size: 1.9rem; /* Larger card headings */
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 1.2rem;
}

.service-card p, .reason-card p {
    font-size: 1.1rem; /* Slightly larger paragraph text */
    color: var(--color-text-dark);
}

/* Testimonials Section Specifics */
.testimonials-section {
    background-color: var(--color-light-background); /* Testimonials section background */
}

.testimonials-grid {
    max-width: 70rem; /* Wider testimonials grid */
}

.testimonial-card-item {
    background-color: var(--color-white); /* White background for testimonial cards */
    font-style: italic;
    color: var(--color-text-dark);
}

.testimonial-card-item p:last-child {
    font-style: normal;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-top: 1.5rem;
    text-align: right;
    font-size: 1.15rem;
}

/* Call to Action Section */
.cta-section {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    padding: 7rem 1.5rem; /* More padding */
    text-align: center;
}

.cta-heading {
    font-size: 3.2rem; /* Larger CTA heading */
    font-weight: 800;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .cta-heading {
        font-size: 4.5rem;
    }
}

.cta-subheading {
    font-size: 1.3rem; /* Larger CTA subheading */
    margin-bottom: 3.5rem;
    max-width: 55rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-phone-number {
    font-size: 2.8rem; /* Larger phone number in CTA */
    font-weight: 900;
    color: var(--color-accent); /* Highlight phone number with accent color */
    text-decoration: none;
    display: inline-block;
    margin-top: 2.5rem;
    transition: color 0.3s ease;
}

.cta-phone-number:hover {
    color: var(--color-white);
}

/* Footer Styling */
footer {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    padding: 3.5rem 1.5rem; /* More padding */
    text-align: center;
    font-size: 1rem; /* Larger font */
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2.5rem; /* Increased gap */
    margin-top: 1.8rem;
}

.footer-nav a {
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--color-text-subtle);
}
