:root {
    --bg-page: #000000;
    --bg-card: #151515;
    --text-primary: #ffffff;
    --text-muted: #e0e0e0;
    --text-teal: #5ba399; /* Vibrant mint/teal from logo */
    --btn-orange: #d36600; 
    --btn-facebook-bg: #e5e7eb;
    --btn-facebook-text: #1d4ed8;
    
    --border-radius-lg: 24px;
    --border-radius-md: 12px;
    --border-radius-sm: 8px;
    
    --spacing-sm: 12px;
    --spacing-md: 24px;
    --spacing-lg: 40px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-page);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: var(--spacing-md);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
}

/* Typography */
h1 {
    color: var(--text-teal);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.5px;
}

h2 {
    color: var(--text-teal);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

p {
    margin-bottom: var(--spacing-md);
    font-size: 1.05rem;
    color: var(--text-muted);
}

.strong-text {
    font-weight: 600;
    color: var(--text-primary);
}

/* Hero Section */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: -8px 0px 20px -8px var(--text-teal);
}

.logo-container {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.logo-container .logo {
    max-width: 250px;
    height: auto;
    display: inline-block;
}

/* Hero Image Card Override */
.hero-image-container.card {
    padding: var(--spacing-sm);
    box-shadow: 8px 0px 20px -8px var(--text-teal);
    display: flex;
    flex-direction: column;
}

.hero-image {
    width: 100%;
    flex: 1;
    object-fit: cover;
    display: block;
    border-radius: var(--border-radius-md);
}

/* Buttons */
.button-group {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    border-radius: 0;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    background-color: #D55A00;
    color: #151515;
    transition: all 0.2s ease;
    box-shadow: 4px 4px 0 0 #79C0B8; /* Teal accent for orange button */
    position: relative;
    top: 0;
    left: 0;
}

.btn:hover {
    background-color: #79C0B8;
    color: #151515;
    box-shadow: 4px 4px 0 0 #FFEAA6; /* Off-white accent for teal button */
    transform: translate(-2px, -2px); /* Slight shift to enhance the 3D effect */
}

.btn-primary, .btn-secondary {
    /* Both buttons now share the same brand styling */
}

/* Sample Work Section */
.sample-work {
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px -15px var(--text-teal);
}

.section-header {
    display: flex;
    justify-content: flex-start;
    align-items: top;
    margin-bottom: var(--spacing-lg);
}

.section-header h2 {
    margin: 0;
}

.deebo-badge {
    display: block;
    height: 140px;
    width: auto;
    max-width: 400px;
    border-radius: var(--border-radius-sm);
    object-fit: contain;
    margin-left: 200px;
    align-self: center;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    align-items: start;
}

.sample-group {
    display: flex;
    gap: 12px;
    width: 100%;
    align-items: flex-start !important;
}

.img-wrapper {
    flex: 1;
    min-width: 0;
    height: fit-content;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    position: relative;
    background-color: #000000;
    border-top: 4px solid #79C0B8;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    padding: 8px;
}

.img-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.8);
}

.img-wrapper a {
    display: block;
    width: 100%;
    line-height: 0; /* Prevents any extra space below the image */
}

.grid-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.2s ease;
}

.img-wrapper:hover .grid-img {
    transform: scale(1.1);
}

/* Footer Section */
.site-footer.card {
    margin-top: var(--spacing-lg);
    border-top: 2px solid #79C0B8;
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
}

.footer-col {
    flex: 1;
}

.footer-col.left {
    text-align: left;
}

.footer-col.center {
    text-align: center;
}

.footer-col.center h3 {
    margin-bottom: 8px;
    color: var(--text-teal);
}

.footer-col.center p {
    margin-bottom: 4px;
    color: var(--text-muted);
}

.footer-col.right {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-logo {
    max-width: 140px;
    height: auto;
}

.footer-fb-icon {
    width: 32px;
    height: 32px;
    color: #ffffff;
    transition: color 0.2s ease;
    margin-top: 8px;
}

.footer-fb-icon:hover {
    color: #79C0B8;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #FFEAA6;
    font-size: 0.85rem;
    margin: 0;
}

/* Deebo Badge Section (Removed - moved to Sample Work) */

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        min-height: 350px;
    }
}

@media (max-width: 600px) {
    body {
        padding: 12px;
    }
    
    .container {
        gap: 12px;
    }

    .card {
        padding: 24px;
    }

    h1 {
        font-size: 1.8rem;
    }
    
    .button-group {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .site-footer {
        padding: var(--spacing-md);
    }
    .footer-logo {
    max-width: 80px;
    height: auto;
}

.footer-col-center h3 {
    font-size: 1rem;
}

.deebo-badge {
    height: 180px;
    max-width: 360px;
    margin-left: 20px;
}
    .footer-columns {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-lg);
    }

    .footer-col.left, .footer-col.right {
        text-align: center;
        align-items: center;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-md);
    }

    .deebo-badge {
        height: 80px;
        align-self: center;
    }
}
