/*
Theme Name: VIM Modern
Theme URI: https://verticalinternetmedia.com
Author: Vertical Internet Media
Description: Modern single-page theme for VIM
Version: 1.0
Text Domain: vim-modern
*/

* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --primary: #1a237e; --primary-light: #283593; --accent: #00bcd4;
  --dark: #1a1a2e; --gray: #64748b; --light: #f8fafc;
  --gradient: linear-gradient(135deg, #1a237e 0%, #283593 50%, #3949ab 100%);
}
html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; color: #333; line-height: 1.7; }

/* Nav */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(26,35,126,.95); backdrop-filter: blur(10px); padding: 0 20px; }
.nav-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 60px; }
.nav-brand { color: #fff; font-weight: 700; font-size: 1.1rem; text-decoration: none; }
.nav-links { display: flex; gap: 25px; }
.nav-links a { color: rgba(255,255,255,.85); text-decoration: none; font-size: .9rem; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--accent); }

/* Hero */
.hero { background: linear-gradient(135deg, rgba(26,35,126,.85) 0%, rgba(40,53,131,.75) 50%, rgba(57,73,171,.7) 100%), url(https://verticalinternetmedia.com/wp-content/uploads/2026/06/vim-hero.jpg) center center / cover no-repeat; color: #fff; padding: 140px 20px 100px; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width=\"60\" height=\"60\" viewBox=\"0 0 60 60\" xmlns=\"http://www.w3.org/2000/svg\"%3E%3Cg fill=\"none\" fill-rule=\"evenodd\"%3E%3Cg fill=\"%23ffffff\" fill-opacity=\"0.03\"%3E%3Cpath d=\"M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z\"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); opacity: 0.4; }
.hero h1 { font-size: 3.2rem; font-weight: 700; margin-bottom: 20px; line-height: 1.2; }
.hero p { font-size: 1.15rem; max-width: 650px; margin: 0 auto 35px; opacity: 0.9; }
.hero-cta { display: inline-block; background: var(--accent); color: #fff; padding: 14px 40px; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 1rem; transition: all .3s; }
.hero-cta:hover { background: #0097a7; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,.2); }
.mobile-toggle { display: none; flex-direction: column; cursor: pointer; gap: 5px; padding: 5px; background: none; border: none; }
.mobile-toggle span { width: 24px; height: 2px; background: #fff; transition: .3s; border-radius: 2px; }

/* Sections */
.section { padding: 90px 20px; }
.section-alt { background: var(--light); }
.container { max-width: 1100px; margin: 0 auto; }
.section-title { text-align: center; font-size: 2rem; font-weight: 700; color: var(--primary); margin-bottom: 15px; }
.section-subtitle { text-align: center; color: var(--gray); margin-bottom: 50px; font-size: 1.05rem; }

/* Brands */
.brands-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.brand-card { background: #fff; border-radius: 16px; padding: 40px 30px; text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,.06); transition: all .3s ease; border: 1px solid rgba(0,0,0,.04); }
.brand-card:hover { transform: translateY(-6px); box-shadow: 0 12px 35px rgba(0,0,0,.1); }
.brand-card img { max-width: 150px; max-height: 80px; margin-bottom: 20px; object-fit: contain; }
.brand-card h3 { font-size: 1.2rem; color: var(--primary); margin-bottom: 12px; }
.brand-card p { color: var(--gray); font-size: .93rem; }
.brand-card a { color: var(--primary); text-decoration: none; font-weight: 600; display: inline-block; margin-top: 12px; }
.brand-card a:hover { color: var(--accent); }

/* About */
.about-content { max-width: 800px; margin: 0 auto; font-size: 1.08rem; color: #555; text-align: center; line-height: 1.9; }

/* Contact */
.contact-layout { display: flex; gap: 40px; align-items: flex-start; max-width: 1000px; margin: 0 auto; }
.contact-address { flex: 0 0 30%; }
.contact-form { max-width: 805px; margin: 0 auto; }
.contact-info { margin-bottom: 30px; }
.contact-info p { margin-bottom: 12px; color: #555; font-size: 1.02rem; }
.contact-info strong { color: var(--dark); }

/* Footer */
.footer { background: var(--dark); color: rgba(255,255,255,.7); text-align: center; padding: 40px 20px; font-size: .9rem; }
.footer a { color: var(--accent); text-decoration: none; }

/* Pages */
.page-content { padding: 120px 20px 60px; min-height: 60vh; }
.page-content h1 { color: var(--primary); margin-bottom: 20px; }
.page-content p { margin-bottom: 15px; line-height: 1.8; }

.screen-reader-text { position: absolute; left: -9999px; }

@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .hero { padding: 100px 20px 60px; }
  .brands-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; position: absolute; top: 60px; left: 0; right: 0; background: var(--primary); flex-direction: column; padding: 20px; gap: 15px; }
  .nav-links.active { display: flex; }
  .mobile-toggle { display: flex; }
  .section { padding: 60px 20px; }
  .contact-layout { flex-direction: column; }
  .contact-form { max-width: 100%; }
}
