
/* iPhone 10 and newer */
@media only screen and (min-width: 375px) and (max-width: 812px) and (-webkit-min-device-pixel-ratio: 3) {
  /* your styles here */
}

/* iPad Air and newer */
@media only screen and (min-width: 768px) and (max-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
  /* your styles here */
}

/* iPad Pro and newer */
@media only screen and (min-width: 1024px) and (max-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) {
  /* your styles here */
}

/* Google Pixel 6a and newer */
@media only screen and (min-width: 392px) and (max-width: 720px) and (-webkit-min-device-pixel-ratio: 3) and (device-width: 392px) and (device-height: 720px) {
  /* your styles here */
}

/* Samsung Galaxy series (S21, S22, Note 20, etc.) */
@media only screen and (min-width: 360px) and (max-width: 720px) and (-webkit-min-device-pixel-ratio: 3) and (device-width: 360px) and (device-height: 640px) {
  /* your styles here */
}

@supports (display: flex) and (gap: 10px) {
  /* your styles here */
}
/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #222;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    margin-bottom: 5px;
}

.tagline {
    font-style: italic;
    font-size: 1.2em;
    margin-bottom: 10px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 15px;
}

nav a {
    color: #fff;
    text-decoration: none;
    padding: 8px 12px;
    transition: background 0.3s;
}

nav a:hover, .active {
    background-color: #555;
    border-radius: 6px;
}

section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
}

footer {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    margin-top: 20px;
}

/* Hero Section */
.hero {
  /*background-image: url('./projectimages/pexels-negativespace-160107.jpg'); */
  background-size: cover; /* Ensures the image covers the entire section */
  background-position: center; /* Keeps the image centered */
  color: #00000; /* Text color */
  padding: 60px 20px; /* Padding for spacing */
  text-align: center;
}

.btn {
    display: inline-block;
    background-color: #fff;
    color: #00000;
    padding: 10px 20px;
    margin-top: 20px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

.video-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn:hover {
    background-color: #e2e2e2;
}

/* Services */
.services {
    background-color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.card {
    background: #f9f9f9;
    padding: 20px;
    width: 250px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

h2, h3 {
    margin-bottom: 15px;
}

/* Showcase */
.showcase-section {
    background-color: #fff;
    padding: 40px 20px;
}

.portfolio {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.project {
    width: 300px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 8px rgba(0,0,0,0.05);
    padding: 10px;
}

.project img {
    width: 100%;
    height: auto;
    display: block;
}

/* Templates & Contact */
.templates-section, .contact-section {
    background-color: #fff;
    padding: 40px 20px;
}

form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: auto;
}

label {
    margin-top: 10px;
    margin-bottom: 5px;
}

input[type=text], input[type=email], textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    margin-top: 15px;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: #007BFF;
    color: #fff;
    font-size: 1em;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

/* Blog Page */
.blog-section {
    padding: 40px 20px;
}

.blog-post {
    background-color: #f9f9f9;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.blog-post h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.read-more {
    text-decoration: none;
    color: #337ab7;
}

/* Blog Post Page */
.blog-article {
    padding: 40px 20px;
}

.blog-article h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.blog-article img {
    width: 100%;
  height: auto;
  max-width: 800px;
  margin: 20px auto;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.blog-article ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-article li {
    margin-bottom: 10px;
}

.blog-article strong {
    font-weight: bold;
}

nav.d-flex {
    display: flex;
    justify-content: space-between;
}

.btn.btn-outline-primary {
    background-color: transparent;
    border: 1px solid #337ab7;
    color: #337ab7;
    padding: 10px 20px;
    margin-top: 20px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

.btn.btn-outline-primary:hover {
    background-color: #337ab7;
    color: #fff;
}

.back-button {
  background-color: #4CAF50;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.back-button:hover {
  background-color: #3e8e41;
}

/* Logo */
.logo {
    width: 100px; /* adjust the width to fit your logo */
    height: 100px; /* adjust the height to fit your logo */
    margin: 20px; /* add some margin around the logo */
}

.logo img {
    width: 100%; /* make the logo image responsive */
    height: 100%; /* make the logo image responsive */
    object-fit: contain; /* keep the logo image proportions */
}

/* Add this to the end of your CSS file */
.fade-in {
  animation: fadeIn 1s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Apply the fade-in effect to all pages */
body {
  /* ... (other styles) */
  animation: fadeIn 1s;
}

/* If you want to apply the fade-in effect to a specific section or element, you can do so like this: */
section, .blog-section, .blog-article {
  animation: fadeIn 1s;
}

/* Add this to the end of your CSS file */
.pricing-section {
    background-color: #fff;
    padding: 40px 20px;
}

.pricing-plans {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.plan {
    background: #f9f9f9;
    padding: 20px;
    width: 250px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.plan h3 {
    margin-bottom: 10px;
}

.plan ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan li {
    margin-bottom: 10px;
}
