/* Custom styles for Brisk website */

@import url('https://fonts.googleapis.com/css2?family=Fira+Sans+Extra+Condensed:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #000000;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --accent-color: #007bff;
}

body {
    font-family: 'Fira Sans Extra Condensed', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navigation */
.navbar {
    background: white;
    padding: 1rem 0;
    border-bottom: 2px solid #000;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    align-items: center;
}

.nav-menu li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #000;
}

.cta-button {
    background: #000;
    color: white !important;
    padding: 0.75rem 1.5rem;
    border: 2px solid #000;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #333;
    border-color: #333;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 400px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content h1 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0;
    opacity: 0.9;
}

/* Features Section */
.features-section {
    padding: 80px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.features-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    border: 2px solid #000;
    background: white;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Square Design Elements */
.square-frame {
    position: relative;
    padding: 20px;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.square-frame::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 20px;
    height: 20px;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 0;
}

.square-frame::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 20px;
    height: 20px;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 0;
}

.square-card {
    border-radius: 0 !important;
    border: 2px solid #000 !important;
    background-color: #fff !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.square-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
    border-color: var(--primary-color);
}

.square-icon {
    width: 60px;
    height: 60px;
    background: white;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
    border-radius: 0;
    margin: 0 auto;
}

.square-avatar {
    width: 40px;
    height: 40px;
    background: white;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
    border-radius: 0;
}

/* Cards */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 0;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
}

/* Buttons */
.btn {
    border-radius: 0;
    font-weight: 500;
    padding: 12px 24px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #333333;
    border-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-warning {
    background-color: var(--warning-color);
    border-color: var(--warning-color);
    color: var(--dark-color);
}

.btn-warning:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    color: var(--dark-color);
    transform: translateY(-2px);
}

.btn-outline-light {
    border-color: white;
    color: white;
}

.btn-outline-light:hover {
    background-color: white;
    border-color: white;
    color: var(--dark-color);
    transform: translateY(-2px);
}

/* Icons */
.fa-bolt {
    color: var(--primary-color);
}

/* Sections */
section {
    padding: 80px 0;
}

.bg-light {
    background-color: #f8f9fa !important;
}

/* Typography */
.display-4, .display-5, .display-6 {
    font-weight: 700;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
}

/* Testimonials */
.testimonial-card {
    border: 2px solid #000;
    background-color: #fff;
    border-radius: 0;
    padding: 2rem;
    margin-bottom: 2rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background-color: #000;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
        min-height: 300px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .demo-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .demo-item {
        flex-direction: column;
        text-align: center;
    }
    
    .demo-icon {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Footer */
footer {
    margin-top: auto;
    border-top: 2px solid #000;
}

footer img {
    height: 35px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* Custom utility classes */
.text-primary {
    color: #000 !important;
}

.bg-primary {
    background-color: #000 !important;
}

/* Image styling */
img {
    max-width: 100%;
    height: auto;
}

/* List styling */
.list-unstyled li {
    padding: 8px 0;
}

/* Shadow utilities */
.shadow-sm {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
}

.shadow-lg {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
}

/* Placeholder images */
img[src*="dashboard-preview.png"],
img[src*="features-preview.png"],
img[src*="dashboard-screenshot.png"],
img[src*="mobile-app-preview.png"],
img[src*="team-working.jpg"] {
    background: linear-gradient(45deg, #f0f0f0 25%, transparent 25%), 
                linear-gradient(-45deg, #f0f0f0 25%, transparent 25%), 
                linear-gradient(45deg, transparent 75%, #f0f0f0 75%), 
                linear-gradient(-45deg, transparent 75%, #f0f0f0 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1.2rem;
    font-weight: 500;
}

img[src*="dashboard-preview.png"]::after {
    content: "Dashboard Screenshot";
}

img[src*="features-preview.png"]::after {
    content: "Features Screenshot";
}

img[src*="dashboard-screenshot.png"]::after {
    content: "Dashboard Overview";
}

img[src*="mobile-app-preview.png"]::after {
    content: "Mobile App Preview";
}

img[src*="team-working.jpg"]::after {
    content: "Team Working";
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 2px solid #000;
    padding: 1rem 0;
    z-index: 1050;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    border: 2px solid #000;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-radius: 0;
}

.cookie-btn:hover {
    background-color: #000;
    color: #fff;
    text-decoration: none;
}

.cookie-btn-accept {
    background-color: #000;
    color: #fff;
}

.cookie-btn-accept:hover {
    background-color: #333;
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .pricing-card.featured {
        transform: none;
        margin-bottom: 2rem;
    }
}

/* Utility classes */
.text-primary {
    color: #000 !important;
}

.bg-primary {
    background-color: #000 !important;
}

.btn-primary {
    background-color: #000 !important;
    border-color: #000 !important;
    color: #fff !important;
}

.btn-primary:hover {
    background-color: #333 !important;
    border-color: #333 !important;
}

/* Logo adjustments */
.navbar-brand img {
    height: 45px;
    width: auto;
}

/* Square elements for testimonials */
.testimonial-avatar {
    width: 60px;
    height: 60px;
    background-color: #000;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Placeholder images */
.placeholder-image {
    width: 100%;
    height: 200px;
    background-color: #f8f9fa;
    border: 2px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-style: italic;
}

/* Pricing calculator */
.pricing-calculator {
    background-color: #f8f9fa;
    border: 2px solid #000;
    padding: 2rem;
    margin-top: 2rem;
}

.calculator-result {
    background-color: #000;
    color: #fff;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    margin-top: 1rem;
}

/* Feature Icons */
.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 2px solid #000000;
    background-color: #ffffff;
}

/* Demo Section */
.demo-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.demo-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.demo-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.demo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #000000;
    background-color: #ffffff;
    flex-shrink: 0;
}

.demo-item h3 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.demo-item p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.demo-image {
    text-align: center;
}

.demo-image img {
    max-width: 100%;
    height: auto;
    border: 2px solid #000000;
    background-color: #ffffff;
}

/* Advanced Features */
.advanced-features {
    padding: 80px 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .demo-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .demo-item {
        flex-direction: column;
        text-align: center;
    }
    
    .demo-icon {
        align-self: center;
    }
} 