/* CSS Variables */
:root {
    --big-text-font-family: "Albert Sans", Helvetica;
    --big-text-font-size: 96px;
    --big-text-font-style: normal;
    --big-text-font-weight: 700;
    --big-text-letter-spacing: -2px;
    --big-text-line-height: 96px;
    --heading-h2-font-family: "Albert Sans", Helvetica;
    --heading-h2-font-size: 60px;
    --heading-h2-font-style: normal;
    --heading-h2-font-weight: 600;
    --heading-h2-letter-spacing: -2px;
    --heading-h2-line-height: 60px;
    --text-large-normal-font-family: "Albert Sans", Helvetica;
    --text-large-normal-font-size: 26px;
    --text-large-normal-font-style: normal;
    --text-large-normal-font-weight: 400;
    --text-large-normal-letter-spacing: 0px;
    --text-large-normal-line-height: 160%;
    --text-medium-normal-font-family: "Albert Sans", Helvetica;
    --text-medium-normal-font-size: 20px;
    --text-medium-normal-font-style: normal;
    --text-medium-normal-font-weight: 400;
    --text-medium-normal-letter-spacing: 0px;
    --text-medium-normal-line-height: 160%;
    --text-regular-medium-font-family: "Albert Sans", Helvetica;
    --text-regular-medium-font-size: 18px;
    --text-regular-medium-font-style: normal;
    --text-regular-medium-font-weight: 500;
    --text-regular-medium-letter-spacing: 0px;
    --text-regular-medium-line-height: 160%;
    --text-small-link-font-family: "Albert Sans", Helvetica;
    --text-small-link-font-size: 16px;
    --text-small-link-font-style: normal;
    --text-small-link-font-weight: 400;
    --text-small-link-letter-spacing: 0px;
    --text-small-link-line-height: 160%;
    --text-small-normal-font-family: "Albert Sans", Helvetica;
    --text-small-normal-font-size: 16px;
    --text-small-normal-font-style: normal;
    --text-small-normal-font-weight: 400;
    --text-small-normal-letter-spacing: 0px;
    --text-small-normal-line-height: 160%;
    --text-small-semi-bold-font-family: "Albert Sans", Helvetica;
    --text-small-semi-bold-font-size: 16px;
    --text-small-semi-bold-font-style: normal;
    --text-small-semi-bold-font-weight: 600;
    --text-small-semi-bold-letter-spacing: 0px;
    --text-small-semi-bold-line-height: 160%;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Albert Sans", Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Header Styles */
.header-container {
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 3;
    position: fixed;
    top: 0;
    left: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(0px);
    background-color: transparent;
}

.header-container.scrolled {
    backdrop-filter: blur(20px);
    background-color: rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header {
    width: 100%;
    max-width: 1536px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 48px;
    background: transparent;
    transition: padding 0.3s ease;
}

.header-container.scrolled .header {
    padding: 8px 48px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.custom-logo {
    width: 70px;
    height: 72px;
    object-fit: cover;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: "Albert Sans", Helvetica;
    font-weight: 600;
    color: #f2f2f2;
    font-size: 16px;
    letter-spacing: 0.32px;
    line-height: 25.6px;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #f44437;
}

.menu-button {
    background: transparent;
    border: none;
    padding: 0;
    height: 32px;
    width: 32px;
    cursor: pointer;
    color: #f2f2f2;
    transition: color 0.3s ease;
}

.menu-button:hover {
    color: #f44437;
}

.menu-icon {
    height: 32px;
    width: 32px;
}

/* Dynamic Menu Styles */
.nav .menu {
    list-style: none;
    display: flex;
    gap: 32px;
}

.nav .menu-item {
    margin: 0;
    padding: 0;
}

.nav .menu-item a {
    font-family: "Albert Sans", Helvetica;
    font-weight: 600;
    color: #f2f2f2;
    font-size: 16px;
    letter-spacing: 0.32px;
    line-height: 25.6px;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.nav .menu-item a:hover,
.nav .current-menu-item a {
    color: #f44437;
}

.offcanvas-nav .menu {
    list-style: none;
}

.offcanvas-nav .menu-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.offcanvas-nav .menu-item a {
    font-family: "Albert Sans", Helvetica;
    font-weight: 500;
    color: #f2f2f2;
    font-size: 18px;
    letter-spacing: 0.36px;
    line-height: 28.8px;
    text-decoration: none;
    display: block;
    padding: 12px 0;
    transition:
        color 0.3s ease,
        padding-left 0.3s ease;
}

.offcanvas-nav .menu-item a:hover,
.offcanvas-nav .current-menu-item a {
    color: #f44437;
    padding-left: 8px;
}

/* Offcanvas Menu Styles */
.offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.offcanvas-overlay.active {
    opacity: 1;
    visibility: visible;
}

.offcanvas-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background-color: #000;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 24px;
    overflow-y: auto;
}

.offcanvas-menu.active {
    transform: translateX(0);
}

.offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas-logo {
    width: 50px;
    height: 51px;
    object-fit: cover;
}

.offcanvas-close {
    background: transparent;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #f2f2f2;
    transition: color 0.3s ease;
    border-radius: 4px;
}

.offcanvas-close:hover {
    color: #f44437;
    background-color: rgba(255, 255, 255, 0.1);
}

.offcanvas-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 40px;
}

.offcanvas-nav-link {
    font-family: "Albert Sans", Helvetica;
    font-weight: 500;
    color: #f2f2f2;
    font-size: 18px;
    letter-spacing: 0.36px;
    line-height: 28.8px;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition:
        color 0.3s ease,
        padding-left 0.3s ease;
}

.offcanvas-nav-link:hover {
    color: #f44437;
    padding-left: 8px;
}

.offcanvas-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.offcanvas-btn {
    width: 100%;
    justify-content: center;
}

.offcanvas-social {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas-social-title {
    font-family: "Albert Sans", Helvetica;
    font-weight: 600;
    color: #f2f2f2;
    font-size: 16px;
    margin-bottom: 16px;
}

.offcanvas-social-icons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.offcanvas-social-icons .social-icon {
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.offcanvas-social-icons .social-icon:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/*Page Header*/
.page-header-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 80px;
    padding: 96px 64px 64px;
    z-index: 2;
    background:
        linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%),
        url("section---hero.png") 50% 50% / cover;
    height: 90vh;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.2) 100%
    );
}

