/*==========================================
    SMT Industry Theme Main CSS
    Version: 1.0.0
==========================================*/

/*------------------------------------------
    Table of Contents
    1.  Variables & Reset
    2.  Global Styles
    3.  Header Styles
    4.  Navigation
    5.  Hero Section
    6.  About Section
    7.  Services Section
    8.  Products Section
    9.  News Section
    10. Contact Section
    11. Partners Section
    12. Footer
    13. Sidebar
    14. Blog & Single
    15. Pagination
    16. Forms
    17. Responsive
------------------------------------------*/

/* 1. Variables & Reset */
:root {
    --smt-primary: #1a5f7a;
    --smt-secondary: #f39c12;
    --smt-dark: #2c3e50;
    --smt-light: #ecf0f1;
    --smt-gray: #7f8c8d;
    --smt-white: #ffffff;
    --smt-black: #333333;
    --smt-link: #1a5f7a;
    --smt-link-hover: #f39c12;
    --smt-transition: all 0.3s ease;
    --smt-shadow: 0 5px 20px rgba(0,0,0,0.1);
    --smt-border: #e0e0e0;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--smt-black);
    background-color: var(--smt-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--smt-link);
    text-decoration: none;
    transition: var(--smt-transition);
}

a:hover {
    color: var(--smt-link-hover);
}

/* 2. Global Styles */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--smt-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 16px;
    color: var(--smt-gray);
    max-width: 700px;
    margin: 0 auto;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--smt-primary);
    margin: 20px auto 0;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--smt-transition);
    border: none;
    font-size: 14px;
}

.btn-primary {
    background-color: var(--smt-primary);
    color: var(--smt-white);
}

.btn-primary:hover {
    background-color: var(--smt-secondary);
    color: var(--smt-white);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--smt-primary);
    color: var(--smt-primary);
}

.btn-outline:hover {
    background: var(--smt-primary);
    color: var(--smt-white);
    border-color: var(--smt-primary);
}

.btn-hero {
    background-color: var(--smt-primary);
    color: var(--smt-white);
    padding: 15px 40px;
    font-size: 16px;
}

.btn-hero:hover {
    background-color: var(--smt-secondary);
    color: var(--smt-white);
}

/* 3. Header Styles */
.site-header {
    position: relative;
    z-index: 1000;
    background: var(--smt-white);
    box-shadow: var(--smt-shadow);
}

.header-top {
    background: var(--smt-dark);
    color: var(--smt-white);
    padding: 8px 0;
    font-size: 13px;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header-info span {
    margin-right: 20px;
}

.header-info i {
    margin-right: 5px;
    color: var(--smt-secondary);
}

.header-social a {
    color: var(--smt-white);
    margin-left: 15px;
    font-size: 14px;
}

.header-social a:hover {
    color: var(--smt-secondary);
}

.header-main {
    padding: 15px 0;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.site-branding img {
    max-height: 50px;
    width: auto;
}

.site-branding .site-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--smt-primary);
}

