/*

- The Model Designer LLC - Shared Stylesheet
- Save as: styles.css
- Link in all HTML files: <link rel="stylesheet" href="styles.css">
  */

/* Reset and Base Styles */

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

body {
font-family: ‘Times New Roman’, Georgia, serif;
line-height: 1.6;
color: #2c2c2c;
background: #ffffff;
}

/* Header & Navigation - Shared across all pages */
.header {
background: #ffffff;
padding: 20px 0;
box-shadow: 0 2px 10px rgba(44, 44, 44, 0.1);
position: sticky;
top: 0;
z-index: 100;
}

.nav-container {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 40px;
}

.logo {
font-family: ‘Times New Roman’, Georgia, serif;
color: #2c2c2c;
font-size: 1.2em;
font-weight: 400;
letter-spacing: 1px;
position: relative;
white-space: nowrap;
line-height: 1.4;
text-decoration: none;
}

.logo .the-small {
font-size: 0.6em;
color: #666;
vertical-align: super;
margin-right: 8px;
letter-spacing: 2px;
}

.logo .model-design {
position: relative;
display: inline-block;
}

.logo .model-design::after {
content: ‘’;
position: absolute;
bottom: -3px;
left: 0;
right: 0;
width: 100%;
height: 1px;
background: #2c2c2c;
background: linear-gradient(to right, transparent 0%, #2c2c2c 20%, #2c2c2c 80%, transparent 100%);
}

.nav-menu {
display: flex;
list-style: none;
gap: 40px;
}

.nav-menu li a {
color: #2c2c2c;
text-decoration: none;
font-size: 1em;
font-weight: 400;
letter-spacing: 1px;
transition: color 0.3s ease;
text-transform: uppercase;
}

.nav-menu li a:hover,
.nav-menu li a.active {
color: #666;
}

.mobile-menu {
display: none;
flex-direction: column;
cursor: pointer;
}

.mobile-menu span {
width: 25px;
height: 2px;
background: #2c2c2c;
margin: 3px 0;
transition: 0.3s;
}

/* Shared Typography */
.section-title {
text-align: center;
font-size: 2.8em;
font-weight: 300;
letter-spacing: 2px;
color: #2c2c2c;
margin-bottom: 60px;
text-transform: uppercase;
}

/* Shared Buttons */
.cta-button {
display: inline-block;
background: #2c2c2c;
color: white;
padding: 18px 40px;
text-decoration: none;
font-size: 1.1em;
letter-spacing: 2px;
text-transform: uppercase;
transition: all 0.3s ease;
border: 2px solid #2c2c2c;
}

.cta-button:hover {
background: transparent;
color: #2c2c2c;
transform: translateY(-2px);
}

/* Footer - Shared across all pages */
.footer {
background: #2c2c2c;
color: white;
padding: 60px 0 40px;
text-align: center;
}

.footer-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 40px;
}

.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
margin-bottom: 40px;
}

.footer-section h4 {
font-size: 1.2em;
letter-spacing: 1px;
margin-bottom: 20px;
text-transform: uppercase;
}

.footer-section p,
.footer-section a {
color: rgba(255, 255, 255, 0.8) !important;
text-decoration: none !important;
line-height: 1.6;
transition: color 0.3s ease;
white-space: nowrap;
}

.footer-section a:hover {
color: white !important;
}

/* Override any browser-applied link styles */
.footer a,
.footer a:link,
.footer a:visited,
.footer a:active {
color: rgba(255, 255, 255, 0.8) !important;
text-decoration: none !important;
}

.footer a:hover {
color: white !important;
}

.footer-bottom {
border-top: 1px solid rgba(255, 255, 255, 0.2);
padding-top: 30px;
opacity: 0.7;
font-size: 0.9em;
letter-spacing: 1px;
}

/* Responsive Design - Shared */
@media (max-width: 768px) {
.nav-container {
position: relative;
}

.nav-menu {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: #ffffff;
flex-direction: column;
box-shadow: 0 2px 10px rgba(44, 44, 44, 0.1);
padding: 20px;
gap: 20px;
z-index: 1000;
width: 100%;
visibility: hidden;
opacity: 0;
transform: translateY(-10px);
transition: all 0.3s ease;
display: flex;
}

.nav-menu.active {
visibility: visible !important;
opacity: 1 !important;
transform: translateY(0) !important;
}

.mobile-menu {
    display: flex;
}

.section-title {
    font-size: 2.2em;
}

.nav-container,
.footer-container {
    padding: 0 20px;
}

}