.page-header-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 80px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    height: 100vh;
}

.page-header-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    width: 100%;
    max-width: 768px;
}

.page-header-text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
}

.page-header-subtitle {
    width: 100%;
    font-family: var(--text-large-normal-font-family);
    font-weight: var(--text-large-normal-font-weight);
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-large-normal-font-size);
    letter-spacing: var(--text-large-normal-letter-spacing);
    line-height: var(--text-large-normal-line-height);
    font-style: var(--text-large-normal-font-style);
}

.page-header-title {
    width: 100%;
    font-family: var(--big-text-font-family);
    font-weight: var(--big-text-font-weight);
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--big-text-font-size);
    letter-spacing: var(--big-text-letter-spacing);
    line-height: var(--big-text-line-height);
    font-style: var(--big-text-font-style);
}

.page-header-description {
    width: 100%;
    font-family: var(--text-medium-normal-font-family);
    font-weight: var(--text-medium-normal-font-weight);
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-medium-normal-font-size);
    letter-spacing: var(--text-medium-normal-letter-spacing);
    line-height: var(--text-medium-normal-line-height);
    font-style: var(--text-medium-normal-font-style);
}

.page-header-buttons {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.2) 100%
    );
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 80px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    height: 100vh;
    padding: 64px;
    color: #fff;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    width: 100%;
    max-width: 768px;
}

.hero-text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
}

.hero-subtitle {
    width: 100%;
    font-family: var(--text-large-normal-font-family);
    font-weight: var(--text-large-normal-font-weight);
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-large-normal-font-size);
    letter-spacing: var(--text-large-normal-letter-spacing);
    line-height: var(--text-large-normal-line-height);
    font-style: var(--text-large-normal-font-style);
}

.hero-title {
    width: 100%;
    font-family: var(--big-text-font-family);
    font-weight: var(--big-text-font-weight);
    color: white;
    font-size: var(--big-text-font-size);
    letter-spacing: var(--big-text-letter-spacing);
    line-height: var(--big-text-line-height);
    font-style: var(--big-text-font-style);
}

.hero-description {
    width: 100%;
    font-family: var(--text-medium-normal-font-family);
    font-weight: var(--text-medium-normal-font-weight);
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-medium-normal-font-size);
    letter-spacing: var(--text-medium-normal-letter-spacing);
    line-height: var(--text-medium-normal-line-height);
    font-style: var(--text-medium-normal-font-style);
}

