/*
Theme Name: Twenty Thirteen
Theme URI: https://wordpress.org/themes/twentythirteen/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: The 2013 theme for WordPress takes us back to the blog, featuring a full range of post formats, each displayed beautifully in their own unique way. Design details abound, starting with a vibrant color scheme and matching header images, beautiful typography and icons, and a flexible layout that looks great on any device, big or small.
Version: 4.7
Tested up to: 7.1
Requires at least: 3.6
Requires PHP: 5.2.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blog, one-column, two-columns, right-sidebar, custom-header, custom-menu, editor-style, featured-images, footer-widgets, microformats, post-formats, rtl-language-support, sticky-post, translation-ready, accessibility-ready, block-patterns
Text Domain: twentythirteen

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/


/**
 * Table of Contents:
 *
 * 1.0 - Reset
 * 2.0 - Repeatable Patterns
 * 3.0 - Basic Structure
 * 4.0 - Header
 *   4.1 - Site Header
 *   4.2 - Navigation
 * 5.0 - Content
 *   5.1 - Entry Header
 *   5.2 - Entry Meta
 *   5.3 - Entry Content
 *   5.4 - Galleries
 *   5.5 - Post Formats
 *   5.6 - Attachments
 *   5.7 - Post/Paging Navigation
 *   5.8 - Author Bio
 *   5.9 - Archives
 *   5.10 - Search Results/No posts
 *   5.11 - 404
 *   5.12 - Comments
 *   5.13 - Multisite
 * 6.0 - Sidebar
 *   6.1 - Widgets
 * 7.0 - Footer
 * 8.0 - Media Queries
 * 9.0 - Print
 * ----------------------------------------------------------------------------
 */


/**
 * 1.0 Reset
 *
 * Modified from Normalize.css to provide cross-browser consistency and a smart
 * default styling of HTML elements.
 *
 * @see http://git.io/normalize
 * ----------------------------------------------------------------------------
 */

 :root {
    --primary: #146b32;
    --primary-dark: #0b5024;
    --secondary: #5c9429;
    --secondary-dark: #3f721d;
    --accent: #9dbb38;
    --light-green: #f3f8ee;
    --dark: #152b1c;
    --text: #5d665f;
    --white: #ffffff;
    --border: #dfe8dc;
}

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

body {
    color: var(--text);
    background: var(--white);
}

p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 18px;
}
.section-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 22px;
}

.sub-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 22px;
}

.main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 50px;
    padding: 5px 6px 5px 25px;
    background: var(--primary);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--primary);
    border-radius: 50px;
    transition: 0.3s ease;
}

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

.btn-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary);
}

.dark-section {
    background: var(--dark);
}

.dark-section .section-title {
    color: var(--white);
}

.dark-section .sub-title {
    color: var(--accent);
}

.dark-section p {
    color: rgba(255, 255, 255, 0.75);
}


/* Top Bar */

.top-bar {
    position: relative;
    z-index: 20;
    background: var(--secondary);
    color: var(--white);
}

.top-bar-inner {
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.top-bar p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    color: var(--white);
}

.top-bar p a {
    color: var(--white);
    font-weight: 700;
    text-decoration: underline;
}

.top-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-links > a {
    color: var(--white);
    font-size: 14px;
    text-decoration: none;
}

.top-links > a:hover {
    opacity: 0.8;
}

.top-social {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 8px;
}

.top-social a {
    color: var(--white);
    font-size: 15px;
}


/* Header */

.main-header {
    position: absolute;
    top: 45px;
    left: 0;
    width: 100%;
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.header-inner {
    min-height: 105px;
    display: flex;
    align-items: center;
    gap: 35px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.site-logo img {
    display: block;
    width: 185px;
    max-height: 78px;
    object-fit: contain;
}

.header-menu {
    flex: 1;
    min-width: 0;
}

.demo-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
}

.demo-navigation a {
    position: relative;
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.demo-navigation a:hover,
.demo-navigation a.active {
    color: var(--accent);
}

.header-action {
    flex-shrink: 0;
}

.menu-toggle {
    position: relative;
    z-index: 1002;
    width: 46px;
    height: 46px;
    margin-left: auto;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 6px;
    background: var(--primary);
    color: var(--white);
    font-size: 28px;
}


/* Hero */

.home-hero {
    position: relative;
    min-height: 795px;
    display: flex;
    align-items: center;
    background:
        url("images/sp-vedastra-hero.jpg")
        center center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(7, 25, 13, 0.92) 0%,
            rgba(7, 25, 13, 0.78) 35%,
            rgba(7, 25, 13, 0.32) 62%,
            rgba(7, 25, 13, 0.05) 100%
        );
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    max-width: 690px;
    padding-top: 125px;
}

.home-hero .sub-title {
    padding: 7px 14px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    text-transform: none;
    letter-spacing: 0;
}

.home-hero .sub-title i {
    color: var(--accent);
}

.home-hero .section-title {
    max-width: 680px;
    font-size: clamp(46px, 5vw, 70px);
    color: var(--white);
}

.home-hero p {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.86);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 55px;
    padding-top: 42px;
    border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.hero-link {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

.hero-link:hover {
    color: var(--accent);
}

.play-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.play-icon i {
    font-size: 22px;
}


/* Responsive */

@media (max-width: 1199.98px) {

    .main-header {
        top: 0;
    }

    .header-inner {
        min-height: 90px;
    }

    .site-logo img {
        width: 155px;
        max-height: 68px;
    }

    .header-menu {
        position: absolute;
        top: 100%;
        left: 12px;
        right: 12px;
        display: none;
        padding: 20px;
        background: var(--white);
        border-radius: 8px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        z-index: 1001;
    }

    .header-menu.menu-open {
        display: block;
    }

    .demo-navigation {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .demo-navigation a {
        padding: 12px 5px;
        color: var(--dark);
        border-bottom: 1px solid var(--border);
    }

    .demo-navigation a:last-child {
        border-bottom: 0;
    }

    .home-hero {
        min-height: 720px;
    }

    .hero-content {
        padding-top: 90px;
    }
}

@media (max-width: 767.98px) {

    .header-inner {
        min-height: 78px;
    }

    .site-logo img {
        width: 135px;
        max-height: 60px;
    }

    .home-hero {
        min-height: 680px;
        background-position: 62% center;
    }

    .hero-overlay {
        background: rgba(7, 25, 13, 0.76);
    }

    .hero-content {
        padding-top: 95px;
    }

    .home-hero .section-title {
        font-size: 42px;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
        margin-top: 35px;
        padding-top: 30px;
    }
}

@media (max-width: 575.98px) {

    .section-title {
        font-size: 34px;
    }

    .home-hero .section-title {
        font-size: 36px;
    }

    .home-hero {
        min-height: 650px;
    }

    .home-hero p {
        font-size: 15px;
    }

    .main-btn {
        font-size: 14px;
    }
}