/*
Theme Name: Twenty Twenty-Five
Theme URI: https://wordpress.org/themes/twentytwentyfive/
Author: the WordPress team
Author URI: https://wordpress.org
Description: Twenty Twenty-Five emphasizes simplicity and adaptability. It offers flexible design options, supported by a variety of patterns for different page types, such as services and landing pages, making it ideal for building personal blogs, professional portfolios, online magazines, or business websites. Its templates cater to various blog styles, from text-focused to image-heavy layouts. Additionally, it supports international typography and diverse color palettes, ensuring accessibility and customization for users worldwide.
Requires at least: 6.7
Tested up to: 6.8
Requires PHP: 7.2
Version: 1.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentytwentyfive
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, wide-blocks, block-styles, style-variations, accessibility-ready, blog, portfolio, news
*/

/*
 * Link styles
 * https://github.com/WordPress/gutenberg/issues/42319
 */
a {
	text-decoration-thickness: 1px !important;
	text-underline-offset: .1em;
}

/* Focus styles */
:where(.wp-site-blocks *:focus) {
	outline-width: 2px;
	outline-style: solid;
}

/* Increase the bottom margin on submenus, so that the outline is visible. */
.wp-block-navigation .wp-block-navigation-submenu .wp-block-navigation-item:not(:last-child) {
	margin-bottom: 3px;
}

/* Increase the outline offset on the parent menu items, so that the outline does not touch the text. */
.wp-block-navigation .wp-block-navigation-item .wp-block-navigation-item__content {
	outline-offset: 4px;
}

/* Remove outline offset from the submenus, otherwise the outline is visible outside the submenu container. */
.wp-block-navigation .wp-block-navigation-item ul.wp-block-navigation__submenu-container .wp-block-navigation-item__content {
	outline-offset: 0;
}

/*
 * Progressive enhancement to reduce widows and orphans
 * https://github.com/WordPress/gutenberg/issues/55190
 */
h1, h2, h3, h4, h5, h6, blockquote, caption, figcaption, p {
	text-wrap: pretty;
}

/*
 * Change the position of the more block on the front, by making it a block level element.
 * https://github.com/WordPress/gutenberg/issues/65934
*/
.more-link {
	display: block;
}
/* ========================================
   WANDERLAND THEME CUSTOM CSS
   ======================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;800&family=Raleway:wght@300;400;500;600&display=swap');

/* ========================================
   GLOBAL STYLES
   ======================================== */
body {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #666666;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0 0 20px;
}

h1 {
    font-size: 80px;
    letter-spacing: -1px;
}

h2 {
    font-size: 52px;
    letter-spacing: -0.5px;
}

h3 {
    font-size: 24px;
    font-weight: 600;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-section .elementor-container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-section p {
    color: #ffffff;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0.5px;
    animation: fadeInUp 1.2s ease-out;
}

/* ========================================
   SECTION STYLES
   ======================================== */
.elementor-section {
    position: relative;
}

.tips-section,
.blog-section,
.products-section {
    padding: 100px 0 80px;
}

.tips-section {
    background-color: #f9f9f9;
}

.blog-section,
.products-section {
    background-color: #ffffff;
}

/* ========================================
   CARD STYLES
   ======================================== */
.elementor-image-box-wrapper {
    text-align: left;
    transition: all 0.3s ease;
}

.elementor-image-box-wrapper:hover {
    transform: translateY(-5px);
}

.elementor-image-box-content {
    padding: 40px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.elementor-image-box-content:hover {
    background: #ffffff;
    border-color: #d0d0d0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.elementor-image-box-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    color: #1a1a1a;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.elementor-image-box-wrapper:hover .elementor-image-box-title {
    color: #2c3e50;
}

.elementor-image-box-description {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #666666;
    margin: 0;
}

/* ========================================
   NEWSLETTER SECTION
   ======================================== */
.newsletter-section {
    background: linear-gradient(45deg, #2c3e50, #34495e);
    padding: 100px 0;
}

.newsletter-section .elementor-heading-title {
    color: #ffffff;
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 25px;
}

.newsletter-section p {
    color: #e0e0e0;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.newsletter-section .elementor-field-group input[type="email"] {
    background: #ffffff;
    border: none;
    border-radius: 0;
    padding: 15px 20px;
    font-size: 15px;
    font-family: 'Raleway', sans-serif;
}

.newsletter-section .elementor-button {
    background: #000000;
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 0;
}

.newsletter-section .elementor-button:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    padding: 120px 0;
    text-align: center;
}

.cta-section .elementor-heading-title {
    color: #ffffff;
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.cta-section p {
    color: #e0e0e0;
    font-size: 18px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* ========================================
   BUTTONS
   ======================================== */
.elementor-button {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 40px;
    border-radius: 0;
    transition: all 0.3s ease;
}

.elementor-button-primary {
    background: #000000;
    color: #ffffff;
}

.elementor-button-primary:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-up {
    animation: fadeInUp 1s ease-out;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    h1 {
        font-size: 50px;
    }
    
    h2 {
        font-size: 38px;
    }
    
    .hero-section {
        min-height: 500px;
        padding: 80px 30px;
    }
    
    .newsletter-section .elementor-heading-title {
        font-size: 32px;
    }
    
    .cta-section .elementor-heading-title {
        font-size: 36px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    h3 {
        font-size: 20px;
    }
    
    .hero-section {
        min-height: 400px;
        padding: 60px 20px;
    }
    
    .hero-section p {
        font-size: 16px;
    }
    
    .tips-section,
    .blog-section,
    .products-section {
        padding: 60px 0 40px;
    }
    
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-section .elementor-heading-title {
        font-size: 26px;
    }
    
    .newsletter-section p {
        font-size: 15px;
    }
    
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-section .elementor-heading-title {
        font-size: 28px;
    }
    
    .cta-section p {
        font-size: 16px;
    }
    
    .elementor-image-box-content {
        padding: 30px 20px;
    }
    
    .elementor-button {
        padding: 12px 30px;
        font-size: 13px;
    }
}

/* ========================================
   WOOCOMMERCE STYLES (IF NEEDED)
   ======================================== */
.woocommerce ul.products li.product {
    transition: all 0.3s ease;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #1a1a1a;
}

.woocommerce ul.products li.product .price {
    color: #2c3e50;
    font-weight: 600;
}

/* ========================================
   CUSTOM SCROLLBAR
   ======================================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #2c3e50;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1a1a1a;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center {
    text-align: center;
}

.text-white {
    color: #ffffff !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}