@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Lato:wght@300;400;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&display=swap"); *, *::before, *::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
font-size: 16px;
scroll-behavior: smooth;
}
body {
font-family: 'Lato', sans-serif;
font-size: 14px;
line-height: 1.8;
color: #666666;
background-color: #f7f7f7;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
a {
color: #333333;
text-decoration: none;
transition: color 0.3s ease;
}
a:hover {
color: #c6671a;
}
img {
max-width: 100%;
height: auto;
display: block;
}
ul, ol {
list-style: none;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Playfair Display', serif;
font-weight: 400;
color: #333333;
line-height: 1.4;
} .container {
max-width: 1200px;
margin: 0 auto;
padding: 0 15px;
}
.site-wrapper {
background-color: #ffffff;
max-width: 1200px;
margin: 0 auto;
box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
} .top-nav {
background-color: #333333;
padding: 0;
text-align: center;
}
.top-nav .nav-menu {
display: flex;
justify-content: center;
align-items: center;
gap: 0;
}
.top-nav .nav-menu li {
position: relative;
}
.top-nav .nav-menu li a {
display: block;
padding: 12px 20px;
color: #999999;
font-family: 'Montserrat', sans-serif;
font-size: 11px;
font-weight: 600;
letter-spacing: 2px;
text-transform: uppercase;
transition: color 0.3s ease;
}
.top-nav .nav-menu li a:hover,
.top-nav .nav-menu li.current-menu-item a,
.top-nav .nav-menu li.current_page_item a {
color: #c6671a;
}
.top-nav .nav-menu li + li::before {
content: '|';
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
color: #555555;
font-size: 10px;
} .top-nav .nav-menu li .sub-menu {
display: none;
position: absolute;
top: 100%;
left: 0;
background-color: #333333;
min-width: 200px;
z-index: 1000;
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.top-nav .nav-menu li:hover > .sub-menu {
display: block;
}
.top-nav .nav-menu li .sub-menu li a {
padding: 10px 20px;
text-align: left;
border-bottom: 1px solid #444;
}
.top-nav .nav-menu li .sub-menu li + li::before {
display: none;
} .menu-toggle {
display: none;
background: none;
border: none;
color: #333;
font-size: 24px;
cursor: pointer;
padding: 10px;
} .site-header {
text-align: center;
padding: 50px 0 40px;
background-color: #ffffff;
}
.site-logo {
margin-bottom: 5px;
}
.site-logo a {
display: inline-block;
}
.site-logo .logo-text {
font-family: 'Montserrat', sans-serif;
font-size: 60px;
font-weight: 900;
color: #333333;
letter-spacing: 2px;
text-transform: uppercase;
line-height: 1;
}
.site-logo img {
max-height: 80px;
display: inline-block;
}
.site-tagline {
font-family: 'Montserrat', sans-serif;
font-size: 11px;
color: #999999;
letter-spacing: 3px;
text-transform: uppercase;
margin-top: 5px;
} .hero-slider {
position: relative;
overflow: hidden;
margin-bottom: 0;
}
.hero-slider .slides {
display: flex;
transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}
.hero-slider .slide {
min-width: 100%;
position: relative;
height: 500px;
overflow: hidden;
}
.hero-slider .slide img {
width: 100%;
height: 100%;
object-fit: cover;
}
.hero-slider .slide-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.5));
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
padding: 20px;
}
.hero-slider .slide-title {
font-family: 'Playfair Display', serif;
font-size: 36px;
color: #ffffff;
margin-bottom: 20px;
text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.hero-slider .slide-title em {
font-style: italic;
font-weight: 700;
}
.hero-slider .slide-btn {
display: inline-block;
padding: 10px 30px;
border: 1px solid #ffffff;
color: #ffffff;
font-family: 'Montserrat', sans-serif;
font-size: 11px;
letter-spacing: 2px;
text-transform: uppercase;
transition: all 0.3s ease;
}
.hero-slider .slide-btn:hover {
background-color: #ffffff;
color: #333333;
} .slider-nav {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 50px;
height: 50px;
background: rgba(255,255,255,0.3);
border: none;
color: #ffffff;
font-size: 24px;
cursor: pointer;
z-index: 10;
transition: background 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
}
.slider-nav:hover {
background: rgba(255,255,255,0.6);
}
.slider-nav.prev {
left: 20px;
}
.slider-nav.next {
right: 20px;
}
.slider-dots {
position: absolute;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 8px;
z-index: 10;
}
.slider-dots .dot {
width: 10px;
height: 10px;
border-radius: 50%;
background: rgba(255,255,255,0.5);
cursor: pointer;
border: none;
transition: background 0.3s ease;
}
.slider-dots .dot.active {
background: #ffffff;
} .featured-boxes {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 15px;
padding: 15px;
margin-bottom: 40px;
}
.featured-box {
position: relative;
height: 200px;
overflow: hidden;
}
.featured-box img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}
.featured-box:hover img {
transform: scale(1.05);
}
.featured-box .featured-box-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.35);
display: flex;
justify-content: center;
align-items: center;
text-align: center;
padding: 15px;
transition: background 0.3s ease;
}
.featured-box:hover .featured-box-overlay {
background: rgba(0,0,0,0.5);
}
.featured-box .featured-box-title {
font-family: 'Playfair Display', serif;
font-size: 18px;
color: #ffffff;
line-height: 1.5;
text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.featured-box .featured-box-title em {
font-style: italic;
font-weight: 700;
} .content-wrapper {
display: grid;
grid-template-columns: 1fr 350px;
gap: 40px;
padding: 0 30px 60px;
}
.main-content {
min-width: 0;
} .post-card {
margin-bottom: 40px;
padding-bottom: 40px;
border-bottom: 1px dashed #e0e0e0;
}
.post-card:last-child {
border-bottom: none;
}
.post-card .post-title {
font-family: 'Playfair Display', serif;
font-size: 28px;
font-weight: 400;
color: #333333;
margin-bottom: 10px;
line-height: 1.4;
}
.post-card .post-title a {
color: #333333;
}
.post-card .post-title a:hover {
color: #c6671a;
}
.post-card .post-meta {
font-size: 13px;
color: #999999;
margin-bottom: 20px;
font-family: 'Lato', sans-serif;
}
.post-card .post-meta a {
color: #333333;
font-weight: 700;
}
.post-card .post-meta a:hover {
color: #c6671a;
}
.post-card .post-meta span {
margin: 0 8px;
}
.post-card .post-thumbnail {
margin-bottom: 20px;
overflow: hidden;
}
.post-card .post-thumbnail img {
width: 100%;
height: auto;
transition: transform 0.5s ease;
}
.post-card .post-thumbnail:hover img {
transform: scale(1.03);
}
.post-card .post-excerpt {
font-size: 14px;
line-height: 1.8;
color: #666666;
margin-bottom: 20px;
}
.post-card .continue-reading {
text-align: center;
}
.post-card .continue-reading a {
display: inline-block;
padding: 10px 30px;
border: 1px solid #333333;
color: #333333;
font-family: 'Montserrat', sans-serif;
font-size: 10px;
font-weight: 600;
letter-spacing: 3px;
text-transform: uppercase;
transition: all 0.3s ease;
}
.post-card .continue-reading a:hover {
background-color: #333333;
color: #ffffff;
} .pagination {
text-align: left;
padding: 30px 0;
font-family: 'Montserrat', sans-serif;
font-size: 13px;
color: #999999;
}
.pagination .page-numbers {
display: inline-block;
padding: 5px 12px;
margin: 0 3px;
color: #666666;
border: 1px solid transparent;
}
.pagination .page-numbers.current {
border: 1px solid #333333;
color: #333333;
}
.pagination .page-numbers:hover {
color: #c6671a;
} .sidebar {
min-width: 0;
}
.widget {
margin-bottom: 40px;
}
.widget-title {
font-family: 'Montserrat', sans-serif;
font-size: 13px;
font-weight: 600;
letter-spacing: 2px;
text-transform: uppercase;
color: #333333;
text-align: center;
margin-bottom: 25px;
padding-bottom: 15px;
border-bottom: 1px solid #eeeeee;
} .widget-about-me {
text-align: center;
}
.widget-about-me .about-image {
margin-bottom: 15px;
}
.widget-about-me .about-image img {
width: 100%;
height: auto;
}
.widget-about-me .about-text {
font-size: 14px;
line-height: 1.8;
color: #666666;
font-style: italic;
} .widget-social .social-icons {
display: flex;
justify-content: center;
gap: 12px;
flex-wrap: wrap;
}
.widget-social .social-icons a {
display: inline-flex;
align-items: center;
justify-content: center;
width: 32px;
height: 32px;
color: #333333;
font-size: 16px;
transition: color 0.3s ease;
}
.widget-social .social-icons a:hover {
color: #c6671a;
} .widget-search .search-form {
display: flex;
border: 1px solid #eeeeee;
}
.widget-search .search-form input[type="search"],
.widget-search .search-form input[type="text"] {
flex: 1;
padding: 10px 15px;
border: none;
font-family: 'Lato', sans-serif;
font-size: 13px;
color: #666666;
outline: none;
background: transparent;
}
.widget-search .search-form input::placeholder {
color: #bbbbbb;
}
.widget-search .search-form button {
padding: 10px 15px;
background: none;
border: none;
color: #999999;
cursor: pointer;
font-size: 14px;
transition: color 0.3s ease;
}
.widget-search .search-form button:hover {
color: #c6671a;
} .widget-popular-posts .popular-post {
display: flex;
gap: 15px;
margin-bottom: 15px;
padding-bottom: 15px;
border-bottom: 1px solid #f5f5f5;
}
.widget-popular-posts .popular-post:last-child {
border-bottom: none;
margin-bottom: 0;
padding-bottom: 0;
}
.widget-popular-posts .popular-post-thumb {
width: 70px;
height: 70px;
flex-shrink: 0;
overflow: hidden;
}
.widget-popular-posts .popular-post-thumb img {
width: 100%;
height: 100%;
object-fit: cover;
}
.widget-popular-posts .popular-post-info {
flex: 1;
}
.widget-popular-posts .popular-post-title {
font-family: 'Lato', sans-serif;
font-size: 14px;
font-weight: 700;
color: #333333;
margin-bottom: 5px;
line-height: 1.4;
}
.widget-popular-posts .popular-post-title a {
color: #333333;
}
.widget-popular-posts .popular-post-title a:hover {
color: #c6671a;
}
.widget-popular-posts .popular-post-date {
font-size: 12px;
color: #999999;
} .widget-instagram .instagram-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 5px;
}
.widget-instagram .instagram-grid a {
display: block;
overflow: hidden;
}
.widget-instagram .instagram-grid img {
width: 100%;
height: auto;
aspect-ratio: 1;
object-fit: cover;
transition: transform 0.3s ease, opacity 0.3s ease;
}
.widget-instagram .instagram-grid a:hover img {
transform: scale(1.1);
opacity: 0.8;
} .single-post-content {
padding: 0 0 40px;
}
.single-post-content .post-title {
font-family: 'Playfair Display', serif;
font-size: 34px;
font-weight: 400;
color: #333333;
margin-bottom: 15px;
line-height: 1.4;
}
.single-post-content .post-meta {
font-size: 13px;
color: #999999;
margin-bottom: 25px;
}
.single-post-content .post-meta a {
color: #333333;
font-weight: 700;
}
.single-post-content .entry-content {
font-size: 14px;
line-height: 2;
color: #666666;
}
.single-post-content .entry-content p {
margin-bottom: 20px;
}
.single-post-content .entry-content h2 {
font-size: 24px;
margin: 30px 0 15px;
}
.single-post-content .entry-content h3 {
font-size: 20px;
margin: 25px 0 10px;
}
.single-post-content .entry-content blockquote {
border-left: 3px solid #c6671a;
padding: 15px 25px;
margin: 20px 0;
font-style: italic;
background: #fafafa;
}
.single-post-content .entry-content img {
margin: 20px 0;
} .post-tags {
margin-top: 30px;
padding-top: 20px;
border-top: 1px dashed #e0e0e0;
}
.post-tags a {
display: inline-block;
padding: 4px 12px;
margin: 3px;
border: 1px solid #eeeeee;
font-size: 11px;
font-family: 'Montserrat', sans-serif;
letter-spacing: 1px;
text-transform: uppercase;
color: #999999;
transition: all 0.3s ease;
}
.post-tags a:hover {
border-color: #c6671a;
color: #c6671a;
} .post-navigation {
display: flex;
justify-content: space-between;
padding: 30px 0;
border-top: 1px dashed #e0e0e0;
border-bottom: 1px dashed #e0e0e0;
margin: 30px 0;
}
.post-navigation .nav-link {
font-family: 'Montserrat', sans-serif;
font-size: 11px;
letter-spacing: 1px;
text-transform: uppercase;
color: #999;
}
.post-navigation .nav-link:hover {
color: #c6671a;
} .comments-area {
margin-top: 40px;
}
.comments-area .comments-title {
font-family: 'Montserrat', sans-serif;
font-size: 13px;
font-weight: 600;
letter-spacing: 2px;
text-transform: uppercase;
margin-bottom: 20px;
padding-bottom: 15px;
border-bottom: 1px solid #eee;
}
.comment-list {
margin-bottom: 40px;
}
.comment-list .comment {
padding: 20px 0;
border-bottom: 1px solid #f5f5f5;
}
.comment-list .comment-author img {
border-radius: 50%;
float: left;
margin-right: 15px;
}
.comment-list .comment-author .fn {
font-weight: 700;
color: #333;
}
.comment-list .comment-metadata {
font-size: 12px;
color: #999;
}
.comment-respond .comment-reply-title {
font-family: 'Montserrat', sans-serif;
font-size: 13px;
font-weight: 600;
letter-spacing: 2px;
text-transform: uppercase;
margin-bottom: 15px;
}
.comment-respond .comment-form label {
font-size: 13px;
color: #666;
display: block;
margin-bottom: 5px;
}
.comment-respond .comment-form input[type="text"],
.comment-respond .comment-form input[type="email"],
.comment-respond .comment-form textarea {
width: 100%;
padding: 10px 15px;
border: 1px solid #eee;
font-family: 'Lato', sans-serif;
font-size: 13px;
margin-bottom: 15px;
outline: none;
transition: border-color 0.3s ease;
}
.comment-respond .comment-form input:focus,
.comment-respond .comment-form textarea:focus {
border-color: #c6671a;
}
.comment-respond .comment-form .submit {
padding: 10px 30px;
background: #333;
color: #fff;
border: none;
font-family: 'Montserrat', sans-serif;
font-size: 11px;
letter-spacing: 2px;
text-transform: uppercase;
cursor: pointer;
transition: background 0.3s ease;
}
.comment-respond .comment-form .submit:hover {
background: #c6671a;
} .site-footer {
background-color: #333333;
color: #999999;
padding: 50px 30px 30px;
}
.footer-widgets {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 40px;
margin-bottom: 40px;
}
.footer-widget .footer-widget-title {
font-family: 'Montserrat', sans-serif;
font-size: 13px;
font-weight: 600;
letter-spacing: 2px;
text-transform: uppercase;
color: #ffffff;
margin-bottom: 20px;
padding-bottom: 15px;
border-bottom: 1px solid #444444;
}
.footer-widget p {
font-size: 13px;
line-height: 1.8;
color: #999999;
}
.footer-widget a {
color: #cccccc;
}
.footer-widget a:hover {
color: #c6671a;
}
.footer-widget ul li {
padding: 5px 0;
border-bottom: 1px solid #444;
}
.footer-widget ul li a {
font-size: 13px;
}
.footer-bottom {
text-align: center;
padding-top: 30px;
border-top: 1px solid #444444;
}
.footer-bottom p {
font-size: 12px;
color: #777777;
font-family: 'Montserrat', sans-serif;
letter-spacing: 1px;
}
.footer-social {
display: flex;
justify-content: center;
gap: 15px;
margin-bottom: 15px;
}
.footer-social a {
color: #999999;
font-size: 16px;
transition: color 0.3s ease;
}
.footer-social a:hover {
color: #c6671a;
} .page-header-banner {
text-align: center;
padding: 40px 0;
}
.page-header-banner .page-title {
font-family: 'Playfair Display', serif;
font-size: 34px;
font-weight: 400;
color: #333;
} @media screen and (max-width: 1024px) {
.content-wrapper {
grid-template-columns: 1fr;
padding: 0 20px 40px;
}
.sidebar {
max-width: 600px;
margin: 0 auto;
}
.featured-boxes {
gap: 10px;
padding: 10px;
}
}
@media screen and (max-width: 768px) {
.menu-toggle {
display: block;
width: 100%;
text-align: center;
background-color: #333333;
color: #999999;
font-family: 'Montserrat', sans-serif;
font-size: 11px;
letter-spacing: 2px;
text-transform: uppercase;
padding: 12px;
}
.top-nav .nav-menu {
display: none;
flex-direction: column;
}
.top-nav .nav-menu.active {
display: flex;
}
.top-nav .nav-menu li + li::before {
display: none;
}
.top-nav .nav-menu li .sub-menu {
position: static;
box-shadow: none;
}
.site-logo .logo-text {
font-size: 40px;
}
.hero-slider .slide {
height: 300px;
}
.hero-slider .slide-title {
font-size: 22px;
}
.featured-boxes {
grid-template-columns: 1fr;
}
.featured-box {
height: 180px;
}
.post-card .post-title {
font-size: 22px;
}
.footer-widgets {
grid-template-columns: 1fr;
}
.post-navigation {
flex-direction: column;
gap: 15px;
}
}
@media screen and (max-width: 480px) {
.site-header {
padding: 30px 0 20px;
}
.site-logo .logo-text {
font-size: 30px;
}
.hero-slider .slide {
height: 220px;
}
.hero-slider .slide-title {
font-size: 18px;
}
.post-card .post-title {
font-size: 20px;
}
.content-wrapper {
padding: 0 15px 30px;
}
} .aligncenter {
display: block;
margin: 0 auto;
}
.alignleft {
float: left;
margin: 0 20px 10px 0;
}
.alignright {
float: right;
margin: 0 0 10px 20px;
}
.wp-caption {
margin-bottom: 15px;
max-width: 100%;
}
.wp-caption-text {
font-size: 12px;
color: #999;
padding: 5px 0;
text-align: center;
}
.gallery {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 10px;
margin: 20px 0;
}
.screen-reader-text {
clip: rect(1px, 1px, 1px, 1px);
position: absolute !important;
height: 1px;
width: 1px;
overflow: hidden;
} .back-to-top {
position: fixed;
bottom: 30px;
right: 30px;
width: 40px;
height: 40px;
background: #333333;
color: #ffffff;
border: none;
cursor: pointer;
font-size: 18px;
display: none;
align-items: center;
justify-content: center;
z-index: 999;
transition: background 0.3s ease;
}
.back-to-top.visible {
display: flex;
}
.back-to-top:hover {
background: #c6671a;
}