/* 4. Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.primary-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-menu li {
    position: relative;
    margin: 0 5px;
}

.primary-menu li a {
    display: block;
    padding: 10px 15px;
    color: var(--smt-dark);
    font-weight: 500;
    transition: var(--smt-transition);
}

.primary-menu li a:hover,
.primary-menu li.current-menu-item a {
    color: var(--smt-primary);
}

.primary-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--smt-white);
    box-shadow: var(--smt-shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--smt-transition);
    z-index: 100;
    list-style: none;
    padding: 10px 0;
}

.primary-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
}

.primary-menu .sub-menu li {
    margin: 0;
}

.primary-menu .sub-menu li a {
    padding: 8px 20px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--smt-dark);
    margin: 5px 0;
    transition: var(--smt-transition);
}

.header-search {
    position: relative;
    margin-left: 15px;
}

.search-toggle {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--smt-dark);
}

.search-form-wrap {
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background: var(--smt-white);
    box-shadow: var(--smt-shadow);
    padding: 15px;
    opacity: 0;
    visibility: hidden;
    transition: var(--smt-transition);
}

.header-search:hover .search-form-wrap {
    opacity: 1;
    visibility: visible;
}

/* 5. Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--smt-white);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* 6. About Section */
.about-section {
    padding: 80px 0;
    background: var(--smt-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content .section-header {
    text-align: left;
    margin-bottom: 25px;
}

.about-content .section-divider {
    margin: 15px 0;
}

.about-text {
    margin-bottom: 25px;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 15px;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--smt-shadow);
}

.about-image img {
    width: 100%;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* 7. Services Section */
.services-section {
    padding: 80px 0;
    background: var(--smt-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-item {
    background: var(--smt-white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--smt-transition);
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--smt-shadow);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--smt-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--smt-white);
    font-size: 36px;
    transition: var(--smt-transition);
}

.service-item:hover .service-icon {
    background: var(--smt-secondary);
    transform: rotateY(180deg);
}

.service-icon img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-excerpt {
    color: var(--smt-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--smt-primary);
}

.service-link i {
    transition: var(--smt-transition);
}

.service-link:hover i {
    transform: translateX(5px);
}

.services-footer {
    margin-top: 40px;
}

/* 8. Products Section */
.products-section {
    padding: 80px 0;
    background: var(--smt-white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.product-item {
    background: var(--smt-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    transition: var(--smt-transition);
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--smt-shadow);
}

.product-inner {
    position: relative;
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-item:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26,95,122,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--smt-transition);
}

.product-item:hover .product-overlay {
    opacity: 1;
}

.product-btn {
    width: 50px;
    height: 50px;
    background: var(--smt-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--smt-primary);
    font-size: 20px;
    transition: var(--smt-transition);
}

.product-btn:hover {
    background: var(--smt-secondary);
    color: var(--smt-white);
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-title a {
    color: var(--smt-dark);
}

.product-title a:hover {
    color: var(--smt-primary);
}

.product-excerpt {
    font-size: 14px;
    color: var(--smt-gray);
}

.products-footer {
    margin-top: 40px;
    text-align: center;
}

/* 9. News Section */
.news-section {
    padding: 80px 0;
    background: var(--smt-light);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.news-item {
    background: var(--smt-white);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--smt-transition);
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.news-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--smt-shadow);
}

.news-image {
    position: relative;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-item:hover .news-image img {
    transform: scale(1.1);
}

.news-date {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--smt-primary);
    color: var(--smt-white);
    padding: 8px 12px;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
}

.news-date .day {
    font-size: 18px;
    display: block;
    line-height: 1;
}

.news-date .month {
    font-size: 12px;
    display: block;
}

.news-content {
    padding: 20px;
}

.news-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-title a {
    color: var(--smt-dark);
}

.news-title a:hover {
    color: var(--smt-primary);
}

.news-meta {
    font-size: 13px;
    color: var(--smt-gray);
    margin-bottom: 15px;
}

.news-meta span {
    margin-right: 15px;
}

.news-meta i {
    margin-right: 5px;
}

.news-excerpt {
    color: var(--smt-gray);
    margin-bottom: 15px;
    line-height: 1.6;
}

.news-more {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--smt-primary);
}

.news-more i {
    transition: var(--smt-transition);
}

.news-more:hover i {
    transform: translateX(5px);
}

.news-footer {
    margin-top: 40px;
}

/* 10. Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--smt-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--smt-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 24px;
    color: var(--smt-primary);
    transition: var(--smt-transition);
}

.info-item:hover .info-icon {
    background: var(--smt-primary);
    color: var(--smt-white);
}

.info-text h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.info-text p {
    color: var(--smt-gray);
}

/* 11. Partners Section */
.partners-section {
    padding: 60px 0;
    background: var(--smt-light);
}

.partners-slider {
    padding: 20px 0;
}

.partner-item {
    text-align: center;
    padding: 20px;
    background: var(--smt-white);
    border-radius: 10px;
    transition: var(--smt-transition);
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--smt-shadow);
}

.partner-item img {
    max-width: 150px;
    height: auto;
    margin: 0 auto;
}

.partner-placeholder {
    width: 150px;
    height: 100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--smt-light);
    border-radius: 8px;
}

.partner-placeholder i {
    font-size: 40px;
    color: var(--smt-primary);
    margin-bottom: 10px;
}

.partner-placeholder span {
    font-size: 14px;
    color: var(--smt-gray);
}

/* 12. Footer */
.site-footer {
    background: var(--smt-dark);
    color: var(--smt-white);
}

.footer-widgets {
    padding: 60px 0 30px;
}

.footer-widgets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-widget-title {
    color: var(--smt-white);
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--smt-secondary);
}

.footer-widget {
    color: rgba(255,255,255,0.7);
}

.footer-widget a {
    color: rgba(255,255,255,0.7);
}

.footer-widget a:hover {
    color: var(--smt-secondary);
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-copyright,
.footer-icp,
.footer-credit {
    color: rgba(255,255,255,0.6);
}

.footer-icp a {
    color: rgba(255,255,255,0.6);
}

.footer-icp a:hover {
    color: var(--smt-secondary);
}

/* 13. Sidebar */
.widget-area {
    width: 300px;
    margin-left: 30px;
}

.widget {
    background: var(--smt-white);
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.widget-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--smt-primary);
}

.widget ul {
    list-style: none;
}

.widget ul li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--smt-border);
}

.widget ul li:last-child {
    border-bottom: none;
}

