
:root {
    --main-bg-color: #f1dbe3; 
    --text-color: #0b0808;    
    --card-bg-color: #ffffff; 
    --main-font: 'Helvetica Neue', Arial, sans-serif;
}

body {
    background-color: var(--main-bg-color);
    color: var(--text-color);
    font-family: var(--main-font);
    margin: 0;
    padding: 0;
}


.top-announcement {
    border-bottom: 1px solid rgba(0,0,0,0.1); 
    text-align: center;
    padding: 10px 0;
}

.top-announcement p {
    font-size: 0.8rem;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.7; 
}


header {
    display: flex;
    flex-direction: column; 
    align-items: center;    
    padding: 40px 20px;
}


.brand-logo h1 {
    font-family: 'Comic Sans MS', 'Chalkboard SE', sans-serif; 
    font-size: 3rem;
    color: #d88ea4; 
    margin: 0 0 30px 0; 
    text-shadow: 2px 2px 0px #fff; 
}


nav ul {
    display: flex;      
    list-style: none;    
    gap: 40px;           
    padding: 0;
    margin: 0;
}

nav a {
    text-decoration: none;      
    color: var(--text-color);   
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;  
    transition: color 0.3s;     
}

nav a:hover {
    color: #666; 
    border-bottom: 2px solid #000; 
}


.hero-split {
    display: flex;        
    align-items: center;  
    justify-content: center; 
    padding: 60px 10%;    
    gap: 80px;            
    max-width: 1200px;    
    margin: 0 auto;       
}


.visual-box, .text-box {
    flex: 1; 
}


.visual-box img {
    width: 100%;
    max-width: 450px;    
    border-radius: 20px;  
    box-shadow: 10px 10px 0px rgba(0,0,0,0.1); 
}


.text-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.text-box p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
}


.cta-btn {
    background-color: var(--text-color);
    color: #fff;
    padding: 15px 40px;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.cta-btn:hover {
    transform: scale(1.05); 
}

.project-grid {
    display: flex;
    gap: 30px; 
    flex-wrap: wrap; 
    margin-top: 30px;
}


.project-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    flex: 1; 
    min-width: 250px; 
    text-align: center; 
}

.project-card h4 {
    margin-top: 0;
    color: var(--text-color);
}


.pdf-btn {
    display: inline-block; 
    padding: 10px 25px;    
    font-size: 0.9rem;     
    margin-top: 15px;     
    text-decoration: none; 
}

.card-thumb {
    width: 100%;        
    
  
    height: auto;        
    
    display: block;      
    
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid #eee;
}


.project-card:hover .card-thumb {
    opacity: 0.9;
    transform: scale(1.02); 
    transition: all 0.3s ease;
}

.image-link {
    display: block; 
    cursor: pointer; 
}


.image-link:hover .card-thumb {
    opacity: 0.8; 
    transform: scale(1.03); 
    transition: all 0.3s ease; 
    
    
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
