@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&display=swap');

:root {
    --color-primary: #e61d2b; /* Vibrant Red */
    --color-primary-hover: #cc1a26;
    --color-secondary: #00a4b4; /* Teal/Cyan */
    --color-dark: #2c3e50; /* Footer / Dark text */
    --color-light: #ffffff;
    --color-bg: #f9f9f9;
    --color-text: #4a4a4a;
    
    --font-main: 'Nunito', sans-serif;
    --container-width: 1200px;
}

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

body {
    font-family: var(--font-main);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    color: var(--color-dark);
    font-weight: 800;
    line-height: 1.2;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s ease;
    border: none;
}

.btn-blue {
    background-color: var(--color-dark);
    color: white;
}

.btn-blue:hover {
    background-color: #1a252f;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background-color: white;
    color: var(--color-primary);
}

/* Header */
.header {
    background-color: var(--color-primary);
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
}

.nav-menu {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
}

.nav-link:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    background-size: cover;
    background-position: center top;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Slanted overlay effect at bottom of hero */
.hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -5%;
    width: 110%;
    height: 150px;
    background: white;
    transform: rotate(-3deg);
    z-index: 2;
}

.hero-tags {
    position: absolute;
    right: 5%;
    top: 20%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
    z-index: 3;
}

.tag {
    padding: 10px 20px;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    animation: slideInRight 0.8s ease-out forwards;
    opacity: 0;
    transform: translateX(50px);
}

.tag:nth-child(odd) {
    background-color: rgba(230, 29, 43, 0.9); /* Red */
}

.tag:nth-child(even) {
    background-color: rgba(0, 164, 180, 0.9); /* Teal */
}

/* Stagger animations */
.tag:nth-child(1) { animation-delay: 0.1s; }
.tag:nth-child(2) { animation-delay: 0.3s; }
.tag:nth-child(3) { animation-delay: 0.5s; }
.tag:nth-child(4) { animation-delay: 0.7s; }
.tag:nth-child(5) { animation-delay: 0.9s; }

@keyframes slideInRight {
    to { opacity: 1; transform: translateX(0); }
}

/* 3 Features Cards */
.features-cards {
    position: relative;
    z-index: 5;
    margin-top: -80px;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.feature-card {
    background-color: var(--color-primary);
    color: white;
    padding: 30px 20px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
    flex: 1;
    max-width: 300px;
    box-shadow: 0 10px 20px rgba(230, 29, 43, 0.3);
    transition: 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

/* Teal Banner */
.teal-banner {
    background-color: var(--color-secondary);
    color: white;
    padding: 50px 20px;
    text-align: center;
    margin-bottom: 60px;
}

.teal-banner h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 20px;
}

.teal-banner p {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

/* Three Photos Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.gallery-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-caption {
    background-color: var(--color-primary);
    color: white;
    padding: 20px;
    text-align: center;
    font-weight: 700;
}

/* Middle Text & Large Image */
.middle-quote {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-dark);
    margin: 60px 0;
    font-style: italic;
}

.large-image-section {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-bottom: 60px;
}

.floating-text-box {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 10px;
    max-width: 450px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.floating-text-box h3 {
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 15px;
}

/* Icons Section */
.icons-section {
    text-align: center;
    padding: 60px 0;
    background: white;
    margin-bottom: 60px;
}

.icons-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.icon-item {
    text-align: center;
}

.icon-circle {
    width: 150px;
    height: 150px;
    background-color: var(--color-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 2px dashed #ccc;
    font-size: 3rem;
    color: var(--color-primary);
    transition: 0.3s;
}

.icon-item:hover .icon-circle {
    background-color: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    transform: scale(1.05);
}

.icon-item p {
    font-weight: 700;
    color: var(--color-dark);
}

/* Split Section (Photos + Google) */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 80px;
}

.split-photo {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 350px;
}

.split-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-label {
    position: absolute;
    top: 0; left: 0; right: 0;
    background-color: var(--color-primary);
    color: white;
    padding: 10px;
    text-align: center;
    font-weight: 700;
}

.google-reviews {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* Overlays for Logos */
.logo-overlay {
    position: absolute;
    z-index: 10;
}

.hero-scrub-logo {
    top: 60%;
    left: 20%; /* Adjust based on image */
    width: 60px;
    transform: rotate(-10deg);
    mix-blend-mode: multiply;
    opacity: 0.9;
}

.wall-logo-1 {
    top: 30%;
    left: 70%;
    width: 120px;
    transform: perspective(600px) rotateY(-20deg);
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.2));
}

/* Footer */
.footer {
    background-color: var(--color-dark);
    color: white;
    position: relative;
    padding: 100px 0 30px;
    margin-top: 100px;
}

.footer::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -5%;
    width: 110%;
    height: 100px;
    background: var(--color-dark);
    transform: rotate(3deg);
    z-index: -1;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col p, .footer-col a {
    color: #aeb6bf;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.footer-col a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 992px) {
    .gallery-grid, .features-cards { flex-direction: column; align-items: center; }
    .features-cards { display: grid; grid-template-columns: 1fr; }
    .split-section, .footer-grid { grid-template-columns: 1fr; }
    .hero-tags { right: 5%; top: 10%; transform: scale(0.8); transform-origin: right; }
    .nav-menu { display: none; }
}