.widget ul li a {
    color: var(--smt-dark);
}

.widget ul li a:hover {
    color: var(--smt-primary);
    padding-left: 5px;
}

/* 14. Blog & Single */
.content-area {
    display: flex;
    margin: 60px 0;
}

.full-width .content-area {
    display: block;
}

.full-width .widget-area {
    display: none;
}

article {
    background: var(--smt-white);
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.entry-title {
    font-size: 28px;
    margin-bottom: 15px;
}

.entry-title a {
    color: var(--smt-dark);
}

.entry-meta {
    font-size: 13px;
    color: var(--smt-gray);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--smt-border);
}

.entry-meta span {
    margin-right: 15px;
}

.entry-meta i {
    margin-right: 5px;
}

.post-thumbnail {
    margin-bottom: 20px;
}

.post-thumbnail img {
    width: 100%;
    border-radius: 10px;
}

.entry-content {
    line-height: 1.8;
}

.entry-content p {
    margin-bottom: 1.5em;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    margin: 1.5em 0 0.5em;
}

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

.entry-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--smt-border);
}

.post-tags a {
    display: inline-block;
    background: var(--smt-light);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-right: 8px;
    margin-bottom: 8px;
    color: var(--smt-dark);
}

.post-tags a:hover {
    background: var(--smt-primary);
    color: var(--smt-white);
}

/* Related Posts */
.related-posts {
    margin-top: 40px;
    padding: 30px;
    background: var(--smt-white);
    border-radius: 10px;
}

.related-posts h3 {
    font-size: 22px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--smt-primary);
}

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

.related-post-item {
    text-align: center;
}

.related-post-thumb img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}

.related-post-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

/* Comments */
.comments-area {
    margin-top: 40px;
    padding: 30px;
    background: var(--smt-white);
    border-radius: 10px;
}

.comment-list {
    list-style: none;
}

.comment {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--smt-border);
}

.comment-author {
    font-weight: 600;
    margin-bottom: 5px;
}

.comment-meta {
    font-size: 12px;
    color: var(--smt-gray);
    margin-bottom: 10px;
}

/* 15. Pagination */
.smt-pagination {
    text-align: center;
    margin-top: 30px;
}

.smt-pagination ul {
    display: inline-flex;
    list-style: none;
    gap: 5px;
}

.smt-pagination li a,
.smt-pagination li span {
    display: inline-block;
    padding: 8px 15px;
    background: var(--smt-white);
    border-radius: 5px;
    color: var(--smt-dark);
    transition: var(--smt-transition);
}

.smt-pagination li a:hover,
.smt-pagination li .current {
    background: var(--smt-primary);
    color: var(--smt-white);
}

/* 16. Forms */
.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="number"],
textarea,
select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--smt-border);
    border-radius: 5px;
    font-size: 14px;
    transition: var(--smt-transition);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--smt-primary);
    box-shadow: 0 0 0 2px rgba(26,95,122,0.1);
}

textarea {
    resize: vertical;
}

.btn-block {
    display: block;
    width: 100%;
}

.search-form {
    display: flex;
}

.search-form input {
    flex: 1;
    border-radius: 5px 0 0 5px;
}

.search-form button {
    padding: 0 20px;
    background: var(--smt-primary);
    color: var(--smt-white);
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

/* 17. Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--smt-primary);
    color: var(--smt-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--smt-transition);
    z-index: 1000;
}

.back-to-top:hover {
    background: var(--smt-secondary);
    transform: translateY(-5px);
}

/* 18. Error 404 */
.error-404 {
    text-align: center;
    padding: 100px 0;
}

.error-code {
    font-size: 120px;
    font-weight: 700;
    color: var(--smt-primary);
    margin-bottom: 20px;
}

.error-title {
    font-size: 32px;
    margin-bottom: 15px;
}

.error-message {
    color: var(--smt-gray);
    margin-bottom: 30px;
}

/* 19. Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 36px;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-grid,
    .products-grid,
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .widget-area {
        width: 100%;
        margin-left: 0;
        margin-top: 30px;
    }
    
    .content-area {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .primary-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--smt-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--smt-shadow);
    }
    
    .primary-menu.active {
        display: flex;
    }
    
    .primary-menu li {
        margin: 0;
    }
    
    .primary-menu .sub-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        padding-left: 20px;
    }
    
    .services-grid,
    .products-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-section,
    .hero-slide {
        height: 450px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }
    
    .header-top .container {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .header-info span {
        margin: 0 10px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section,
    .hero-slide {
        height: 400px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    article {
        padding: 20px;
    }
    
    .entry-title {
        font-size: 22px;
    }
}

/* Animation Classes */
.wow {
    visibility: hidden;
}

.fadeInUp {
    animation-name: fadeInUp;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}