/*--PROMPT STYLE--*/
#prompt {
        font-size: 25px;
    color: #ffcc00;
    margin: 20px 0;
    padding: 20px;
    background-color: transparent;
    border: 2px solid yellow;
    border-radius: 8px;
    animation: fadeIn 1s ease-in-out;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#prompt:focus {
  outline: none;
  border-color: darkorange;
  box-shadow: 0 0 10px 5px #ffcc00, 0 0 20px 5px #ffcc00 inset;
  background-color: rgba(255, 204, 0, 0.1);
  color: yellow;
}

/*--BUTTON STYLE--*/
button {
    color: #ffcc00;
    margin: 20px 0;
    padding: 20px;
    background-color: transparent;
    border: 2px solid #ffcc00;
    border-radius: 8px;
    animation: fadeIn 1s ease-in-out;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

button:active {
    box-shadow: 0 0 20px 5px #ffcc00, 0 0 40px 10px #ffcc00 inset;
    background-color: rgba(255, 204, 0, 0.1);
    color: #fff;
}


/*--INTRO FADE IN ANIMATION--*/
.card {
        background: #222;
        padding: 30px;
        border-radius: 12px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
        text-align: center;
        max-width: 400px;
        width: 100%;
        animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*--PRICE HTML STYLE--*/
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
}

.card {
    background: #222;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 400px;
    width: 100%;
    animation: fadeIn 1s ease-in-out;
}

/*---text style---*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap');

body {
  font-family: 'MONTSERRAT', sans-serif;
  background: #121212;
  color: white;
  text-align: center;
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
}

/* Modal Dialog */
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  background-color: #1f1f1f;
  color: #fff;
  border-radius: 12px;
  padding: 25px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  animation: fadeIn 0.3s ease;
}

/* Modal content styling */
.modal-content input,
.modal-content textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: none;
  background-color: #2b2b2b;
  color: #fff;
}

.modal-content textarea {
  resize: none;
  height: 80px;
}

.submit-order-btn {
  width: 100%;
  background-color: #f1b600;
  color: #000;
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s ease;
}

.submit-order-btn:hover {
  background-color: #d8a500;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
  color: #aaa;
}

.close-btn:hover {
  color: #fff;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -60%) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
h2 {
  font-size: 22px;
  color: #f8b400; /* Gold/yellow like your "Your Cart" */
  text-align: center;
  margin: 30px 0 20px; /* Adds space above and below */
  font-weight: 700;
}

/* Services Grid */
.service-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  max-width: 600px;
  margin: auto;
}

.service {
  background-color: #1f1f1f;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 180px;
}

.section-title {
  font-size: 30px;
  color: #FFC107;
  text-align: center;
  margin: 30px 0 20px;
  font-weight: 700;
}

.serviceM {
        background: #1e1e1e;
        padding: 15px;

        text-align: center;
        box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.1);
}

.service h3 {
  margin: 10px 0;
}

.service p {
  font-size: 18px;
  font-weight: bold;
}

.service button {
  background: #f8b400;
  color: black;
  border: none;
  padding: 10px;
  cursor: pointer;
  width: 100%;
  border-radius: 5px;
  font-weight: bold;
}

.service button:hover {
  background: #ffcc00;
}

/* Cart Container */
.cart-container {
  background: #1e1e1e;
  padding: 20px;
  border-radius: 10px;
  margin: 20px auto;
  max-width: 400px;
  box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.1);
}

.summary-box {
  background: #292929;
  padding: 10px;
  border-radius: 5px;
  margin-top: 10px;
  display: none;
}

.checkout-btn {
  background: #f8b400;
  color: black;
  border: none;
  padding: 10px;
  cursor: pointer;
  width: 100%;
  border-radius: 5px;
  font-weight: bold;
}

.checkout-btn:hover {
  background: #ffcc00;
}

.total-cost {
  margin-top: 20px;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
}

#currency {
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #ddd;
}

.summary-box {
  background: #222;
  border-left: 5px solid #f8b400;
  padding: 15px;
  margin-top: 20px;
  text-align: left;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  animation: fadeIn 0.3s ease-in-out;
}

.summary-box p {
  margin: 6px 0;
}

.summary-box .total {
  font-size: 20px;
  font-weight: bold;
  color: #f8b400;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#anti-joke-form input {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
}

#captcha-number {
  font-weight: bold;
  font-size: 18px;
  color: #ff5733;
}

/*--CURRENCY AND REMOVE BTN STYLE--*/
/* Currency Dropdown Styling */
.total-cost select {
  padding: 8px 12px;
  border-radius: 5px;
  border: 1px solid #007BFF;
  background-color: #f0f8ff;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.total-cost select:hover {
  background-color: #e0f0ff;
  border-color: #0056b3;
}

.total-cost select:focus {
  outline: none;
  border-color: #0056b3;
}

/* Remove Button Styling */
#summary-content button.remove-btn {
  background-color: #FF5733;
  color: white;
  border: none;
  padding: 5px 10px;
  font-size: 14px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

#summary-content button.remove-btn:hover {
  background-color: #e04e28;
  transform: translateY(-3px);
}

#summary-content button.remove-btn:active {
  transform: translateY(0);
}

/*--Currency Changer Btn--*/
.currency {
    padding: 8px 12px;
    border-radius: 5px;
    border: 1px solid #007BFF;
    background-color: #f0f8ff;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    color: #007BFF;
    outline: none; /* Remove the default outline */
}

.currency:focus {
    border-color: #0056b3; /* When focused, change border color */
    background-color: #e6f7ff; /* Light blue background */
}

.currency option {
    background-color: white; /* Background color of dropdown options */
    color: #333; /* Text color of dropdown options */
}

/*--CONTACT CSS STYLE--*/
body {
        font-family: Arial, sans-serif;
        background-color: #f4f4f4;
        margin: 0;
        padding: 0;
}

.contact-container {
        max-width: 600px;
        margin: 50px auto;
        padding: 20px;
        background-color: #fff;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
}


p {
        text-align: center;
        font-size: 16px;
        color: #666;
        margin-bottom: 20px;
}

.form-group {
        margin-bottom: 15px;
}

label {
        display: block;
        font-size: 14px;
        color: #333;
        margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
textarea {
        width: 100%;
        padding: 12px;
        font-size: 14px;
        border: 1px solid #ccc;
        border-radius: 5px;
        background-color: #f9f9f9;
        transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
        border-color: #007BFF;
        background-color: #f0f8ff;
}

textarea {
        resize: vertical;
}

.submit-btn {
        width: 100%;
        padding: 12px;
        font-size: 16px;
        background-color: #007BFF;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease;
}

.submit-btn:hover {
        background-color: #0056b3;
}

.error-message {
        color: red;
        font-size: 12px;
        margin-top: 5px;
}


/*----CSS BY HADJI DEVELOPER----*/
/*----Learning Front End Dev----*/