 @font-face {
     font-family: 'Cairo'; 
    src: url('../fonts/Cairo-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
 }

:root {
    --primary-dark: #1a241e; /* Deep green from your footer */
    --accent-green: #b2ccbc; /* Sage green from your buttons */
    --bg-light: #d8e4db;    /* Light background from your image */
    --white: #ffffff;
    /* 2. Define the variable to match the name above */
    --font-main: 'Cairo', sans-serif;
}

body {
    margin: 10;
    font-family: var(--font-main);
    background-color: var(--bg-light);
    color: var(--primary-dark);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: var(--accent-green);
    padding: 10px 5%;
    border-bottom: 2px solid var(--bg-light);
    text-align: center;
}

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

.logo { height: 60px; }

.titles h1 { font-size: 1.8rem; margin: 0; }
.titles h2 { font-size: 1.5rem; color: #666; margin: 0; }

.coming-soon {
    text-align: center;
    padding: 20px 20px;
}

#slider-container {
    max-width: 800px;
    margin: 20px auto;
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.slide-item img {
    width: 90%; /* Slightly smaller to allow room for the tilt shadow */
    height: 450px; 
    margin: 20px auto;
    display: block;
    object-fit: cover; /* Use cover for the printed photo look so it fills the "paper" */
    object-position: center;

    /* The "Printed Photograph" Look */
    background-color: white;
    padding: 12px; /* This creates the white border/margin around the photo */
    border: 1px solid #ddd;
    
    /* 3D Lifting Effect */
    box-shadow: 
        0 10px 20px rgba(0,0,0,0.15), 
        0 6px 6px rgba(0,0,0,0.10);
    
    /* The 3D Tilt */
    transform: rotate(-1.5deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect to make it interactive */
.slide-item img:hover {
    transform: rotate(0deg) scale(1.03);
    box-shadow: 0 15px 30px rgba(0,0,0,0.25);
    cursor: pointer;
}



footer {
    background-color: var(--primary-dark);
    color: var(--white);
    text-align: center;
    padding: 20px;
    margin-top: auto;
}

/* Responsive Breakpoint */
@media (max-width: 768px) {
    .header-content { flex-direction: column; }
     .slide-item img { 
        height: 250px; 
        width: 85%;
        padding: 8px; /* Slightly smaller margin on mobile */
    }
}