.hero-buttons {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

/* Button Styles */
.btn {
    padding: 10px 24px;
    border-radius: 6px;
    border: 1px solid;
    font-family: var(--text-regular-medium-font-family);
    font-weight: var(--text-regular-medium-font-weight);
    font-size: var(--text-regular-medium-font-size);
    letter-spacing: var(--text-regular-medium-letter-spacing);
    line-height: var(--text-regular-medium-line-height);
    font-style: var(--text-regular-medium-font-style);
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: #f44437;
    color: white;
    border-color: #f44437;
}

.btn-primary:hover {
    background-color: #d63b2f;
    border-color: #d63b2f;
}

.btn-outline {
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
    background: transparent;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}


/* Blog Archive and Single Post Styling */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 64px;
}

.archive-page-title{
    font-weight: 600;
    margin-bottom: 24px;
}

.filter-section {
    margin-bottom: 30px;
}

.search-form {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.search-input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.search-button {
    padding: 8px 16px;
    background-color: #f44437;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.search-button:hover {
    background-color: #f44437;
}

.category-select {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    min-width: 200px;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.post-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s;
}

.post-card:hover {
    transform: translateY(-5px);
}

.post-image {
    height: 200px;
    overflow: hidden;
}

.featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content {
    padding: 15px;
}

.post-date {
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
}

.post-title {
    font-size: 24px;
    line-height: 1.4;
    margin: 0 0 10px;
}

.post-title a {
    color: #333;
    text-decoration: none;
}

.post-title a:hover {
    color: #f44437;
}

.post-category {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.post-excerpt {
    color: #444;
    font-size: 14px;
    margin-bottom: 15px;
}

.read-more {
    display: inline-block;
    padding: 8px 16px;
    background-color: #f44437;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

.read-more:hover {
    background-color: #f44437;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.pagination a,
.pagination span {
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
}

.pagination .current {
    background-color: #f44437;
    color: white;
    border-color: #f44437;
}

.post-single {
    max-width: 768px;
    margin: 0 auto;
}

.post-single .post-title {
   font-size: 48px;
    font-weight: 500;
    line-height: 56px;
    margin-bottom: 16px;
    text-align: center;
}

.post-meta {
    color: #666;
    font-size: 14px;
    margin-bottom: 32px;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.post-single .post-image {
    max-height: 400px;
    margin-bottom: 20px;
}

.post-single .post-content {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.post-single .post-content img {
    max-width: 100%;
    height: auto;
}

.post-tags {
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.post-navigation a {
    color: #f44437;
    text-decoration: none;
}

.post-navigation a:hover {
    text-decoration: underline;
}

.related-posts {
    margin-top: 30px;
}

.related-title {
    font-size: 24px;
    margin-bottom: 15px;
}

/* Footer Section */
.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    padding: 80px 64px;
    position: relative;
    width: 100%;
    background-color: black;
}

.footer-content {
    display: flex;
    flex-direction: column;
    max-width: 1280px;
    align-items: flex-start;
    gap: 80px;
    width: 100%;
}

.footer-main {
    display: flex;
    align-items: flex-start;
    gap: 64px;
    align-self: stretch;
    width: 100%;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
    flex: 1;
}

.footer-logo {
    width: 120px;
    height: 123px;
    object-fit: cover;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
}

.contact-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
}

.contact-label {
    font-family: var(--text-small-semi-bold-font-family);
    font-weight: var(--text-small-semi-bold-font-weight);
    color: white;
    font-size: var(--text-small-semi-bold-font-size);
    letter-spacing: var(--text-small-semi-bold-letter-spacing);
    line-height: var(--text-small-semi-bold-line-height);
    font-style: var(--text-small-semi-bold-font-style);
}

.contact-text {
    font-family: var(--text-small-normal-font-family);
    font-weight: var(--text-small-normal-font-weight);
    color: white;
    font-size: var(--text-small-normal-font-size);
    letter-spacing: var(--text-small-normal-letter-spacing);
    line-height: var(--text-small-normal-line-height);
    font-style: var(--text-small-normal-font-style);
}

.contact-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.contact-link {
    font-family: var(--text-small-link-font-family);
    font-weight: var(--text-small-link-font-weight);
    color: white;
    font-size: var(--text-small-link-font-size);
    letter-spacing: var(--text-small-link-letter-spacing);
    line-height: var(--text-small-link-line-height);
    text-decoration: none;
    font-style: var(--text-small-link-font-style);
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #fff;
}

.social-icons {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.social-icon {
    color: white;
    cursor: pointer;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #fff;
}

.footer-right {
    max-width: 400px;
    gap: 24px;
    flex: 1;
    display: flex;
    align-items: flex-start;
}

.footer-links-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}

.footer-link {
    display: flex;
    align-items: flex-start;
    padding: 8px 0;
    width: 100%;
    flex: 1;
    font-family: var(--text-small-semi-bold-font-family);
    font-weight: var(--text-small-link-font-weight);
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-small-semi-bold-font-size);
    letter-spacing: var(--text-small-semi-bold-letter-spacing);
    line-height: var(--text-small-semi-bold-line-height);
    font-style: var(--text-small-semi-bold-font-style);
    cursor: pointer;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-link:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    width: 100%;
}

.footer-separator {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

.footer-bottom-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}

.footer-copyright {
    font-family: var(--text-small-normal-font-family);
    font-weight: var(--text-small-normal-font-weight);
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-small-normal-font-size);
    letter-spacing: var(--text-small-normal-letter-spacing);
    line-height: var(--text-small-normal-line-height);
    font-style: var(--text-small-normal-font-style);
}

.footer-policy-links {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.footer-policy-link {
    font-family: var(--text-small-link-font-family);
    font-weight: var(--text-small-link-font-weight);
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-small-link-font-size);
    letter-spacing: var(--text-small-link-letter-spacing);
    line-height: var(--text-small-link-line-height);

    font-style: var(--text-small-link-font-style);
    cursor: pointer;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-policy-link:hover {
    color: #fff;
}

/*Contact Form*/
.newsletter-signup p {
    display: flex;
    gap: 10px;
    flex-wrap: wrap; /* optional: wraps on small screens */
    align-items: flex-start;
}

.newsletter-signup input[type="email"] {
    padding: 16px 24px;
    font-size: 16px;
    line-height: 24px;
    flex: 1;
    width: 100%;
    border-radius: 8px;
    background: hsl(0deg 0% 100% / 70%);
    border: solid 1px #fff;
    color: #111;
}

.newsletter-signup input[type="submit"] {
    padding: 16px 24px;
}

.newsletter-signup input[type="submit"]:hover {
    background-color: #d63b2f;
    border-color: #d63b2f;
}

.wpcf7-response-output,
.wpcf7-not-valid-tip {
    color: #fff;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 72px;
        line-height: 72px;
    }

    .album-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-main {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 12px 24px;
    }

    .nav {
        display: none;
    }

    .header-container.scrolled .header {
        padding: 8px 24px;
    }

    .hero-section {
        padding: 0;
    }

    .hero-content {
        padding: 24px;
    }

    .hero-text {
        gap: 12px;
    }

    .hero-text-content {
        gap: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-title {
        font-size: 40px;
        line-height: 48px;
        letter-spacing: 0.5px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-description {
        font-size: 16px;
        line-height: var(--text-regular-medium-line-height);
    }

    .btn {
        font-size: var(--text-small-link-font-size);
        padding: 8px 12px;
    }

    .page-header-section {
        padding: 96px 24px 24px;
    }

    .page-header-title {
        font-size: 48px;
        line-height: 48px;
        letter-spacing: 0.5px;
    }

    .page-header-subtitle {
        font-size: 20px;
    }

    .album-section {
        padding: 60px 24px;
    }

    .album-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .album-grid {
        grid-template-columns: 1fr;
    }


    .container {
        padding: 40px 24px;
    }

    .footer {
        padding: 60px 24px;
    }

    .post-single .post-title {
    font-size: 24px;
    
    line-height: 1.4;
}

    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
    }

    .footer-policy-links {
        flex-direction: column;
        gap: 8px;
    }

    .newsletter-signup p {
        gap: 0;
        flex-wrap: wrap;
        align-items: center;
        flex-direction: column;
    }
}

/*Extra CSS*/
.footer-copyright a {
  color: #fff;
  text-decoration: none;
}

.footer-copyright a:hover,
.footer-copyright a:active,
.footer-copyright a:visited {
  color: #fff;
  text-decoration: none;
}
