/* Hero Section Styles */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 500px;
    background: url('../images/hero-bg-small.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding-top: 60px;
    z-index: 1;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-section .container {
    position: relative;
    z-index: 3;
}

.hero-section .display-3 {
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section .lead {
    font-size: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .hero-section {
        background-image: url('../images/hero-bg-medium.jpg');
    }
}

/* Large devices (desktops, 1200px and up) */
@media (min-width: 1200px) {
    .hero-section {
        background-image: url('../images/hero-bg.jpg');
    }
}

/* Card Styles */
.card {
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

/* Primary Color Theme */
:root {
    --primary-color: #2d5bff;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #1a46e5;
    border-color: #1a46e5;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
    }
} 

.goal-card {
    transition: transform 0.3s ease;
    border-left: 4px solid #0d6efd;
}

.goal-card:hover {
    transform: translateY(-5px);
}

.goal-card ul li {
    position: relative;
    padding-left: 5px;
} 

/* Contact Page Styles */
.contact-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.contact-form-card {
    border: none;
    box-shadow: none;
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

/* Form Styles */
.form-control {
    border: 1px solid #dee2e6;
    padding: 0.75rem;
    border-radius: 5px;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(45, 91, 255, 0.25);
}

.form-label {
    font-weight: 500;
    color: #495057;
}

/* Ensure proper spacing for fixed navbar */
body {
    padding-top: 76px; /* Adjust this value based on your navbar height */
}

.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1030;
}

/* Button hover effect */
.btn-primary {
    padding: 0.75rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(45, 91, 255, 0.2);
} 

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(45, 91, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: white;
    z-index: 1040;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner .btn-primary {
    background-color: white;
    border-color: white;
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
}

.cookie-banner .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    border-color: white;
    color: var(--primary-color);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.cookie-content p {
    margin: 0;
    padding-right: 1rem;
}

.cookie-banner a {
    color: white;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
} 

/* Contact Info Cards */
.contact-info-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease;
    padding: 1.5rem;
    word-wrap: break-word; /* Ensures long text wraps properly */
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-info-card a {
    display: inline-block;
    word-break: break-all; /* Forces break on any character */
    max-width: 100%; /* Ensures the text stays within the card */
}

/* Adjust spacing for smaller screens */
@media (max-width: 768px) {
    .contact-info-card {
        padding: 1rem;
    }
    
    .contact-info-card h3 {
        font-size: 1.1rem;
    }
    
    .contact-info-card p, 
    .contact-info-card a {
        font-size: 0.9rem;
    }
}

.feature-item {
    padding: 1rem;
    border-radius: 8px;
    background: #f8f9fa;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
    background: #f1f3f5;
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
} 

/* Add these styles for proper page and footer positioning */
html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 76px; /* Keep existing navbar padding */
}

main {
    flex: 1 0 auto; /* This makes the main content expand to fill available space */
}

footer {
    flex-shrink: 0; /* Prevents footer from shrinking */
}

/* Update media query for landscape mode */
@media (max-height: 600px) and (orientation: landscape) {
    body {
        padding-bottom: 20px; /* Add some padding at the bottom for landscape */
    }
    
    .hero-section {
        min-height: calc(100vh - 76px); /* Adjust for navbar height */
    }
} 

/* Add to your existing hero section styles */
.hero-content {
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(5px); /* Adds a frosted glass effect */
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-block;
    max-width: 90%;
    margin: 0 auto;
}

.hero-content .display-3 {
    margin-bottom: 1rem;
}

/* Adjust for mobile */
@media (max-width: 768px) {
    .hero-content {
        padding: 1.5rem;
    }
    
    .hero-content .display-3 {
        font-size: 2.5rem;
    }
    
    .hero-content .lead {
        font-size: 1.2rem;
    }
} 