/*
  Table of Contents:

  1. Global Styles
  2. Header Styles
  3. Main Content Styles
  4. Footer Styles
  5. Section-Specific Styles
     - About Section
     - Services Section
     - Contact Section
     - Testimonials Section
  6. Element-Specific Styles
     - Buttons
     - Hero Section
     - Images
     - Text Styles
  7. Utility Classes
  8. Media Queries
*/

/* -------------------- 1. Global Styles -------------------- */
html {
  height: 100%;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #000;
  color: #fff; /* Set default text color to white */
  margin: 0px;
}

/* -------------------- 2. Header Styles -------------------- */

/* (You can add your header styles here later) */

/* -------------------- 3. Main Content Styles -------------------- */

main {
  padding: 40px;
  text-align: center;
  max-width: 1024px;
  margin: 0 auto; 
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

/* -------------------- 4. Footer Styles -------------------- */

footer {
  text-align: center;
  position: relative; /* Position the footer */
  height: 35px;
  width: 100%; /* Make it full width */
  background-color: #000; /* Set a background color for the footer */
  padding: 20px 0px; /* Add some padding */
}

/* -------------------- 5. Section-Specific Styles -------------------- */

/* About Section */
.about-us p {
  font-size: 22px;
}

/* Services Section */
section {
  /* padding-bottom: 40px;  Remove this line */
  text-align: center;
}

.service {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

/* Contact Section */
#contact {
  padding: 80px 0;
  text-align: center;
}

#contact h2 {
  color: #ffc700;
  margin-bottom: 40px;
}

#contact form {
  max-width: 500px;
  margin: 0 auto;
}

#contact form input[type="text"],
#contact form input[type="email"],
#contact form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

#contact form input[type="text"]:focus,
#contact form input[type="email"]:focus,
#contact form textarea:focus {
  border-color: #ffc700;
}

#contact form textarea {
  resize: vertical;
  min-height: 120px;
}

/* Testimonials Section */

.testimonial {
  margin-bottom: 40px;
}

/* -------------------- 6. Element-Specific Styles -------------------- */

/* Buttons */
button {
  background-color: #ffc700; 
  color: #000; 
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px; 
  transition: background-color 0.3s ease; 
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); 
}

button:hover {
  background-color: #e6b800; 
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.8); 
}

/* Hero Section */
.hero {
  display: flex; 
  align-items: center; 
  justify-content: center; 
  text-align: center; 
  position: relative; 
  overflow: hidden; 
  width: 100%; 
  max-width: 1024px;
  margin-bottom: 40px;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  position: absolute; 
  z-index: -1; 
  border-radius: 10px;
}

.hero .hero-content {
  position: relative; 
  z-index: 1; 
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.8); 
  padding: 50px;
}

/* Images */
img.panoramic {
  width: 100%;
  max-width: 1024px;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

img.panoramic-hero {
  height: 375px;
}

img.large {
  width: 100%;
  max-width: 1024px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.service img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 25%;
  margin-bottom: 20px;
}

.testimonial img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
}

/* Text Styles */
h1, h2, h3 {
  margin: 0 0 20px 0; 
  padding: 0;
}

h1 {
  font-size: 44px;
  color: #ffc700;
}

h2 {
  font-size: 32px;
  color: #ffc700;
}

h3 {
  font-size: 24px;
  color: #ffc700;
}

p {
  margin-bottom: 20px;
}

.testimonial blockquote {
  font-size: 20px;
  margin-bottom: 20px;
}

.testimonial cite {
  font-style: italic;
  font-size: 16px;
  color: #ffc700;
}

.kyberone { 
  background-image: url('/images/overlook.jpg');
  color: transparent; 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-clip: text; 
  -webkit-background-clip: text; 
  -webkit-filter: drop-shadow(2px 2px rgba(0, 0, 0, 0.8));
  filter: drop-shadow(2px 2px rgba(0, 0, 0, 0.8));
  text-shadow: none;
}

/* -------------------- 7. Utility Classes -------------------- */

.contact-methods div,
.about-us div { 
  padding-bottom: 20px;
}

.top {
  height: 400px; 
}

.mid {
  height: 250px; 
}

.bottom {
  height: 325px; 
}

.narrow {
  height: 125px; 
}


/* -------------------- 8. Media Queries -------------------- */

@media (max-width: 800px) { 
  main {
    padding: 20px;
  }

  .hero .hero-content {
    padding: 10px;
  } 
.about-us p {
    font-size: 18px;
  }
}

h1.large,
h2.large,
h3.large { /* Add text shadow to all headings and paragraphs */
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.8); /* Adjust values as needed */
  font-size: 3rem;
}

p.large,
a.large,
cite.large {
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.8); /* Adjust values as needed */
  font-size: 1.5rem;
  line-height: 1.6;
}