/* styles.css */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Color Variables */
:root {
    --primary-color: #2ecc71;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --hover-color: #706cd9;
    --text-dark: #2c3e50;
    --text-light: #ecf0f1;
    --highlight-color: yellow;
    --dark-header: rgb(12, 62, 92);
    --all-bg-color: gray;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color :red;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}


.gallery-container {
  max-width: 1200px;
  margin: auto;
}

h1 {
  text-align: center;
  margin-bottom: 20px;
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

/*.gallery-item {*/
/*  background: none;       */
/*  padding: 0;            */
/*  display: block;*/
/*  overflow: hidden;*/
/*}*/


.gallery-item {
    position: relative;
    margin-bottom: 20px;
}

.like-wrapper {
    display: flex;
    align-items: center;
    margin-top: 6px;
    padding-left: 5px; /* left-align */
}

.like-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: #bbb;
    padding: 0;
    margin-right: 6px;
    transition: color 0.3s;
}

.like-btn i.liked {
    color: red;
}

.like-count {
    font-size: 15px;
    color: white;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 12px;
}

/* Orientation aware */
.gallery-item.landscape {
  width: 400px;
}

.gallery-item.portrait {
  width: 250px;
}

.pagination {
  margin-top: 30px;
  text-align: center;
}

.pagination a {
  margin: 0 5px;
  padding: 10px 15px;
  background: #fff;
  border: 1px solid #ccc;
  text-decoration: none;
  color: #333;
  border-radius: 6px;
}

.pagination a.active {
  background-color: #007BFF;
  color: white;
  border-color: #007BFF;
}
