/* General styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #00263d;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-header nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-header nav ul li {
    margin: 0 1rem;
}

.nav-header nav ul li a {
    color: white;
    text-decoration: none;
    padding: 0.5rem;
    transition: background 0.3s;
}

.nav-header nav ul li a:hover {
    background-color: #1a73e8;
    border-radius: 4px;
}

.landing-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: linear-gradient(135deg, #1a73e8, #00800fc4);
    color: white;
    text-align: center;
}

section {
    padding: 4rem 1rem;
    text-align: center;
}

h2 {
    color: #1a73e8;
}
  
li {
    list-style-type: none;
}

footer {
    padding: 1rem;
    background-color: #f4f4f4;
    text-align: center;
}

.logo-container {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container svg {
    max-width: 200px; /* Adjust the size of the SVG if needed */
    height: auto;
}

.hosting-text {
    font-family: 'Arial Black', sans-serif;
    font-size: 40px;
    fill: #ff6f61; /* Matches vivid gradient orange from landing-page */
}

.at-sign {
    font-family: 'Arial Black', sans-serif;
    font-size: 40px;
    fill: #00263d; /* Matches dark blue from nav-header */
    dominant-baseline: middle;
    text-anchor: start;
}

/* --- Review Box Styles (Add to style.css) --- */

.review-card {
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    color: white;
    overflow: hidden;
    font-family: sans-serif;
}

.review-card:hover {
    /* Subtle lift and color change on hover */
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.15);
    border-color: #1a73e8; /* Vibrant blue border on hover */
}

.review-text {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.5;
    /* Use the dark blue/teal for a strong quote border */
    border-left: 4px solid #00263d; 
    padding-left: 1rem;
    font-style: italic;
}

.review-source {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.5rem;
    border-top: 1px dashed #f4f4f4; /* Subtle separator */
}

.source-name {
    font-weight: bold;
    color: #1a73e8; /* Use the vibrant blue for the source name */
}

.source-link {
    color: #1a73e8; /* Use the dark blue/teal for the link */
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.source-link:hover {
    color: #ff6f61; /* Use the vivid orange/red from your logo for a high-contrast hover */
    text-decoration: underline;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./assets/img/at-tasks-banner.png');
    background-size: cover;
    background-position: center;
    opacity: 0.7; /* Adjust opacity here */
    z-index: 1;
}

.content {
position: relative;
z-index: 2;
padding: 20px;
text-shadow: 0 0 10px rgba(0,0,0,0.7); /* Improves readability */
}

/* Table styles */
#info table {
    border-collapse: separate;
    border-spacing: 10px; /* adds spacing between cells */
    width: 100%;
}

#info th, #info td {
    padding: 12px 16px; /* adds internal spacing */
    border: 1px solid #ccc;
}

#info th:nth-child(1),
#info td:nth-child(1) {
    background-color: #eef6ff; /* light gray */
}

#info th:nth-child(2),
#info td:nth-child(2) {
    background-color: #f9f9f9; /* soft blue */
}

#info th:nth-child(3),
#info td:nth-child(3) {
    background-color: #eef6ff; /* pale yellow */
}
