/* Verimay Hosting Custom CSS - Lagom 2 Theme Override */

/* ========================================
   VERIMAY CUSTOM TOP BAR
   ======================================== */

/* ========================================
   VERIMAY BRAND COLORS
   ======================================== */
:root {
    --verimay-primary: #1d4ed8;
    --verimay-secondary: #3b82f6;
    --verimay-accent: #60a5fa;
    --verimay-success: #10b981;
    --verimay-warning: #f59e0b;
    --verimay-danger: #ef4444;
    --verimay-dark: #1e40af;
    --verimay-light: #dbeafe;
    --verimay-text: #1f2937;
    --verimay-text-light: #6b7280;
    --verimay-bg: #ffffff;
    --verimay-bg-light: #f9fafb;
    --verimay-border: #e5e7eb;
}

/* ========================================
   PRIMARY COLOR OVERRIDES
   ======================================== */
.btn-primary {
    background-color: var(--verimay-primary) !important;
    border-color: var(--verimay-primary) !important;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--verimay-dark) !important;
    border-color: var(--verimay-dark) !important;
}

.btn-outline-primary {
    color: var(--verimay-primary) !important;
    border-color: var(--verimay-primary) !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: var(--verimay-primary) !important;
    border-color: var(--verimay-primary) !important;
}

/* ========================================
   VERIMAY CUSTOM STYLES - Tailwind CSS ile uyumlu
   ======================================== */

/* Tailwind CSS'i override etmeyen stiller */

/* .flex.items-center.justify-between.max-w-7xl.lg:px-8.gap-x-6.px-6.py-3.sm:pr-3.5.lg:pl-8.container.mx-auto */
.verimay-topbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 80rem; /* max-w-7xl = 80rem */
    margin-left: auto;
    margin-right: auto;
    gap: 1.5rem; /* gap-x-6 = 1.5rem */
    padding: 0.75rem 1.5rem; /* py-3 px-6 = 0.75rem 1.5rem */
}

/* .flex.m-0.text-sm.font-medium.tracking-wide.text-indigo-100.gap-x-1 */
.verimay-topbar-left {
    display: flex;
    margin: 0;
    font-size: 0.875rem; /* text-sm = 0.875rem */
    font-weight: 500; /* font-medium = 500 */
    letter-spacing: 0.025em; /* tracking-wide */
    color: #c7d2fe; /* text-indigo-100 */
    gap: 0.25rem; /* gap-x-1 = 0.25rem */
}

/* .inline-flex.items-center.text-xs.font-medium.text-indigo-100.gap-x-1.hover:underline */
.verimay-topbar-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem; /* text-xs = 0.75rem */
    font-weight: 500; /* font-medium = 500 */
    color: #c7d2fe; /* text-indigo-100 */
    gap: 0.25rem; /* gap-x-1 = 0.25rem */
    text-decoration: none;
    transition: all 0.3s ease;
}

.verimay-topbar-link:hover {
    text-decoration: underline;
}

/* .after:content-['|'].after:text-indigo-300.text-[8px].mx-2.after:absolute.relative.after:right.after:top-1/2.after:-translate-y-1/2 */
.verimay-topbar-separator {
    position: relative;
    font-size: 8px; /* text-[8px] */
    margin-left: 0.5rem; /* mx-2 = 0.5rem */
    margin-right: 0.5rem;
}

.verimay-topbar-separator::after {
    content: '|';
    color: #a5b4fc; /* after:text-indigo-300 */
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* .inline-block.w-auto.h-5.ml-0.opacity-40 */
.verimay-100-logo {
    display: inline-block;
    width: auto;
    height: 1.25rem; /* h-5 = 1.25rem */
    margin-left: 0;
    opacity: 0.4;
}

/* .flex.items-center.m-0.text-xs.font-medium.text-indigo-100.gap-x-4 */
.verimay-topbar-right {
    display: flex;
    align-items: center;
    margin: 0;
    font-size: 0.75rem; /* text-xs = 0.75rem */
    font-weight: 500; /* font-medium = 500 */
    color: #c7d2fe; /* text-indigo-100 */
    gap: 1rem; /* gap-x-4 = 1rem */
}

/* .flex.items-center.text-xs.font-medium.tracking-tighter.text-center */
.verimay-currency {
    display: flex;
    align-items: center;
    font-size: 0.75rem; /* text-xs = 0.75rem */
    font-weight: 500; /* font-medium = 500 */
    letter-spacing: -0.05em; /* tracking-tighter */
    text-align: center;
}

/* .z-10.transition-all.duration-500.hover:underline.hover:text-white */
.verimay-topbar-menu-link {
    z-index: 10;
    transition: all 0.5s ease; /* duration-500 */
    text-decoration: none;
    color: #c7d2fe; /* text-indigo-100 */
    font-size: 0.75rem; /* text-xs = 0.75rem */
    font-weight: 500; /* font-medium = 500 */
}

.verimay-topbar-menu-link:hover {
    text-decoration: underline;
    color: white;
}

/* Responsive Design - Tailwind Breakpoints */
/* lg:px-8 = 1024px+ */
@media (min-width: 1024px) {
    .verimay-topbar-container {
        padding-left: 2rem; /* lg:px-8 = 2rem */
        padding-right: 2rem;
    }
}

/* ========================================
   DROPDOWN MENU STYLES
   ======================================== */
.dropdown-menu {
    position: absolute !important;
    z-index: 999999 !important;
    background: white !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 0.375rem !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    min-width: 8rem !important;
}

#currencyDropdown {
    position: fixed !important;
    z-index: 9999999 !important;
    background: white !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 0.375rem !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    min-width: 8rem !important;
}

