/*
 * Pallas Design Studio - Modern Static CSS
 * Converted from VB.NET ASPX to static HTML/CSS
 */

/* CSS Reset & Modern Defaults */
*, *::before, *::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: #808080;
    font-family: Georgia, "Trebuchet MS", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

/* Layout Container */
.site-container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #fff;
}

/* Header Styles */
.header-top {
    background-image: url('../Images/bg-header.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 20px;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 1.625rem;
}

.header-icons a {
    display: inline-block;
    line-height: 0;
}

.header-icons img {
    height: 25px;
    border: 0;
    vertical-align: middle;
}

.header-main {
    background-image: url('../Images/bg-wrapper.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: 250px;
    border-bottom: 5px solid #ffa500;
    padding: 20px;
}

.logo-container {
    display: flex;
    align-items: flex-end;
    min-height: 200px;
    padding-left: 20px;
}

.logo-container img {
    max-width: 100%;
    height: auto;
}

/* ==========================================================================
   Shared Button Styles (Menu Links & CTA Button)
   ========================================================================== */
#menu li a, 
.btn-nav-style {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    color: #fff !important;
    text-decoration: none;
    font-family: "Trebuchet MS", sans-serif;
    font-size: 0.875rem;
    font-weight: bold;
    text-align: center;
    border-radius: 6px;
    
    /* Native CSS replication of button-off.png */
    background: #4e4e4e;
    background: linear-gradient(to bottom, #8e8e8e 0%, #1c1c1c 100%);
    
    /* Subtle dark border & the distinct drop-shadow */
    border: 1px solid #111111;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
    
    transition: all 0.3s ease;
}

/* Shared Hover States */
#menu li a:hover,
#menu li a:focus,
#menu li a.active,
.btn-nav-style:hover,
.btn-nav-style:focus {
    /* Native CSS replication of glossy/glass split from button-on.png */
    background: #00046e;
    background: linear-gradient(
        to bottom, 
        #8a99d3 0%,   /* Light periwinkle top start */
        #5465b2 50%,  /* Mid-periwinkle split point */
        #000472 50%,  /* Deep navy split start */
        #000472 100%  /* Deep navy bottom end */
    );
    
    /* Darker navy border & slightly stronger shadow on hover */
    border: 1px solid #00024a;
    box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.6);
    
    transform: translateY(-2px);
    text-decoration: none;
}

/* Specific Width Adjustments */
#menu li a {
    width: 100px;
}

.btn-nav-style {
    display: inline-flex;
    width: auto;
    padding: 0 30px; /* Gives the longer text nice side margins */
}

/* Layout container for menu */
.nav-container {
    display: flex;
    justify-content: flex-end;
    padding-right: 50px;
}

#menu {
    list-style: none;
    display: flex;
    gap: 0;
    margin: 0;
    padding: 0;
}

#menu li {
    position: relative;
}

/* Content Area */
.content-wrapper {
    min-height: 500px;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    border-top: 5px solid #ffa500;
}

.content-inner {
    padding: 50px;
}

.content-text {
    font-size: 1rem;
    line-height: 1.8;
    text-align: left;
}

.content-header {
    font-size: 1.25rem;
    font-variant: small-caps;
    margin-bottom: 1.5rem;
    font-weight: normal;
}

/* Links */
a {
    color: #ffa500;
    transition: color 0.3s ease;
}

a:hover,
a:focus {
    color: #ff8c00;
}

.link-text {
    color: #000;
    text-decoration: none;
}

.link-text:hover,
.link-text:focus {
    color: #ffa500;
    text-decoration: underline;
}

/* Footer */
.footer {
    background-image: url('../Images/bg-header.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: 50px;
    padding: 15px 20px;
    text-align: center;
}

.footer-text {
    color: #fff;
    font-size: 0.875rem;
    font-family: "Trebuchet MS", sans-serif;
    margin: 5px 0;
}

.footer-text a {
    color: #fff;
    text-decoration: none;
}

.footer-text a:hover,
.footer-text a:focus {
    color: #ffa500;
    text-decoration: underline;
}

/* Pricing Table */
.pricing-container {
    margin: 30px auto;
    max-width: 90%;
    overflow-x: auto;
}

.pricing-table {
    border-collapse: collapse;
    width: 100%;
    border: 1px solid #ffa500;
    margin: 20px 0;
}

.pricing-table th,
.pricing-table td {
    border: 1px solid #ffa500;
    padding: 10px;
    text-align: center;
}

.pricing-table th {
    font-size: 1rem;
    font-variant: small-caps;
    background-color: #fff;
}

.pricing-table td.text-left {
    text-align: left;
}

.pricing-table tr.section-header td {
    font-size: 1rem;
    font-variant: small-caps;
    font-weight: bold;
    text-align: left;
    background-color: #f9f9f9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-main {
        min-height: 200px;
    }

    .logo-container {
        justify-content: center;
        padding-left: 0;
    }

    .nav-container {
        justify-content: center;
        padding-right: 0;
        margin-top: 10px;
    }

    #menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    #menu li a {
        width: 90px;
        font-size: 0.75rem;
    }

    .content-inner {
        padding: 30px 20px;
    }

    .pricing-container {
        margin: 20px 10px;
    }
}

@media (max-width: 480px) {
    .header-main {
        padding: 10px;
    }

    #menu li a {
        width: 80px;
        height: 40px;
        font-size: 0.7rem;
    }

    .content-inner {
        padding: 20px 15px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}
