/* DMWare Main Styles */

/* Navbar styles moved to dark-theme.css */
.headerbg, .greengraybg {background-color: #1b1b1b;}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    /* Background color moved to dark-theme.css */
    /* color moved to dark-theme.css */
}

.itflag {margin-top: -20px}
.provisioning {margin-top: 2rem !important}
.pricingtoggle {margin-bottom: 3rem !important}
.transpbg {background-color: transparent !important}
.termsandconds input {width: auto !important}
/* Container */
.container, .max-w-7xl {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation - Styles moved to dark-theme.css for transparent navbar */

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2563eb;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #374151 0%, #57534e 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #2563eb;
    color: white;
}

.btn-primary:hover {
    background-color: #1d4ed8;
}

/* Cards */
.card {
    /* Background moved to dark-theme.css */
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

/* Grid */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-cols-1 { grid-template-columns: 1fr; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 768px) {
    .grid-cols-2,
    .grid-cols-3 {
        grid-template-columns: 1fr;
    }
}

/* Spacing */
.py-16 { padding: 4rem 0; }
.py-8 { padding: 2rem 0; }
.px-4 { padding: 0 1rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }

/* Text */
.text-center { text-align: center; }
.text-white { color: white; }
.text-gray-600 { color: #6b7280; }
.text-gray-800 { color: #1f2937; }

.text-4xl { font-size: 2.25rem; }
.text-3xl { font-size: 1.875rem; }
.text-2xl { font-size: 1.5rem; }
.text-xl { font-size: 1.25rem; }

.font-bold { font-weight: bold; }
.font-semibold { font-weight: 600; }

/* Background - Styles moved to dark-theme.css */

/* Footer */
footer {
    background-color: #1f2937;
    color: white;
    padding: 3rem 0;
}

footer a {
    color: #9ca3af;
    text-decoration: none;
}

footer a:hover {
    color: white;
}

/* Form Styles */
input, textarea, select {
    width: 100%;
    padding: 10px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 16px;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
}
