/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Root Variables for Consistency */
:root {
    --primary-color: #1a252f;
    --secondary-color: #34495e;
    --highlight-color: #f39c12;
    --background-light: #ecf0f1;
    --background-dark: #f1f2f6;
    --text-color: #333;
    --text-light: #f4f4f4;
    --shadow-light: rgba(0, 0, 0, 0.05);
    --shadow-dark: rgba(0, 0, 0, 0.15);
}

/* Base Styles */
body {
    font-family: 'Noto Sans Georgian', Arial, sans-serif;
    line-height: 1.6;
    background-color: var(--background-dark);
    color: var(--text-color);
    font-size: 16px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; /* Added padding for smaller screens */
}

/* Header Styles */
header {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 30px 0;
    box-shadow: 0 4px 8px var(--shadow-light);
    text-align: center;
}

header h1 {
    font-size: 2.8rem;
    font-weight: bold;
    letter-spacing: 1px;
}

nav ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
}

nav ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.3rem;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--highlight-color);
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Section Base Styles */
section {
    padding: 80px 0;
    text-align: center;
}

section h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
}

section p {
    font-size: 1.3rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    opacity: 0.8;
}

/* Hero Section */
.hero {
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 100px 0;
    border-bottom: 5px solid var(--highlight-color);
}

/* Poetry Section */
.poetry-list {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.poem-item {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    width: 30%;
    margin-bottom: 30px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px var(--shadow-light);
}

.poem-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow-dark);
}

.poem-item h3 {
    font-size: 1.8rem;
    margin-top: 20px;
    font-weight: 600;
    color: var(--secondary-color);
}

/* Footer Styles */
footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 30px 0;
    text-align: center;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

/* Media Queries */
@media screen and (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .poetry-list {
        flex-direction: column;
        align-items: center;
    }

    .poem-item {
        width: 80%;
    }

    section h2 {
        font-size: 2.3rem;
    }

    section p {
        font-size: 1.1rem;
    }
}
.clickable-image {
    width: 80px;  /* Adjust width to make the image smaller */
    height: auto; /* Ensure the aspect ratio is maintained */
    vertical-align: middle; /* Align with the text */
    margin-left: 5px; /* Optional: Add space between the text and the image */
}
