/* Popup overlay */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Darker overlay */
    z-index: 999;
}

/* Popup box */
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 700px; /* Increased size */
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
    text-align: center;
    z-index: 1000;
    padding: 30px 20px; /* More padding for spacing */
}

/* Popup heading */
.popup h1 {
    font-family: "Inter", sans-serif;
    font-size: 3rem; /* Bigger font size */
    line-height: 1.4;
    margin-bottom: 20px;
}

.popup h1 span {
    display: inline-block;
    margin: 0 5px;
    font-weight: bold;
}

.red {
    color: #d32f2f;
}

.blue {
    color: #1976d2;
}

.green {
    color: #388e3c;
}

.orange {
    color: #f57c00;
}

.pink {
    color: #ce00ff;
}

.purple {
    color: #6a1b9a;
}

/* Contact details */
.contact-details {
    margin: 20px 0;
    font-size: 1.5rem; /* Bigger contact text */
    line-height: 1.6;
    color: #39304c;
}

.contact-details p {
    margin: 5px 0;
}

/* Pencil border */
.pencil-border {
    width: 100%;
    height: 60px;
    background: url('img/pencil.jpg') repeat-x;
    margin: 20px 0;
}

/* Close button */
.popup button {
    background-color: #39304c;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 1.2rem;
    border-radius: 8px;
    cursor: pointer;
}

.popup button:hover {
    background-color: #feca13;
    color: #39304c;
}

/* Social Media Icon Styling */
#social-media a {
    font-size: 30px;
    margin: 0 10px;
    text-decoration: none;
    transition: transform 0.3s;
}

#social-media a:hover {
    transform: scale(1.2);
}

/* Facebook Icon Color */
#social-media a.facebook i {
    color: #4267B2; /* Facebook brand color */
}

/* Instagram Icon Color */
#social-media a.instagram i {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 30px;
}