/* --- Global & Reset Styles --- */
body {
    font-family: Tahoma, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #C4E3EC; /* Light Blue background */
    color: #2F606E; /* Darker Blue for primary text */
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    /* Add padding-top to the container equal to the height of the fixed navbar (approx 55px) */
    padding-top: 55px; 
}

a {
    color: #2F606E; /* Darker Blue standard link */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    color: #FF7D69; /* Orange hover for text links */
}

/* --- Header & Navigation --- */
header {
    text-align: center;
    padding: 30px 20px;
    border-bottom: 5px solid #2F606E;
    background-color: #fff;
}

header h1 {
    font-size: 3em;
    margin: 0 0 5px 0;
    color: #2F606E;
}

header h2 {
    font-size: 1.2em;
    font-weight: normal;
    margin: 0 0 15px 0;
}

/* --- Navigation: Changed to FIXED position --- */
nav {
    /* **KEY CHANGE:** position: fixed will keep it visible at the top */
    position: fixed; 
    top: 0;
    left: 0;
    right: 0; /* Ensure it spans the full width of the screen */
    width: 100%; /* Important for fixed positioning */
    z-index: 1000;

    background-color: #2F606E; /* Darker Blue navigation background */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Add a small shadow to lift it off the content */
}

nav ul {
    list-style: none;
    padding: 10px 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav ul li {
    margin: 5px 20px;
}

nav ul li a {
    color: #C4E3EC; /* Light Blue for nav text */
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s;
    padding: 5px 10px;
    border-radius: 4px;
}

nav ul li a:hover, nav ul li a.current-page {
    color: #2F606E; /* Darker Blue on hover */
    background-color: #FF7D69; /* Orange hover background */
    text-decoration: none;
}

/* Hamburger Menu Button (Hidden by default on desktop) */
.hamburger-button {
    display: none; /* Hide on desktop */
    background: none;
    border: none;
    color: #C4E3EC; /* Light Blue icon colour */
    font-size: 1.5em;
    cursor: pointer;
    padding: 10px 20px;
    line-height: 1;
}

/* --- Mobile Navigation Title (Hidden by default) --- */
.mobile-nav-title {
    display: none; 
}


/* --- Section Styling --- */
section {
    padding: 60px 20px;
    border-bottom: 1px solid #8FC9D9; /* Mid Blue separator */
}

section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    position: relative;
    color: #2F606E;
}

section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #FF7D69; /* Orange underline */
    margin: 10px auto 0;
}

/* --- About Me Layout --- */
.about-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap; 
    color: #2F606E;
}

.about-content img {
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    border: 3px solid #8FC9D9; /* Mid Blue border */
}

.about-content div {
    flex: 1;
    min-width: 300px;
}

/* --- Grid Layouts (Content) --- */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.item {
    padding: 15px;
    text-align: center;
    border: 1px solid #8FC9D9;
    background-color: #F8F8F8; /* Slight off-white background for items */
    transition: transform 0.2s, box-shadow 0.2s;
}

.item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(47, 96, 110, 0.2); /* Shadow with Darker Blue tint */
}

.item img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px;
    border-radius: 4px;
}

.item h3 {
    margin: 5px 0;
    font-size: 1.2em;
    color: #2F606E;
}

.item p {
    margin: 5px 0;
    font-size: 0.95em;
    color: #8FC9D9; /* Mid Blue for secondary text/details */
}

/* --- Button Styling (for SHOP/CTA links) --- */
.button-cta {
    display: inline-block;
    background-color: #FF7D69; /* Orange button colour */
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.button-cta:hover {
    background-color: #E66A59;
    text-decoration: none;
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 30px 20px;
    background-color: #2F606E; /* Darker Blue footer background */
    color: #C4E3EC; /* Light Blue footer text */
    font-size: 0.9em;
}

footer a {
    color: #FF7D69; /* Orange footer links */
    margin: 0 10px;
    text-decoration: none;
}

footer a:hover {
    color: #fff;
    text-decoration: underline;
}

/* --- Responsive Adjustments (UPDATED for Hamburger Menu) --- */
@media (max-width: 768px) {
    /* Content adjustments for smaller screens */
    .about-content {
        flex-direction: column;
        align-items: center;
    }
    .about-content img {
        max-width: 100%;
    }
    
    /* Show the hamburger button on mobile */
    .hamburger-button {
        display: block;
        padding: 15px 20px; 
    }

    /* Adjust nav layout for mobile */
    nav {
        display: flex;
        justify-content: space-between; 
        align-items: center;
        padding: 0;
        min-height: 50px; 
        position: fixed; /* Keep fixed for mobile too */
        left: 0;
        right: 0;
        /* FIX: Removed position: relative; which was breaking the fixed position. */
    }
    
    /* --- NEW CSS FOR ARTKARA TITLE --- */
    .mobile-nav-title {
        display: block; /* Make the title visible */
        color: white;
        font-size: 1.5em;
        font-weight: bold;
        text-transform: none;
        
        /* Center the text within the nav bar */
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* Hide the main menu links by default on mobile */
    #nav-links {
        display: none; 
        flex-direction: column; 
        width: 100%; 
        padding: 0;
        position: absolute; 
        top: 100%; 
        left: 0;
        background-color: #2F606E; 
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    }
    
    /* Display the menu when the 'active' class is toggled by JS */
    #nav-links.active {
        display: flex;
    }
    
    /* Adjust links for a full-width stacked look */
    #nav-links li {
        margin: 0;
        width: 100%;
        border-top: 1px solid rgba(143, 201, 217, 0.2); 
    }
    
    #nav-links li a {
        display: block; 
        padding: 15px 10px;
        text-align: center;
    }
}
