/*
Theme Name: VectaLink Global Theme
Author: Dhvanil Zaveri
Description: A custom theme for VectaLink Global Ltd. designed to showcase global trade services.
Version: 1.0
Requires at least: 5.2
Requires PHP: 7.2
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-background, one-column, accessibility-ready, custom-logo, responsive-layout
Text Domain: vectalink-theme
*/

:root {
    --primary-blue: #05445E;
    --accent-orange: #D95B43;
    --warm-white: #F9F7F3;
    --soft-gray: #F5F5F5;
    --text-gray: #374151;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--warm-white);
    overflow-x: hidden;
}

.font-display {
    font-family: 'Playfair Display', serif;
}

.gradient-bg {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #086183 100%);
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-orange), #c74a32);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.floating-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.glass-effect {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hover-lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-blur {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.95);
}

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #F9F7F3 100%);
    border: 1px solid rgba(217, 91, 67, 0.1);
}

.value-card {
    background: linear-gradient(135deg, #ffffff 0%, #fef7f0 100%);
}

.mobile-menu {
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu.open {
    transform: translateX(0);
}

.prose {
    max-width: 80ch;
}

.prose h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-top: 2em;
    margin-bottom: 1em;
}

.prose h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 1.5em;
    margin-bottom: 0.8em;
}

.prose p, .prose ul, .prose ol {
    margin-bottom: 1.25em;
}

.prose ul {
    list-style-type: disc;
    padding-left: 1.5em;
}

/* Rule to fix static page alignment */
.page .entry-content {
    max-width: 100%;
}

/* Updated styles for Contact Form 7 */
.wpcf7-form-control:not(.wpcf7-submit) {
    color: var(--text-gray) !important;
    background-color: #fff !important;
    border: 1px solid #d1d5db !important; /* Light gray border */
    border-radius: 0.5rem !important; /* Rounded corners */
    padding: 0.75rem 1rem !important;
    width: 100% !important;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.wpcf7-form-control:not(.wpcf7-submit):focus {
    outline: none !important;
    border-color: var(--accent-orange) !important; /* Orange border on focus */
    box-shadow: 0 0 0 3px rgba(217, 91, 67, 0.2) !important; /* Subtle glow on focus */
}

/* Specific styling for the submit button */
.wpcf7-form .wpcf7-submit {
    background-color: var(--accent-orange) !important;
    color: #fff !important;
    font-weight: 600 !important;
    padding: 0.8rem 2rem !important;
    border-radius: 9999px !important; /* Pill shape */
    border: none !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease !important;
    width: auto !important;
    display: inline-block !important;
}

.wpcf7-form .wpcf7-submit:hover {
    background-color: #c74a32 !important; /* Darker orange on hover */
}


@media (max-width: 768px) {
    .parallax-bg {
        background-attachment: scroll;
    }
}

