From 5054ddb1945bdb8b00d5f5851df0daa4288f3986 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 12 Feb 2026 09:51:29 +0000 Subject: [PATCH 1/3] Initial plan From b2180918749dca1748683b5fa0e1721caa2a6d06 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 12 Feb 2026 09:54:06 +0000 Subject: [PATCH 2/3] Add Fire Hosting GitHub page with responsive design Co-authored-by: August7337 <78742326+August7337@users.noreply.github.com> --- index.html | 170 +++++++++++++++++++++ styles.css | 432 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 602 insertions(+) create mode 100644 index.html create mode 100644 styles.css diff --git a/index.html b/index.html new file mode 100644 index 0000000..004aae7 --- /dev/null +++ b/index.html @@ -0,0 +1,170 @@ + + + + + + + + Fire Hosting - Premium Web Hosting Services + + + +
+ +
+ +
+
+
+
+

Premium Web Hosting Solutions

+

Fast, Reliable, and Secure hosting for your websites and applications

+ +
+
+
+ +
+
+

Why Choose Fire Hosting?

+
+
+
+

Lightning Fast

+

Experience blazing fast loading times with our optimized infrastructure and SSD storage.

+
+
+
🔒
+

Secure & Safe

+

Enterprise-grade security with SSL certificates, DDoS protection, and daily backups.

+
+
+
📈
+

99.9% Uptime

+

Our robust infrastructure ensures your website stays online when you need it most.

+
+
+
💬
+

24/7 Support

+

Expert support team available around the clock to help you with any issues.

+
+
+
🌍
+

Global CDN

+

Deliver content faster to your users worldwide with our global content delivery network.

+
+
+
🚀
+

Easy Deployment

+

One-click installations, auto-updates, and simple management tools for effortless hosting.

+
+
+
+
+ +
+
+

Pricing Plans

+

Choose the perfect plan for your needs

+
+
+

Starter

+
+ $ + 9.99 + /mo +
+
    +
  • ✓ 10 GB SSD Storage
  • +
  • ✓ 100 GB Bandwidth
  • +
  • ✓ 1 Website
  • +
  • ✓ Free SSL Certificate
  • +
  • ✓ Email Support
  • +
+ Choose Plan +
+ +
+

Enterprise

+
+ $ + 49.99 + /mo +
+
    +
  • ✓ 200 GB SSD Storage
  • +
  • ✓ Unlimited Bandwidth
  • +
  • ✓ Unlimited Websites
  • +
  • ✓ Free SSL Certificate
  • +
  • ✓ 24/7 Premium Support
  • +
+ Choose Plan +
+
+
+
+ +
+
+

Get In Touch

+

Have questions? We're here to help!

+
+
+
🌐
+

Website

+ fire-hosting.net +
+
+
📧
+

Email

+ support@fire-hosting.net +
+
+
💬
+

Live Chat

+

Available 24/7 on our website

