/* styles.css */
body {
    font-family: 'Times New Roman', serif; 
    background-color: #ffffff; 
    color: #333;
    margin: 0;
    padding: 0;
}

header {
    background: #6a5acd; 
    color: white;
    padding: 10px 0;
}

nav {
    background: rgba(255, 255, 255, 0.9); 
    border-radius: 15px; 
    padding: 10px 20px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    margin: 20px auto; 
    width: 80%; 
}

nav a {
    margin: 0 15px;
    color: #6a5acd; 
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px; 
    border-radius: 8px; 
    transition: background 0.3s; 
}

nav a:hover {
    background: rgba(106, 92, 205, 0.2);
}

h1, h2, h3 {
    font-weight: bold; 
    margin-top: 20px; 
    text-indent: 20px; 
}

h2 {
    margin-bottom: 10px; 
}

h3 {
    margin-bottom: 8px; 
}

.container {
    width: 80%; 
    margin: auto; 
    padding: 20px;
}

p {
    text-indent: 20px; 
    line-height: 1.6; 
    margin-bottom: 15px; 
}

.footer {
    text-align: center;
    padding: 30px 0;
    background: rgba(106, 92, 205, 0.5); 
    color: white;
    position: relative;
    margin-top: 20px; 
    border-radius: 10px; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); 
}

img {
    max-width: 100%;
    height: auto; 
    margin: 20px 0; 
}

form {
    background: rgba(255, 255, 255, 0.8); 
    padding: 20px;
    border-radius: 10px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 20px; 
}

label {
    font-weight: bold; 
    display: block; 
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px; 
    margin-bottom: 15px; 
    border-radius: 5px; 
    border: 1px solid #ccc; 
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    border-color: #6a5acd; 
    outline: none; 
}

button {
    background: #6a5acd; 
    color: white; 
    padding: 10px 20px; 
    border: none; 
    border-radius: 5px; 
    cursor: pointer; 
    transition: background 0.3s; 
}

button:hover {
    background: #5a4db8;
}

.zodiac-sign {
    display: flex; 
    align-items: center;
    justify-content: space-between; 
    margin-bottom: 20px; 
}

.text-section {
    flex: 1; 
    padding-right: 20px; 
}

.image-section {
    text-align: center; 
}

.circular-image {
    width: 120px;
    height: 120px;
    border-radius: 50%; 
    border: 2px solid #6a5acd; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); 
}

.image-reference {
    margin-top: 5px; 
    font-size: 0.85em; 
    color: #666; 
}

.indented {
    text-indent: 30px;
}

.zodiac-grid {
    display: grid; 
    grid-template-columns: repeat(6, 1fr); 
    gap: 20px; 
    margin-top: 20px; 
}

.zodiac-sign {
    text-align: center; 
    background: rgba(255, 255, 255, 0.8); 
    border-radius: 10px; 
    padding: 15px; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
    transition: transform 0.3s; 
}

.zodiac-sign:hover {
    transform: scale(1.05); 
}

.zodiac-sign img {
    max-width: 100px; 
    height: auto; 
}


.house-grid {
    display: grid; 
    grid-template-columns: repeat(6, 1fr);
    gap: 20px; 
    margin-top: 20px; 
    text-align: center; 
}

.house {
    padding: 10px; 
    border: 1px solid #000; 
    border-radius: 8px; 
    background: rgba(255, 255, 255, 0.8); 
    transition: transform 0.2s; 
}

.house:hover {
    transform: scale(1.05); 
}
.video-container {
    text-align: center; 
    margin-top: 20px; 
}


p {
    text-indent: 20px;
    line-height: 1.6; 
    margin-bottom: 15px; 
}

img {
    max-width: 100%; 
    height: auto; 
    margin: 20px 0; 
}

form {
    background: rgba(255, 255, 255, 0.8); 
    padding: 20px;
    border-radius: 10px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    margin-top: 20px; 
}

label {
    font-weight: bold; 
    display: block; 
    margin-bottom: 5px; 
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%; 
    padding: 10px; 
    margin-bottom: 15px; 
    border-radius: 5px; 
    border: 1px solid #ccc; 
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    border-color: #6a5acd; 
    outline: none;
}

button {
    background: #6a5acd; 
    color: white; 
    padding: 10px 20px;
    border: none; 
    border-radius: 5px; 
    cursor: pointer;
    transition: background 0.3s; 
}

button:hover {
    background: #5a4db8; 
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px; 
    margin-top: 20px; 
}



.zodiac-button {
    display: inline-block; 
    text-align: center;
    cursor: pointer;
    border-radius: 10px; 
    background-color: rgba(106, 92, 205, 0.1); 
    padding: 10px 15px;
    margin: 5px; 
    transition: background 0.3s; 
}

.zodiac-button:hover {
    background-color: rgba(106, 92, 205, 0.3); 
}