.dropdown-menu a {
    display: block !important;
    padding: 0.5rem 1rem !important;
    color: #374151 !important;
    text-decoration: none !important;
    transition: background-color 0.15s ease-in-out !important;
}

.dropdown-menu a:hover {
    background-color: #f3f4f6 !important;
    color: #111827 !important;
}

/* sm:pr-3.5 = 640px+ */
@media (min-width: 640px) {
    .verimay-topbar-container {
        padding-right: 0.875rem; /* sm:pr-3.5 = 0.875rem */
    }
}

/* lg:pl-8 = 1024px+ */
@media (min-width: 1024px) {
    .verimay-topbar-container {
        padding-left: 2rem; /* lg:pl-8 = 2rem */
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .verimay-topbar-container {
        flex-direction: column;
        gap: 0.75rem; /* py-3 equivalent */
        padding: 0.75rem 1rem;
    }
    
    .verimay-topbar-left,
    .verimay-topbar-right {
        justify-content: center;
    }
    
    .verimay-100-logo {
        order: -1;
    }
}

@media (max-width: 640px) {
    .verimay-topbar-container {
        padding: 0.75rem 0.75rem;
    }
    
    .verimay-topbar-left {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .verimay-topbar-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
    }
    
    .verimay-topbar-separator {
        display: none;
    }
}

/* ========================================
   VERIMAY WHATSAPP BUTTON
   ======================================== */
#verimay-whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    animation: verimay-pulse 2s infinite;
}

#verimay-whatsapp-button a {
    display: flex;
    align-items: center;
    background: #25d366;
    color: white;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
}

#verimay-whatsapp-button a:hover {
    background: #128c7e;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

#verimay-whatsapp-button .whatsapp-text {
    margin-right: 8px;
    line-height: 1.2;
}

#verimay-whatsapp-button img {
    width: 40px;
    height: 40px;
}

/* Pulse Animation */
@keyframes verimay-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ========================================
   VERIMAY FOOTER CUSTOM
   ======================================== */
.verimay-footer-custom {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
    padding: 40px 0 20px;
    margin-top: 40px;
}

.verimay-footer-logo {
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.verimay-footer-desc {
    color: #d1d5db;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

.verimay-contact-info h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
}

.verimay-contact-info .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #d1d5db;
}

.verimay-contact-info .contact-item i {
    width: 20px;
    margin-right: 10px;
    color: var(--verimay-primary);
}

.verimay-footer-divider {
    border-color: #4b5563;
    margin: 30px 0 20px;
}

.verimay-copyright {
    color: #9ca3af;
    font-size: 12px;
    margin: 0;
}

.verimay-copyright a {
    color: var(--verimay-primary);
    text-decoration: none;
}

.verimay-copyright a:hover {
    color: var(--verimay-accent);
    text-decoration: underline;
}

/* ========================================
   VERIMAY HOMEPAGE CUSTOM
   ======================================== */
.verimay-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.verimay-hero-content {
    z-index: 2;
    position: relative;
}

.verimay-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--verimay-text);
    margin-bottom: 20px;
    line-height: 1.2;
}

.verimay-hero-subtitle {
    font-size: 1.25rem;
    color: var(--verimay-text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.verimay-hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.verimay-hero-image {
    text-align: center;
}

.verimay-hero-image img {
    max-width: 100%;
    height: auto;
}

/* Domain Search Section */
.verimay-domain-search {
    padding: 60px 0;
    background: white;
}

.verimay-domain-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid var(--verimay-border);
}

/* Features Section */
.verimay-features {
    padding: 80px 0;
    background: var(--verimay-bg-light);
}

.verimay-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border: 1px solid var(--verimay-border);
    transition: all 0.3s ease;
    height: 100%;
}

.verimay-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.verimay-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--verimay-primary), var(--verimay-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.verimay-card h4 {
    color: var(--verimay-text);
    font-weight: 600;
    margin-bottom: 15px;
}

.verimay-card p {
    color: var(--verimay-text-light);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
    .verimay-topbar .contact-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .verimay-topbar .top-nav-right {
        justify-content: center;
        margin-top: 10px;
    }
    
    #verimay-whatsapp-button {
        bottom: 15px;
        right: 15px;
    }
    
    #verimay-whatsapp-button a {
        padding: 10px 12px;
        font-size: 12px;
    }
    
    #verimay-whatsapp-button .whatsapp-text {
        display: none;
    }
    
    #verimay-whatsapp-button img {
        width: 50px;
        height: 50px;
    }
    
    .verimay-hero-title {
        font-size: 2rem;
    }
    
    .verimay-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .verimay-hero-buttons {
        justify-content: center;
    }
    
    .verimay-domain-card {
        padding: 20px;
    }
    
    .verimay-card {
        padding: 20px;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .verimay-hero {
        padding: 40px 0;
    }
    
    .verimay-hero-title {
        font-size: 1.75rem;
    }
    
    .verimay-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .verimay-hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}