+
+
+
+
+
+ + + + diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..1c16c30 --- /dev/null +++ b/styles.css @@ -0,0 +1,432 @@ +/* Reset and Base Styles */ +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} + +:root { + --primary-color: #ff4500; + --secondary-color: #ff6b35; + --dark-color: #1a1a2e; + --light-color: #f8f9fa; + --text-color: #333; + --text-light: #666; + --border-radius: 8px; + --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); + --transition: all 0.3s ease; +} + +body { + font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; + line-height: 1.6; + color: var(--text-color); + background-color: var(--light-color); +} + +.container { + max-width: 1200px; + margin: 0 auto; + padding: 0 20px; +} + +/* Navigation */ +.navbar { + background-color: var(--dark-color); + padding: 1rem 0; + position: sticky; + top: 0; + z-index: 1000; + box-shadow: var(--box-shadow); +} + +.navbar .container { + display: flex; + justify-content: space-between; + align-items: center; +} + +.logo h1 { + color: white; + font-size: 1.5rem; + font-weight: bold; +} + +.nav-links { + display: flex; + list-style: none; + gap: 2rem; +} + +.nav-links a { + color: white; + text-decoration: none; + font-weight: 500; + transition: var(--transition); +} + +.nav-links a:hover { + color: var(--primary-color); +} + +/* Hero Section */ +.hero { + background: linear-gradient(135deg, var(--dark-color) 0%, #2c2c54 100%); + color: white; + padding: 6rem 0; + text-align: center; +} + +.hero-content h2 { + font-size: 3rem; + margin-bottom: 1rem; + background: linear-gradient(135deg, white 0%, var(--secondary-color) 100%); + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; + background-clip: text; +} + +.hero-subtitle { + font-size: 1.3rem; + margin-bottom: 2rem; + color: rgba(255, 255, 255, 0.9); +} + +.cta-buttons { + display: flex; + gap: 1rem; + justify-content: center; + flex-wrap: wrap; +} + +/* Buttons */ +.btn { + display: inline-block; + padding: 0.875rem 2rem; + border-radius: var(--border-radius); + text-decoration: none; + font-weight: 600; + transition: var(--transition); + cursor: pointer; + border: 2px solid transparent; +} + +.btn-primary { + background-color: var(--primary-color); + color: white; + border-color: var(--primary-color); +} + +.btn-primary:hover { + background-color: var(--secondary-color); + border-color: var(--secondary-color); + transform: translateY(-2px); + box-shadow: 0 6px 12px rgba(255, 69, 0, 0.3); +} + +.btn-secondary { + background-color: transparent; + color: white; + border-color: white; +} + +.btn-secondary:hover { + background-color: white; + color: var(--dark-color); +} + +.btn-outline { + background-color: transparent; + color: var(--primary-color); + border-color: var(--primary-color); +} + +.btn-outline:hover { + background-color: var(--primary-color); + color: white; +} + +/* Sections */ +section { + padding: 5rem 0; +} + +.section-title { + text-align: center; + font-size: 2.5rem; + margin-bottom: 1rem; + color: var(--dark-color); +} + +.section-subtitle { + text-align: center; + font-size: 1.2rem; + color: var(--text-light); + margin-bottom: 3rem; +} + +/* Features Section */ +.features { + background-color: white; +} + +.features-grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); + gap: 2rem; + margin-top: 3rem; +} + +.feature-card { + background-color: var(--light-color); + padding: 2rem; + border-radius: var(--border-radius); + text-align: center; + transition: var(--transition); + border: 2px solid transparent; +} + +.feature-card:hover { + transform: translateY(-5px); + box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); + border-color: var(--primary-color); +} + +.feature-icon { + font-size: 3rem; + margin-bottom: 1rem; +} + +.feature-card h3 { + font-size: 1.5rem; + margin-bottom: 1rem; + color: var(--dark-color); +} + +.feature-card p { + color: var(--text-light); +} + +/* Pricing Section */ +.pricing { + background-color: var(--light-color); +} + +.pricing-grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); + gap: 2rem; + margin-top: 3rem; +} + +.pricing-card { + background-color: white; + padding: 2.5rem 2rem; + border-radius: var(--border-radius); + text-align: center; + box-shadow: var(--box-shadow); + position: relative; + transition: var(--transition); + border: 2px solid transparent; +} + +.pricing-card:hover { + transform: translateY(-10px); + box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15); +} + +.pricing-card.featured { + border-color: var(--primary-color); + transform: scale(1.05); +} + +.pricing-card.featured:hover { + transform: scale(1.08) translateY(-10px); +} + +.badge { + position: absolute; + top: -15px; + left: 50%; + transform: translateX(-50%); + background-color: var(--primary-color); + color: white; + padding: 0.5rem 1.5rem; + border-radius: 20px; + font-size: 0.875rem; + font-weight: 600; +} + +.pricing-card h3 { + font-size: 1.75rem; + margin-bottom: 1.5rem; + color: var(--dark-color); +} + +.price { + margin-bottom: 2rem; + color: var(--dark-color); +} + +.currency { + font-size: 1.5rem; + vertical-align: super; +} + +.amount { + font-size: 3rem; + font-weight: bold; +} + +.period { + font-size: 1.2rem; + color: var(--text-light); +} + +.features-list { + list-style: none; + margin-bottom: 2rem; + text-align: left; +} + +.features-list li { + padding: 0.75rem 0; + color: var(--text-light); + border-bottom: 1px solid var(--light-color); +} + +.features-list li:last-child { + border-bottom: none; +} + +/* Contact Section */ +.contact { + background-color: white; +} + +.contact-info { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); + gap: 2rem; + margin-top: 3rem; +} + +.contact-item { + text-align: center; + padding: 2rem; + background-color: var(--light-color); + border-radius: var(--border-radius); + transition: var(--transition); +} + +.contact-item:hover { + transform: translateY(-5px); + box-shadow: var(--box-shadow); +} + +.contact-icon { + font-size: 3rem; + margin-bottom: 1rem; +} + +.contact-item h3 { + font-size: 1.3rem; + margin-bottom: 0.5rem; + color: var(--dark-color); +} + +.contact-item a { + color: var(--primary-color); + text-decoration: none; + font-weight: 500; +} + +.contact-item a:hover { + text-decoration: underline; +} + +.contact-item p { + color: var(--text-light); +} + +/* Footer */ +footer { + background-color: var(--dark-color); + color: white; + text-align: center; + padding: 2rem 0; +} + +footer p { + margin: 0.5rem 0; +} + +footer a { + color: var(--primary-color); + text-decoration: none; +} + +footer a:hover { + text-decoration: underline; +} + +/* Responsive Design */ +@media (max-width: 768px) { + .nav-links { + gap: 1rem; + } + + .hero-content h2 { + font-size: 2rem; + } + + .hero-subtitle { + font-size: 1.1rem; + } + + .section-title { + font-size: 2rem; + } + + .features-grid, + .pricing-grid { + grid-template-columns: 1fr; + } + + .pricing-card.featured { + transform: scale(1); + } + + .pricing-card.featured:hover { + transform: translateY(-10px); + } +} + +@media (max-width: 480px) { + .navbar .container { + flex-direction: column; + gap: 1rem; + } + + .nav-links { + flex-direction: column; + text-align: center; + gap: 0.5rem; + } + + .hero { + padding: 4rem 0; + } + + .hero-content h2 { + font-size: 1.75rem; + } + + .cta-buttons { + flex-direction: column; + } + + .btn { + width: 100%; + } +} From b538132fbe2173ec5324b3d14ace69c079e5e0b6 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 12 Feb 2026 09:54:55 +0000 Subject: [PATCH 3/3] Update README with Fire Hosting information Co-authored-by: August7337 <78742326+August7337@users.noreply.github.com> --- README.md | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a46ae92..bc582a4 100644 --- a/README.md +++ b/README.md @@ -1 +1,22 @@ -# .github \ No newline at end of file +# Fire Hosting + +Official GitHub organization page for [Fire Hosting](https://fire-hosting.net) + +## About Fire Hosting + +Fire Hosting provides premium web hosting services with reliable performance and exceptional support. We offer fast, secure, and scalable hosting solutions for websites and applications of all sizes. + +### Features +- ⚡ Lightning fast SSD storage +- 🔒 Enterprise-grade security +- 📈 99.9% uptime guarantee +- 💬 24/7 expert support +- 🌍 Global CDN +- 🚀 Easy deployment + +### Pricing Plans +- **Starter**: $9.99/mo - Perfect for small projects +- **Professional**: $19.99/mo - Best for growing businesses +- **Enterprise**: $49.99/mo - Full-featured solution + +Visit [fire-hosting.net](https://fire-hosting.net) for more information. \ No newline at end of file